Dynamically construct RESTful route using Rails - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T14:19:34Z http://stackoverflow.com/feeds/question/744592 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/744592/dynamically-construct-restful-route-using-rails 1 Dynamically construct RESTful route using Rails John Topley 2009-04-13T17:01:20Z 2009-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>&mdash;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#744600 5 Answer by Maximiliano Guzman for Dynamically construct RESTful route using Rails Maximiliano Guzman 2009-04-13T17:04:35Z 2009-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#744904 2 Answer by Michael for Dynamically construct RESTful route using Rails Michael 2009-04-13T18:31:24Z 2009-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>