module Fragments::Helpers::Controller

Public Class Methods

included(base) click to toggle source
# File lib/fragments/helpers/controller.rb, line 4
def self.included(base)
  base.send :include, InstanceMethods
  base.class_eval do
    helper_method :header_html, :common_html, :footer_html
  end
end