Skip to content

Instantly share code, notes, and snippets.

@jqr
Forked from baldwindavid/gist:110628
Created May 12, 2009 18:08
Show Gist options
  • Save jqr/110634 to your computer and use it in GitHub Desktop.
Save jqr/110634 to your computer and use it in GitHub Desktop.
module Breadcrumb
def breadcrumbs
if parent
parent.breadcrumbs << self
else
[self]
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment