Rails: how do you access RESTful helpers? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T04:02:27Z http://stackoverflow.com/feeds/question/433860 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/433860/rails-how-do-you-access-restful-helpers 1 Rails: how do you access RESTful helpers? Ethan 2009-01-11T22:25:11Z 2009-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>&gt;&gt; entries_url </code></pre> <p>But got:</p> <pre><code>NameError: undefined local variable or method `entries_url' for #&lt;Object:0x349a4&gt; from (irb):8 </code></pre> http://stackoverflow.com/questions/433860/rails-how-do-you-access-restful-helpers/433904#433904 0 Answer by DanSingerman for Rails: how do you access RESTful helpers? DanSingerman 2009-01-11T22:48:04Z 2009-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#434017 5 Answer by Mike Woodhouse for Rails: how do you access RESTful helpers? Mike Woodhouse 2009-01-11T23:33:02Z 2009-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#434050 1 Answer by Tim K. for Rails: how do you access RESTful helpers? Tim K. 2009-01-11T23:47:57Z 2009-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#434057 0 Answer by madlep for Rails: how do you access RESTful helpers? madlep 2009-01-11T23:52:18Z 2009-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#434146 0 Answer by Matt Darby for Rails: how do you access RESTful helpers? Matt Darby 2009-01-12T00:59:16Z 2009-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#435282 0 Answer by Ryan Bigg for Rails: how do you access RESTful helpers? Ryan Bigg 2009-01-12T12:28:37Z 2009-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>