Upgrading to Rails 3: Problem with routes?

Resources :index provides paths for an index resource. So new_index_path will point to the new action in the IndexController . If you do not have an index resource, you should not be using resources to define a path to "users#index" .

This path is already given to you as users_path through resources :users . If you are looking to set an index page for your application, you can achieve that using root :to => "users#index" .

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions