I have the Shovell source code from the book Simply Rails 2, but I'm having problems running it.
"Getting started Here’s how to get rolling: 1. Create your databases and edit config/database.yml Rails needs to know your login and password. 2. Use script/generate to create your models and controllers To see all available options, run it without parameters. 3. Set up a default route and remove or rename this file Routes are set up in config/routes.rb."
I took step 1, then since the models and controllers are already generated for a source code that already exists, I skipped step 2 and since a default route is already set for a source code that already exists, I skipped step 3.
My config/roubes.rb has map.root :controller => "stories", but http://localhost:3000/ still doesn't load the stories controller index. Why?
By the way, routes.rb says:
map.resources :users
map.root :controller => "stories"
map.resource :session
map.resources :stories, :has_many => :votes, :collection => { :bin => :get }
map.connect ':controller/:action/:id'
map.connect ':controller/:action/:id.:format'