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
|
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 |
|||
|
|
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
to access the routes object (Zobie's page, a couple years old, says to use
and see what URL is generated for a given controller/action/parameters combination:
Thanks, Zobie! |
|||||||||
|
|
Basically(if I understood your question right) it boils down to including the UrlWriter Module:
Or you can prepend app to the calls in the console e.g.:
(This is all Rails v. 3.0.3) |
|||||||
|
|
In the console of a Rails 3.2 app:
|
|||
|
|
running the routes command from your project directory will display your routing:
is this what you had in mind? |
|||
|