module Twitter::Bootswatch::Rails::Helpers::BreadCrumbs::ClassMethods

Public Instance Methods

add_breadcrumb(name, url, options={}) click to toggle source
# File lib/twitter/bootswatch/rails/helpers/breadcrumbs.rb, line 11
def add_breadcrumb(name, url, options={})
  before_filter options do |controller|
    controller.send :add_breadcrumb, name, url
  end
end