I migrated to 3.2.13 version of rails and I am getting this error, how do I get rid of this?
Fetching gem metadata from https://rubygems.org/.......
Fetching
For anyone who accidently comes to this link (at the time google served this page first); check out this post Bundler could not find compatible versions for gem, updating Rails app
My steps were run
gem update rails
rm Gemfile.lock
change my Gemfile to reference the version of rails i wanted
gem 'rails', '3.2.13'
finally run
bundle install
I didn't try bundle update as @PistachioPony suggested but that might take the place of removing the lock file and rebuilding.