$ rake routes (in /Users/otto/Desktop/Incubator/shallow_routes) blogs GET /blogs(.:format) {:action=>"index", :controller=>"blogs"} POST /blogs(.:format) {:action=>"create", :controller=>"blogs"} new_blog GET /blogs/new(.:format) {:action=>"new", :controller=>"blogs"} edit_blog GET /blogs/:id/edit(.:format) {:action=>"edit", :controller=>"blogs"} blog GET /blogs/:id(.:format) {:action=>"show", :controller=>"blogs"} PUT /blogs/:id(.:format) {:action=>"update", :controller=>"blogs"} DELETE /blogs/:id(.:format) {:action=>"destroy", :controller=>"blogs"} posts GET /posts(.:format) {:action=>"index", :controller=>"posts"} POST /posts(.:format) {:action=>"create", :controller=>"posts"} new_post GET /posts/new(.:format) {:action=>"new", :controller=>"posts"} edit_post GET /posts/:id/edit(.:format) {:action=>"edit", :controller=>"posts"} post GET /posts/:id(.:format) {:action=>"show", :controller=>"posts"} PUT /posts/:id(.:format) {:action=>"update", :controller=>"posts"} DELETE /posts/:id(.:format) {:action=>"destroy", :controller=>"posts"} comments GET /comments(.:format) {:action=>"index", :controller=>"comments"} POST /comments(.:format) {:action=>"create", :controller=>"comments"} new_comment GET /comments/new(.:format) {:action=>"new", :controller=>"comments"} edit_comment GET /comments/:id/edit(.:format) {:action=>"edit", :controller=>"comments"} comment GET /comments/:id(.:format) {:action=>"show", :controller=>"comments"} PUT /comments/:id(.:format) {:action=>"update", :controller=>"comments"} DELETE /comments/:id(.:format) {:action=>"destroy", :controller=>"comments"}