vote up 1 vote down star

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:

def get_link(resource)
  link_to "#{resource.capitalize}", resource_path
end

—Clearly the resource_path part above doesn't work. What I'd like is to be able to pass foos to get foos_path and bars to get bars_path etc. How can I do that? I can't quite work out the syntax.

flag

2 Answers

vote up 5 vote down check

def get_link(resource)
  link_to "#{resource.capitalize}", send("#{resource}_path")
end
link|flag
Thanks, works great. Out of interest, what is the receiver of the send message at this point? – John Topley Apr 13 at 17:22
To answer my own question - when no receiver is specified then it's self, which in this case is ActionView::Base because it's in a helper method. – John Topley Apr 18 at 18:29
vote up 2 vote down
def get_link(resource)
  link_to(resource.to_s.titleize, send("#{resource}_path"))
end

The to_s call on resource is to support passing symbols as resource. So

get_link("foos")

will work and also

get_link(:foos)
link|flag

Your Answer

Get an OpenID
or

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