実現したいこと
- 「 `find_spec_for_exe': can't find gem bundler (= 2.4.13) with executable bundle (Gem::GemNotFoundException)」というエラーを解消したい
- bundler --version='2.1.4'を使用した上で、railsで新規アプリの立ち上げに成功したい
前提
とあるオンラインスクールで学習中です。
まず、最終課題が終了し、AWSのEC2へCapistranoを用いて自動デプロイ中に
01 bundler: failed to load command: rake (/var/www/furima-39274/shared/bundle/ruby/2.6.0/bin/rake) 01 Gem::Exception: can't find executable rake for gem rake. rake is not currently included in the bundle, perhaps you meant to add it to your Gemfile?
というエラーがでたため、
メンタリングにて
bundlerがローカル環境と本番環境でバージョンが違っていた(ローカル環境に2種類入っていた)とのことで
rm -rf $(gem environment gemdir)/specifications/default
実行後
gem uninstall bundler ; gem install bundler -v '2.1.4' ; rm -rf Gemfile.lock ; bundle install ;
を一括でいれたところ
* LOCAL GEMS * bundler (2.1.4)
が表示され一時エラーは解消しました。
しかしこのあと、オリジナルアプリの開発をしようと思い、rails newでアプリを立ち上げた際に
下記のエラーメッセージが出ました。
発生している問題・エラーメッセージ
/Users/shibayamanatsuko/.rbenv/versions/2.6.5/lib/ruby/site_ruby/2.6.0/rubygems.rb:263:in `find_spec_for_exe': can't find gem bundler (= 2.4.13) with executable bundle (Gem::GemNotFoundException)
該当のソースコード
関係があるかどうか・・・ですが
最終課題のGemfile
source 'https://rubygems.org' git_source(:github) { |repo| "https://github.com/#{repo}.git" } ruby '2.6.5' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails' gem 'rails', '~> 6.0.0' # Use mysql as the database for Active Record gem 'mysql2', '>= 0.4.4' # Use Puma as the app server gem 'puma', '~> 3.11' # Use SCSS for stylesheets gem 'sass-rails', '~> 5' # Transpile app-like JavaScript. Read more: https://github.com/rails/webpacker gem 'webpacker', '~> 4.0' # 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.7' # Use Redis adapter to run Action Cable in production # gem 'redis', '~> 4.0' # Use Active Model has_secure_password # gem 'bcrypt', '~> 3.1.7' # Use Active Storage variant # gem 'image_processing', '~> 1.2' # Reduces boot times through caching; required in config/boot.rb gem 'bootsnap', '>= 1.4.2', require: false 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 'rspec-rails', '~> 4.0.0' gem 'factory_bot_rails' gem 'faker' gem 'gimei' gem 'capistrano' gem 'capistrano-rbenv' gem 'capistrano-bundler' gem 'capistrano-rails' gem 'capistrano3-unicorn' 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' gem 'rubocop', require: false end group :test do # Adds support for Capybara system testing and selenium driver gem 'capybara', '>= 2.15' gem 'selenium-webdriver' # Easy installation and use of web drivers to run system tests with browsers gem 'webdrivers' 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' gem 'unicorn', '5.4.1' end gem 'devise' gem 'mini_magick' gem 'image_processing', '~> 1.2' gem 'active_hash' gem 'pry-rails' gem 'payjp' gem 'rails-i18n' gem "aws-sdk-s3", require: false gem 'mail', '2.7.1' gem 'rake'
試したこと
gem list bundler
をしたら
*** LOCAL GEMS *** bundler (2.1.4) capistrano-bundler (2.1.0)
とでました。
プロジェクトのディレクトリで
rbenv version rvm -v
を順に行ったら
rbenv version 2.6.5 (set by zsh: command not found: rvm
とでましたが、
他に解決方法がわかりませんでした。
補足情報(FW/ツールのバージョンなど)
Ruby2.6.5
bundler --version='2.1.4'
rails --version='6.0.0'
はスクール開始当初にインストールしてあります。
初学者でして、基本的な質問でしたらすみません。
また足りない情報がありましたらすみません。
エラーの解決方法を教えていただければ嬉しいです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。