Skip to content

Instantly share code, notes, and snippets.

@mokevnin
Created February 7, 2012 20:03
Show Gist options
  • Select an option

  • Save mokevnin/1761610 to your computer and use it in GitHub Desktop.

Select an option

Save mokevnin/1761610 to your computer and use it in GitHub Desktop.
class Web::InvestController < Web::ApplicationController
layout 'invest'
before_filter do
title configus.base_title
title current_section
add_breadcrumb t(:bc_main), root_path
add_breadcrumb current_section, invest_path
end
def show
end
helper_method :current_section
private
def current_section
W::Section.invest
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment