Rails 3.2.13 から 3.2.15 にアップグレードしようとしています。
古い Gemfile
gem 'rails', '3.2.13'
新しい Gemfile
gem 'rails', '3.2.15'
bundle を実行すると、次のようになります。
$ bundle
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 snapshot (Gemfile.lock):
activesupport (3.2.13)
In Gemfile:
rails (= 3.2.15) ruby depends on
activesupport (= 3.2.15) ruby
Running `bundle update` will rebuild your snapshot from scratch, using only
the gems in your Gemfile, which may resolve the conflict.
私がオンラインで見つけたアドバイスbundle update rails
は、この問題を修正するために実行することですが、Rails 4.0 に更新されます。
これを解決するにはどうすればよいですか?