up vote 16 down vote favorite
10
share [g+] share [fb]

I'm trying to work through this guide to Rails routing, but I got stuck in section 3.3:

Creating a RESTful route will also make available a pile of helpers within your application

and then they list some helpers like photos_url, photos_path, etc.

My questions:

Where can I find the complete list of helpers that is "made available?"

Is there a way to call the helpers in the console? I created an app, then opened up the console with script/console. I tried to call one of the helpers on the console like this:

>> entries_url

But got:

NameError: undefined local variable or method `entries_url' for #<Object:0x349a4>
    from (irb):8
link|improve this question

feedback

6 Answers

up vote 35 down vote accepted

You have several questions in there, most of which have already been answered by people below.

The answer to one that wasn't fully addressed however, is: yes you can use the script/console to see where your routes go. Just type in app.[route_helper] and it will respond with the path. For example app.users_path will return /users/

So for your example type app.entries_url for the full URL - or app.entries_path for its relative path within the console.

link|improve this answer
Awesome! Thanks, man. – Ethan Jan 12 '09 at 0:27
1  
the extra anchovies is that it does tab completion, e.g., at the console type app.edit[tab] and it lists all routing helper methods beginning with 'edit'. – pduey Sep 30 '11 at 17:26
feedback

rake routes at the command line should get you that list.

link|improve this answer
3  
Take the first column and append _url to have the full URI or _path to have an URI not including the domain name. – Vincent Robert Jan 12 '09 at 0:28
Is there any way to generate a list of helpers, with _url and _path and parameters written explicitly? Would be most helpful in the case of nested resources, to see clearly what parameters each helper takes, if any. – Magne Feb 23 '11 at 11:51
feedback

I think this may be what you are looking for ... http://topfunky.com/clients/peepcode/REST-cheatsheet.pdf

link|improve this answer
feedback

You can access other helpers in the console by prepending "helper."; ie. helper.progress_box (assuming #progress_box exists of course)

link|improve this answer
s/appending/prepending – aehlke Aug 3 '09 at 18:52
feedback

There's an awesome guide called "Rails Routing from the Outside In" written by Mike Gunderloy that deals with everything and anything routing

link|improve this answer
That's the guide I referred and linked to in my original question. – Ethan Jan 12 '09 at 17:44
with a mistake in the url :) It has an extra "ttp" – Vijay Dev Apr 28 '10 at 10:25
@Vijay: fixed, thanks! – Ryan Bigg Apr 28 '10 at 20:53
link is now dead. – Jeremy B. Mar 9 '11 at 14:21
@Jeremy: Not any more thanks. – Ryan Bigg Mar 9 '11 at 20:46
feedback

From memory, you can't call url/path helpers from the console for some reason.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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