Dynamically construct RESTful route using Rails - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T14:19:34Zhttp://stackoverflow.com/feeds/question/744592http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/744592/dynamically-construct-restful-route-using-rails1Dynamically construct RESTful route using RailsJohn Topley2009-04-13T17:01:20Z2009-04-13T18:31:24Z
<p>I'm trying to write a helper method that accepts the name of a plural resource and returns a corresponding link. The essence of the method is:</p>
<pre><code>def get_link(resource)
link_to "#{resource.capitalize}", resource_path
end
</code></pre>
<p>—Clearly the <code>resource_path</code> part above doesn't work. What I'd like is to be able to pass <code>foos</code> to get <code>foos_path</code> and <code>bars</code> to get <code>bars_path</code> etc. How can I do that? I can't quite work out the syntax.</p>
http://stackoverflow.com/questions/744592/dynamically-construct-restful-route-using-rails/744600#7446005Answer by Maximiliano Guzman for Dynamically construct RESTful route using RailsMaximiliano Guzman2009-04-13T17:04:35Z2009-04-13T17:04:35Z<pre><code>
def get_link(resource)
link_to "#{resource.capitalize}", send("#{resource}_path")
end
</code></pre>
http://stackoverflow.com/questions/744592/dynamically-construct-restful-route-using-rails/744904#7449042Answer by Michael for Dynamically construct RESTful route using RailsMichael2009-04-13T18:31:24Z2009-04-13T18:31:24Z<pre>
def get_link(resource)
link_to(resource.to_s.titleize, send("#{resource}_path"))
end
</pre>
<p>The to_s call on resource is to support passing symbols as resource.
So </p>
<pre>
get_link("foos")
</pre>
<p>will work and also </p>
<pre>
get_link(:foos)
</pre>