mari-mari
@mari-mari (マリ マリ)

Are you sure you want to delete the question?

Leaving a resolved question undeleted may help others!

herokuでデプロイしようとしたらFailed to install gems via bundlerエラー

解決したいこと

herokuでrailsのアプリをデプロイしたいです。

発生している問題・エラー

-----> Building on the Heroku-18 stack
-----> Determining which buildpack to use for this app
 !     Warning: Multiple default buildpacks reported the ability to handle this app. The first buildpack in the list below will be used.
            Detected buildpacks: Ruby,Node.js
            See https://devcenter.heroku.com/articles/buildpacks#buildpack-detect-order
-----> Ruby app detected
-----> Installing bundler 1.17.3
-----> Removing BUNDLED WITH version in the Gemfile.lock
-----> Compiling Ruby/Rails
-----> Using Ruby version: ruby-2.5.3
-----> Installing dependencies using bundler 1.17.3
       Running: BUNDLE_WITHOUT='development:test' BUNDLE_PATH=vendor/bundle BUNDLE_BIN=vendor/bundle/bin BUNDLE_DEPLOYMENT=1 BUNDLE_GLOBAL_PATH_APPENDS_RUBY_SCOPE=1 bundle install -j4
       You are trying to install in deployment mode after changing
       your Gemfile. Run `bundle install` elsewhere and add the
       updated Gemfile.lock to version control.

       If this is a development machine, remove the /tmp/build_18756f12/Gemfile freeze 
       by running `bundle install --no-deployment`.

       You have deleted from the Gemfile:
       * pry-byebug
       * pry-doc
       * pry-rails
       Bundler Output: You are trying to install in deployment mode after changing
       your Gemfile. Run `bundle install` elsewhere and add the
       updated Gemfile.lock to version control.

       If this is a development machine, remove the /tmp/build_18756f12/Gemfile freeze 
       by running `bundle install --no-deployment`.

       You have deleted from the Gemfile:
       * pry-byebug
       * pry-doc
       * pry-rails
 !
 !     Failed to install gems via Bundler.
 !
 !     Push rejected, failed to compile Ruby app.
 !     Push failed

自分で試したこと

bundlerのバージョンが問題なのではと思い、バージョン変更しました。

Run `bundle install` elsewhere and add the
updated Gemfile.lock to version control.

とあるので、bundle installも実行し、Gemfile.lockもproductionのところをアップデートしました。

gitのコミット・プッシュもやってみました。

リポジトリも確認しましたが、合っているようです。

何か他に原因等あれば、教えていただきたいです。

Gemfile

ruby '2.5.3'

# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2.2'
# Use mysql as the database for Active Record
gem 'mysql2', '>= 0.4.4', '< 0.6.0'
# Use Puma as the app server
gem 'puma', '~> 3.11'
# Use SCSS for stylesheets
gem 'sass-rails', '~> 5.0'
# Use Uglifier as compressor for JavaScript assets
gem 'uglifier', '>= 1.3.0'
# See https://github.com/rails/execjs#readme for more supported runtimes
# gem 'mini_racer', platforms: :ruby

# Use CoffeeScript for .coffee assets and views
gem 'coffee-rails', '~> 4.2'
# Turbolinks makes navigating your web application faster. Read more: https://github.com/turbolinks/turbolinks
gem 'turbolinks', '~> 5'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.5'
# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use ActiveModel has_secure_password
 gem 'bcrypt', '~> 3.1.7'

# Use Capistrano for deployment
# gem 'capistrano-rails', group: :development

# Reduces boot times through caching; required in config/boot.rb
gem 'bootsnap', '>= 1.1.0', require: false

gem 'kaminari'

gem 'refile', require: 'refile/rails', github: 'manfe/refile'

gem 'refile-mini_magick'

group :development, :test do
  # Call 'byebug' anywhere in the code to stop execution and get a debugger console
  gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
  gem 'pry-rails'
  gem 'pry-doc'
  gem 'pry-byebug'
end

group :development do
  # Access an interactive console on exception pages or by calling 'console' anywhere in the code.
  gem 'web-console', '>= 3.3.0'
  gem 'listen', '>= 3.0.5', '< 3.2'
  # Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
  gem 'spring'
  gem 'spring-watcher-listen', '~> 2.0.0'
end


# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

group :production do
  gem 'pg', '>= 0.18', '< 2.0'
end

gemfile.lock

GEM
  remote: https://rubygems.org/
  specs:
    actioncable (5.2.5)
      actionpack (= 5.2.5)
      nio4r (~> 2.0)
      websocket-driver (>= 0.6.1)
    actionmailer (5.2.5)
      actionpack (= 5.2.5)
      actionview (= 5.2.5)
      activejob (= 5.2.5)
      mail (~> 2.5, >= 2.5.4)
      rails-dom-testing (~> 2.0)
    actionpack (5.2.5)
      actionview (= 5.2.5)
      activesupport (= 5.2.5)
      rack (~> 2.0, >= 2.0.8)
      rack-test (>= 0.6.3)
      rails-dom-testing (~> 2.0)
      rails-html-sanitizer (~> 1.0, >= 1.0.2)
    actionview (5.2.5)
      activesupport (= 5.2.5)
      builder (~> 3.1)
      erubi (~> 1.4)
      rails-dom-testing (~> 2.0)
      rails-html-sanitizer (~> 1.0, >= 1.0.3)
    activejob (5.2.5)
      activesupport (= 5.2.5)
      globalid (>= 0.3.6)
    activemodel (5.2.5)
      activesupport (= 5.2.5)
    activerecord (5.2.5)
      activemodel (= 5.2.5)
      activesupport (= 5.2.5)
      arel (>= 9.0)
    activestorage (5.2.5)
      actionpack (= 5.2.5)
      activerecord (= 5.2.5)
      marcel (~> 1.0.0)
    activesupport (5.2.5)
      concurrent-ruby (~> 1.0, >= 1.0.2)
      i18n (>= 0.7, < 2)
      minitest (~> 5.1)
      tzinfo (~> 1.1)
    arel (9.0.0)
    bcrypt (3.1.16)
    bindex (0.8.1)
    bootsnap (1.7.3)
      msgpack (~> 1.0)
    builder (3.2.4)
    byebug (11.1.3)
    coderay (1.1.3)
    coffee-rails (4.2.2)
      coffee-script (>= 2.2.0)
      railties (>= 4.0.0)
    coffee-script (2.4.1)
      coffee-script-source
      execjs
    coffee-script-source (1.12.2)
    concurrent-ruby (1.1.8)
    crass (1.0.6)
    domain_name (0.5.20190701)
      unf (>= 0.0.5, < 1.0.0)
    erubi (1.10.0)
    execjs (2.7.0)
    ffi (1.15.0)
    globalid (0.4.2)
      activesupport (>= 4.2.0)
    http-accept (1.7.0)
    http-cookie (1.0.3)
      domain_name (~> 0.5)
    i18n (1.8.10)
      concurrent-ruby (~> 1.0)
    jbuilder (2.11.2)
      activesupport (>= 5.0.0)
    kaminari (1.2.1)
      activesupport (>= 4.1.0)
      kaminari-actionview (= 1.2.1)
      kaminari-activerecord (= 1.2.1)
      kaminari-core (= 1.2.1)
    kaminari-actionview (1.2.1)
      actionview
      kaminari-core (= 1.2.1)
    kaminari-activerecord (1.2.1)
      activerecord
      kaminari-core (= 1.2.1)
    kaminari-core (1.2.1)
    listen (3.1.5)
      rb-fsevent (~> 0.9, >= 0.9.4)
      rb-inotify (~> 0.9, >= 0.9.7)
      ruby_dep (~> 1.2)
    loofah (2.9.0)
      crass (~> 1.0.2)
      nokogiri (>= 1.5.9)
    mail (2.7.1)
      mini_mime (>= 0.1.1)
    marcel (1.0.0)
    method_source (1.0.0)
    mime-types (3.3.1)
      mime-types-data (~> 3.2015)
    mime-types-data (3.2021.0225)
    mini_magick (4.11.0)
    mini_mime (1.0.3)
    mini_portile2 (2.5.0)
    minitest (5.14.4)
    msgpack (1.4.2)
    mustermann (1.1.1)
      ruby2_keywords (~> 0.0.1)
    mysql2 (0.5.3)
    netrc (0.11.0)
    nio4r (2.5.7)
    nokogiri (1.11.2)
      mini_portile2 (~> 2.5.0)
      racc (~> 1.4)
    pg (1.2.3)
    pry (0.13.1)
      coderay (~> 1.1)
      method_source (~> 1.0)
    pry-byebug (3.9.0)
      byebug (~> 11.0)
      pry (~> 0.13.0)
    pry-doc (1.1.0)
      pry (~> 0.11)
      yard (~> 0.9.11)
    pry-rails (0.3.9)
      pry (>= 0.10.4)
    puma (3.12.6)
    racc (1.5.2)
    rack (2.2.3)
    rack-protection (2.0.8.1)
      rack
    rack-test (1.1.0)
      rack (>= 1.0, < 3)
    rails (5.2.5)
      actioncable (= 5.2.5)
      actionmailer (= 5.2.5)
      actionpack (= 5.2.5)
      actionview (= 5.2.5)
      activejob (= 5.2.5)
      activemodel (= 5.2.5)
      activerecord (= 5.2.5)
      activestorage (= 5.2.5)
      activesupport (= 5.2.5)
      bundler (>= 1.3.0)
      railties (= 5.2.5)
      sprockets-rails (>= 2.0.0)
    rails-dom-testing (2.0.3)
      activesupport (>= 4.2.0)
      nokogiri (>= 1.6)
    rails-html-sanitizer (1.3.0)
      loofah (~> 2.3)
    railties (5.2.5)
      actionpack (= 5.2.5)
      activesupport (= 5.2.5)
      method_source
      rake (>= 0.8.7)
      thor (>= 0.19.0, < 2.0)
    rake (13.0.3)
    rb-fsevent (0.10.4)
    rb-inotify (0.10.1)
      ffi (~> 1.0)
    refile-mini_magick (0.2.0)
      mini_magick (~> 4.0)
      refile (~> 0.5)
    rest-client (2.1.0)
      http-accept (>= 1.7.0, < 2.0)
      http-cookie (>= 1.0.2, < 2.0)
      mime-types (>= 1.16, < 4.0)
      netrc (~> 0.8)
    ruby2_keywords (0.0.4)
    ruby_dep (1.5.0)
    sass (3.7.4)
      sass-listen (~> 4.0.0)
    sass-listen (4.0.0)
      rb-fsevent (~> 0.9, >= 0.9.4)
      rb-inotify (~> 0.9, >= 0.9.7)
    sass-rails (5.1.0)
      railties (>= 5.2.0)
      sass (~> 3.1)
      sprockets (>= 2.8, < 4.0)
      sprockets-rails (>= 2.0, < 4.0)
      tilt (>= 1.1, < 3)
    sinatra (2.0.8.1)
      mustermann (~> 1.0)
      rack (~> 2.0)
      rack-protection (= 2.0.8.1)
      tilt (~> 2.0)
    spring (2.1.1)
    spring-watcher-listen (2.0.1)
      listen (>= 2.7, < 4.0)
      spring (>= 1.2, < 3.0)
    sprockets (3.7.2)
      concurrent-ruby (~> 1.0)
      rack (> 1, < 3)
    sprockets-rails (3.2.2)
      actionpack (>= 4.0)
      activesupport (>= 4.0)
      sprockets (>= 3.0.0)
    thor (1.1.0)
    thread_safe (0.3.6)
    tilt (2.0.10)
    turbolinks (5.2.1)
      turbolinks-source (~> 5.2)
    turbolinks-source (5.2.0)
    tzinfo (1.2.9)
      thread_safe (~> 0.1)
    uglifier (4.2.0)
      execjs (>= 0.3.0, < 3)
    unf (0.1.4)
      unf_ext
    unf_ext (0.0.7.7)
    web-console (3.7.0)
      actionview (>= 5.0)
      activemodel (>= 5.0)
      bindex (>= 0.4.0)
      railties (>= 5.0)
    websocket-driver (0.7.3)
      websocket-extensions (>= 0.1.0)
    websocket-extensions (0.1.5)
    yard (0.9.26)

PLATFORMS
  ruby

DEPENDENCIES
  bcrypt (~> 3.1.7)
  bootsnap (>= 1.1.0)
  byebug
  coffee-rails (~> 4.2)
  jbuilder (~> 2.5)
  kaminari
  listen (>= 3.0.5, < 3.2)
  mysql2 (>= 0.4.4, < 0.6.0)
  pg (>= 0.18, < 2.0)
  pry-byebug
  pry-doc
  pry-rails
  puma (~> 3.11)
  rails (~> 5.2.2)
  refile!
  refile-mini_magick
  sass-rails (~> 5.0)
  spring
  spring-watcher-listen (~> 2.0.0)
  turbolinks (~> 5)
  tzinfo-data
  uglifier (>= 1.3.0)
  web-console (>= 3.3.0)

RUBY VERSION
   ruby 2.5.3p105

BUNDLED WITH
   1.17.3
0

2Answer

Gemfileで

group :development do
...
end

みたいなところからgem消しませんでした?多分その後にbundle installしてないとか?

Gemfile.lockとGemfileの内容が一致してないからエラーって感じがします。

0Like

Comments

  1. @mari-mari

    Questioner

    回答ありがとうございます。
    Gemfileの履歴を見ると、確かに消していました。もう一度bundle installしたり、消した部分をまた書いて保存し、再度bundle installしても、同じエラーのままです。
    gemfile.lockを確認すると、削除していたpry-byebugなどが書いてあるので、Gemfileと一致しているようなのですが、herokuにプッシュした際は、ずっと
    You have deleted from the Gemfile:
    * pry-byebug
    * pry-doc
    * pry-rails
    と出てきます。commitしたり、bundle updateもしました。
    Gemfileとgemfile.lockが反映されない原因で、考えられるものはありますでしょうか。
    ネットで調べていますが、なかなか解決できません。お手数ですがよろしくお願いします。
  2. @mari-mari

    Questioner

    返信ありがとうございます。連絡が遅くなり申し訳ありません。
    色々と根本的なところに問題があり、確かにgitにコミットできてませんでした。
    貴重なご意見をありがとうございました。

Your answer might help someone💌