routes.rb

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.

run

rake routes

and you'll see all the routes they create. comment one out and run it again to see what goes away

Tony Primerano wrote:

run

rake routes

and you'll see all the routes they create. comment one out and run it again to see what goes away

Thanks Tony.