I have a model stories in Rails 3.
I want to make an alias \"books\" for \"stories\" so I can have routes /books/192 instead of /stories/192
/books/192
/stories/192
That's why they made the path option on match which is also available on resources:
path
match
resources
resources :stories, :path => "books"