前提・実現したいこと
railsアプリをHerokuでデプロイ時(git push heroku master)した際に
以下のエラーメッセージが発生しました。
発生している問題・エラーメッセージ
remote: ! remote: ! Could not detect rake tasks remote: ! ensure you can run `$ bundle exec rake -P` against your app remote: ! and using the production group of your Gemfile. remote: ! Activating bundler (2.0.1) failed: remote: ! Could not find 'bundler' (2.0.1) required by your /tmp/build_a5a1935abed158bbe82fd9d1750698db/Gemfile.lock. remote: ! To update to the latest version installed on your system, run `bundle update --bundler`. remote: ! To install the missing version, run `gem install bundler:2.0.1` remote: ! Checked in 'GEM_PATH=vendor/bundle/ruby/2.5.0', execute `gem env` for more information remote: ! remote: ! To install the version of bundler this project requires, run `gem install bundler -v '2.0.1'` remote: !
エラーメッセージを見る限りではbundlerのバージョンを2.0.1にしてくれみたいなことが書かれていますが、
Gemfilelock
1BUNDLED WITH 2 2.0.1
なので混乱しています。
ただ1つgit push heroku master実行した際に
$ git push heroku master Enumerating objects: 198, done. Counting objects: 100% (198/198), done. Delta compression using up to 4 threads Compressing objects: 100% (169/169), done. Writing objects: 100% (198/198), 48.33 KiB | 1.24 MiB/s, done. Total 198 (delta 24), reused 0 (delta 0) remote: Compressing source files... done. remote: Building source: remote: remote: ! Warning: Multiple default buildpacks reported the ability to handle this app. The first buildpack in the list below will be used. remote: Detected buildpacks: Ruby,Node.js remote: See https://devcenter.heroku.com/articles/buildpacks#buildpack-detect-order remote: -----> Ruby app detected remote: -----> Compiling Ruby/Rails remote: -----> Using Ruby version: ruby-2.5.1 remote: -----> Installing dependencies using bundler 2.0.2 remote: Running: bundle install --without development:test --path vendor/bundle --binstubs vendor/bundle/bin -j4 --deployment remote: The dependency tzinfo-data (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for x86-mingw32, x86-mswin32, x64-mingw32, java. To add those platforms to the bundle, run `bundle lock --add-platform x86-mingw32 x86-mswin32 x64-mingw32 java`. remote: Fetching gem metadata from https://rubygems.org/............
Installing dependencies using bundler 2.0.2という記述が問題なのでしょうが
解決できません。
どなたかご教授の程よろしくお願いします。
試したこと
bundlerをアンインストール
補足情報(FW/ツールのバージョンなど)
ruby 2.5.1
rails 5.2.3
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/12/04 18:53