Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Say I have a router helper that I want more info on, like blogs_path, how do I find out the map statements behind that in console.

I tried generate and recognize and I got unrecognized method error, even after I did require 'config/routes.rb'

THanks

share|improve this question
found the answer here – user382964 Jul 4 '10 at 5:43

4 Answers

up vote 34 down vote accepted

There is a good summary with examples at Zobie's Blog showing how to manually check URL-to-controller/action mapping and the converse. For example, start with

 r = Rails.application.routes

to access the routes object (Zobie's page, a couple years old, says to use ActionController::Routing::Routes, but that's now deprecated in favor of Rails.application.routes). You can then check the routing based on a URL:

 >> r.recognize_path "/station/index/42.html"
 => {:controller=>"station", :action=>"index", :format=>"html", :id=>"42"}

and see what URL is generated for a given controller/action/parameters combination:

 >> r.generate :controller => :station, :action=> :index, :id=>42
 => /station/index/42

Thanks, Zobie!

share|improve this answer
2  
Nice. Is there a way you can test named routes like root_path with this method? – brittohalloran Nov 21 '11 at 20:25
1  
@brittohalloran Rails.application.routes.url_helpers.my_path_helper – Rahul garg Nov 27 '12 at 17:56

Basically(if I understood your question right) it boils down to including the UrlWriter Module:

   include ActionController::UrlWriter
   root_path
   => "/"

Or you can prepend app to the calls in the console e.g.:

   ruby-1.9.2-p136 :002 > app.root_path
   => "/" 

(This is all Rails v. 3.0.3)

share|improve this answer
18  
include Rails.application.routes.url_helpers is Rails 3 way to do it. – Mirko May 30 '11 at 22:43
for some routes you need to set a default host for them to work e.g. default_url_options[:host] = 'foo' – Sam Figueroa May 31 '11 at 6:23

In the console of a Rails 3.2 app:

# include routing and URL helpers
include ActionDispatch::Routing
include Rails.application.routes.url_helpers

# use routes normally
users_path #=> "/users"
share|improve this answer
Doesn't seem like the include ActionDispatch::Routing is needed. – Marc-André Lafortune Sep 9 '12 at 3:56

running the routes command from your project directory will display your routing:

rake routes

is this what you had in mind?

share|improve this answer
rake routes will give all routes. I'm trying for something more specific like .generate and .recognize methods, except for helpers. So if I enter in blogs_path, I should get :action => index, :controller => :blog – sent-hil May 7 '10 at 5:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.