Skip to content

Instantly share code, notes, and snippets.

@ericallam
Created October 17, 2011 19:54
Show Gist options
  • Select an option

  • Save ericallam/1293607 to your computer and use it in GitHub Desktop.

Select an option

Save ericallam/1293607 to your computer and use it in GitHub Desktop.
def products_page
@page.our_products?
end
helper_method :products_page
class Page
OUR_PRODUCTS_TITLE = 'Our Products'
def our_products?
self.title == OUR_PRODUCTS_TITLE or self.parent.try(:our_products?)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment