Skip to content

Instantly share code, notes, and snippets.

@devdatta
Forked from indirect/application_helper.rb
Created June 21, 2010 05:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devdatta/446441 to your computer and use it in GitHub Desktop.
Save devdatta/446441 to your computer and use it in GitHub Desktop.
class ApplicationHelper
def breadcrumbs
result = "".html_safe
association_chain.each_with_index do |item, index|
# note that .name works for both classes and objects
result << link_to(item.name.humanize.titlecase, association_chain[0..index])
result << " &raquo; ".html_safe
end
result << resource.name.humanize.titleize
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment