Upgrading to Rails 4.2.0.beta2 ( aka upgrading to rspec-rails 3.1.x )
October 21, 2014
Here is the process we went through to get our tests passing after upgrading our Rails app from Rails 4.1 to Rails 4.2.0.beta2.
We updated the rails gem version and ran bundle update, and found these
gems needed to be upgraded to resolve dependencies: gem 'rspec-rails', '~> 2.14.1' upgraded to '~> 3.1.0' gem 'rspec', '~> 2.14.1' upgraded to '~> 3.1.0' gem 'sass-rails', '>= 3.2' upgraded to '>= 5.0.0.beta1' gem 'bootstrap-sass', '~> 3.
...
Read more