11155
(-- --)
1
I'm following the tutorial here:
And, so far, I have the following in the routes.rb file:
get "home/index"
resources :posts
root :to => "home#index"
I know what "root :to => "home#index" is.
But, what is the use of the following, what do they mean?
get "home/index"
resources :posts
Thanks.
Tony5
(Tony)
2
run
rake routes
and you'll see all the routes they create. comment one out and run it
again to see what goes away