Say I want to render a page that isn't necessarily tied to a model. Up until now I have been creating a controller titled, "Pages", and a route for each page:
map.home :controller => "pages", :action => "home"
This isn't restful and it is tedious. Surely there is a better way to handle "perspectives" such as this?
Note: I avoid the term "view" in order to distinguish between Rails views and what I wish to accomplish.
Thanks.