bundle installをしたのですが
err文
1Resolving dependencies... 2Bundler could not find compatible versions for gem "actionmailbox": 3 In snapshot (Gemfile.lock): 4 actionmailbox (= 6.0.4) 5 6 In Gemfile: 7 rails (~> 6.0.4) was resolved to 6.0.4.8, which depends on 8 actionmailbox (= 6.0.4.8) 9 10Running `bundle update` will rebuild your snapshot from scratch, using only 11the gems in your Gemfile, which may resolve the conflict.
Gemfile
1source 'https://rubygems.org' 2git_source(:github) { |repo| "https://github.com/#{repo}.git" } 3 4gem 'rails', '~>6.0.4' 5gem 'puma', '~>4.3.6' 6gem 'sass-rails', '~>5.1.0' 7gem 'webpacker', '~>4.0.7' 8gem 'turbolinks', '~>5.2.0' 9gem 'jbuilder', '~>2.9.1' 10gem 'bootsnap', '~>1.10.3', require: false 11 12group :development, :test do 13 gem 'sqlite3', '1.4.1' 14 gem 'byebug', '11.0.1', platforms: [:mri, :mingw, :x64_mingw] 15end 16 17group :development do 18 gem 'web-console', '4.0.1' 19 gem 'listen', '3.1.5' 20 gem 'spring', '2.1.0' 21 gem 'spring-watcher-listen', '2.0.1' 22end 23 24group :test do 25 gem 'capybara', '3.28.0' 26 gem 'selenium-webdriver', '3.142.4' 27 gem 'webdrivers', '4.1.2' 28 gem 'rails-controller-testing', '1.0.4' 29 gem 'minitest', '5.15.0' 30 gem 'minitest-reporters', '1.3.8' 31 gem 'guard', '2.16.2' 32 gem 'guard-minitest', '2.4.6' 33end 34 35group :production do 36 gem 'pg', '1.1.4' 37end 38gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]

回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2022/04/28 01:03
2022/04/28 01:13
2022/04/28 01:49