I'm working through Michael Hartl's excellent Rails 3 Tutorial book, but I am stuck at section 3.2.2. in which he refers to rspec tests being auto-generated from
rails generate Pages home contact
rails generate rspec:install
I've noticed a few points in which the current releases of gems differ, and that's expected, but all I see in my spec directory is a file called 'spec_helper.rb'. So I'm missing the following directories that, according to the tutorial, should exits:
spec/helpers
spec/views
spec/controllers
Is this something RSpec or Rails no longer generates?