Rails: how do you access RESTful helpers? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T04:02:27Zhttp://stackoverflow.com/feeds/question/433860http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/433860/rails-how-do-you-access-restful-helpers1Rails: how do you access RESTful helpers?Ethan2009-01-11T22:25:11Z2009-04-13T16:54:53Z
<p>I'm trying to work through this <a href="http://guides.rubyonrails.org/routing_outside_in.html" rel="nofollow">guide to Rails routing</a>, but I got stuck in section <a href="http://guides.rubyonrails.org/routing_outside_in.html#_urls_and_paths" rel="nofollow">3.3</a>:</p>
<blockquote>
<p>Creating a RESTful route will also make available a pile of helpers within your application</p>
</blockquote>
<p>and then they list some helpers like <code>photos_url</code>, <code>photos_path</code>, etc.</p>
<p>My questions:</p>
<p>Where can I find the complete list of helpers that is "made available?"</p>
<p>Is there a way to call the helpers in the console? I created an app, then opened up the console with <code>script/console</code>. I tried to call one of the helpers on the console like this:</p>
<pre><code>>> entries_url
</code></pre>
<p>But got:</p>
<pre><code>NameError: undefined local variable or method `entries_url' for #<Object:0x349a4>
from (irb):8
</code></pre>
http://stackoverflow.com/questions/433860/rails-how-do-you-access-restful-helpers/433904#4339040Answer by DanSingerman for Rails: how do you access RESTful helpers?DanSingerman2009-01-11T22:48:04Z2009-01-11T22:48:04Z<p>I think this may be what you are looking for ... <a href="http://topfunky.com/clients/peepcode/REST-cheatsheet.pdf" rel="nofollow">http://topfunky.com/clients/peepcode/REST-cheatsheet.pdf</a></p>
http://stackoverflow.com/questions/433860/rails-how-do-you-access-restful-helpers/434017#4340175Answer by Mike Woodhouse for Rails: how do you access RESTful helpers?Mike Woodhouse2009-01-11T23:33:02Z2009-01-11T23:33:02Z<p><code>rake routes</code> at the command line should get you that list.</p>
http://stackoverflow.com/questions/433860/rails-how-do-you-access-restful-helpers/434050#4340501Answer by Tim K. for Rails: how do you access RESTful helpers?Tim K.2009-01-11T23:47:57Z2009-04-13T16:54:53Z<p>You have several questions in there, most of which have already been answered by people below.</p>
<p>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 <code>app.[route_helper]</code> and it will respond with the path. For example <code>app.users_path</code> will return <code>/users/</code></p>
<p>So for your example type <code>app.entries_url</code> for the full URL - or <code>app.entries_path</code> for its relative path within the console.</p>
http://stackoverflow.com/questions/433860/rails-how-do-you-access-restful-helpers/434057#4340570Answer by madlep for Rails: how do you access RESTful helpers?madlep2009-01-11T23:52:18Z2009-01-11T23:52:18Z<p>From memory, you can't call url/path helpers from the console for some reason.</p>
http://stackoverflow.com/questions/433860/rails-how-do-you-access-restful-helpers/434146#4341460Answer by Matt Darby for Rails: how do you access RESTful helpers?Matt Darby2009-01-12T00:59:16Z2009-01-12T00:59:16Z<p>You can access other helpers in the console by appending "helper."; ie. helper.progress_box (assuming #progress_box exists of course)</p>
http://stackoverflow.com/questions/433860/rails-how-do-you-access-restful-helpers/435282#4352820Answer by Ryan Bigg for Rails: how do you access RESTful helpers?Ryan Bigg2009-01-12T12:28:37Z2009-01-12T12:28:37Z<p>There's an <a href="http://ttp://guides.rubyonrails.org/routing_outside_in.html" rel="nofollow">awesome guide called "Rails Routing from the Outside In" written by Mike Gunderloy</a> that deals with everything and anything routing</p>