Blog Post RSS ?

Blogs » Ruby on Rails » Understanding Routes with Routing Navigator
 

Understanding Routes with Routing Navigator

by Tim Lucas

Rick Olson’s released a Routing Navigator plugin to help understand how the Rails routing system works for your application (note: it only supports edge rails, not v1.1.2).

To test it out:

  1. Create a new rails application
    $ rails routingtest
  2. Install edge rails into vendor
    $ cd routingtest
    $ rake rails:freeze:edge
  3. Install the routing navigator plugin
    $ script/plugin source http://svn.techno-weenie.net/projects/plugins
    $ script/plugin install routing_navigator
  4. Install the plugin’s CSS and JS file
    $ rake update_routing_navigator
  5. Start your application
    $ script/server
  6. Browse to /routing_navigator
  7. Modify your routes, rinse and repeat
  8. You’ll also want to add the following to the head of your layout if you want to inspect routes on any of your view pages:
    <%= javascript_include_tag :defaults, 'routing_navigator' %>
    <%= stylesheet_link_tag 'routing_navigator' %>

For the lazy and curious: the routes generated for a base Rails application:

Route Significant Keys Requirements Conditions
/:controller/service.wsdl/ [:controller, :action] {:action=>”wsdl”} {}
/:controller/:action/:id/ [:controller, :action, :id] {} {}

…and the routes for a simple RESTful application, written using the simply_restful plugin:

Route Significant Keys Requirements Conditions
/:controller/service.wsdl/ [:controller, :action] {:action=>”wsdl”} {}
/people.:format/ [:format, :action, :controller] {:action=>”create”, :controller=>”people”} {:method=>:post}
/people/ [:action, :controller] {:action=>”create”, :controller=>”people”} {:method=>:post}
/people.:format/ [:format, :action, :controller] {:action=>”index”, :controller=>”people”} {:method=>:get}
/people/ [:action, :controller] {:action=>”index”, :controller=>”people”} {:method=>:get}
/people/new.:format/ [:format, :action, :controller] {:action=>”new”, :controller=>”people”} {:method=>:get}
/people/new/ [:action, :controller] {:action=>”new”, :controller=>”people”} {:method=>:get}
/people/:id/ [:id, :action, :controller] {:action=>”destroy”, :controller=>”people”} {:method=>:delete}
/people/:id/ [:id, :action, :controller] {:action=>”update”, :controller=>”people”} {:method=>:put}
/people/:id.:format;edit/ [:id, :format, :action, :controller] {:action=>”edit”, :controller=>”people”} {:method=>:get}
/people/:id;edit/ [:id, :action, :controller] {:action=>”edit”, :controller=>”people”} {:method=>:get}
/people/:id.:format/ [:id, :format, :action, :controller] {:action=>”show”, :controller=>”people”} {:method=>:get}
/people/:id/ [:id, :action, :controller] {:action=>”show”, :controller=>”people”} {:method=>:get}
/:controller/:action/:id/ [:controller, :action, :id] {} {}
Share and Enjoy:
  • Digg
  • del.icio.us
  • Facebook
  • Google Bookmarks
  • Ping.fm
  • Twitthis

Related posts:

  1. Wearing the Other Shoe: Understanding How Your Clients Think Understand your clients' unique needs leads to stronger and more...
  2. Top Ruby Frameworks Rails and Merb Join Forces It's not every day that two essentially competing web development...
  3. Famous Rails Screencast Gets an Update When Ruby on Rails was first introduced, nothing helped put...
  4. PHP Framework Plans Socially Responsible Coding Contest The Symfony PHP framework is planning a 48-hour programming competition...
  5. Pretty URLs: Pretty Easy! The fourth edition of Build Your Own Database Driven Website...

This post has 3 responses so far

Sponsored Links

SitePoint Marketplace

Buy and sell Websites, templates, domain names, hosting, graphics and more.

Follow SitePoint on...