##前提・実現したいこと
互換性がなくなっているとの事でこれを解決したい。
ruby '2.6.6'
gem 'activesupport', '~> 6.0', '>= 6.0.3.2'
##発生している問題・エラーメッセージ
%bundle install
%bundle update
%bundle update activesupport
この3つをしても同じエラーが出てしまいます。
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`. Fetching gem metadata from https://rubygems.org/............ Fetching gem metadata from https://rubygems.org/. Resolving dependencies... Bundler could not find compatible versions for gem "activesupport": In Gemfile: activesupport (~> 6.0, >= 6.0.3.2) rails (~> 5.2.2) was resolved to 5.2.4.3, which depends on activesupport (= 5.2.4.3)
またrails -vでバージョンを確認しようとしたら下記のようなエラーが出てしまいます。
You have requested: activesupport ~> 6.0, >= 6.0.3.2 The bundle currently has activesupport locked at 5.2.4.3. Try running `bundle update activesupport` If you are updating multiple gems in your Gemfile at once, try passing them all to `bundle update` Run `bundle install` to install missing gems.
##該当のソースコード
Gemfileの最下部に書きました。
Gemfile
1gem 'activesupport', '~> 6.0', '>= 6.0.3.2'
##自分で調べたことや試したこと
ターミナル再起動
gem 'activesupport', '~> 6.0', '>= 6.0.3.2'
をGemfileの最下部に記入し、下記のコマンド試してみました。
%bundle install
%bundle update
%bundle update activesupport
解決法がわかる方がいらっしゃいましたらよろしくお願い致します。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/29 01:50