Skip to content

Instantly share code, notes, and snippets.

@baldwindavid
Created May 12, 2009 18:02
Show Gist options
  • Save baldwindavid/110628 to your computer and use it in GitHub Desktop.
Save baldwindavid/110628 to your computer and use it in GitHub Desktop.
module Breadcrumb
def breadcrumbs
rbreadcrumbs.reverse
end
def rbreadcrumbs
crumbs = []
crumbs << self
crumbs << self.parent.rbreadcrumbs if self.parent
crumbs.flatten
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment