You can list all defined routes in your Rails application with:

rake routes

And what’s more interesting, you can list only the routes for a single controller:

rake routes CONTROLLER=projects

Just a quick tip. :)