I\'m a RoR-Beginner and I started learning it with the RoR-Tutorial. Actually I\'m at this chapter (http://ruby.railstutorial.org/chapters/static-pages#top) and try to install
Here's what I did:
the gemfile on the site is apparently slightly wrong, i'm using this:
source 'http://rubygems.org'
gem "rails", "~> 3.1.0"
gem 'sqlite3', '1.3.3'
group :development do
gem 'rspec-rails', '2.6.1'
end
group :test do
gem 'rspec-rails', '2.6.1'
gem 'webrat', '0.7.1'
end
in your terminal type
$ bundle update
$ bundle install
then try again the command
rails generate rspec:install
Good luck! :)