Skip to content

Instantly share code, notes, and snippets.

@stonegao
Forked from indirect/application_helper.rb
Created June 21, 2010 09:56
Show Gist options
  • Select an option

  • Save stonegao/446654 to your computer and use it in GitHub Desktop.

Select an option

Save stonegao/446654 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