I\'m trying to follow this tutorial here: http://railstutorial.org/chapters/static-pages#top
When I run:
$ rails generate rspec:install >
$ rails generate rspec:install
By default I had only 'rspec-rails' in my gemfile, and so bundler installed rspec-rails 1.x (some prehistoric version) for some reason. After I modified my gemfile to have gem 'rspec-rails', '~>3.0' and ran bundle update it ran fine.
'rspec-rails'
gem 'rspec-rails', '~>3.0'