class FoxPage::Helpers::AppHelper

the AppHelper module builder injects the core FoxPage::Application instance to the method `app`

Public Class Methods

new(app) click to toggle source
# File lib/fox_page/helpers/app_helper.rb, line 8
def initialize(app)
  @__app = app
  define_method(:app) do
    app
  end
end

Public Instance Methods

inspect() click to toggle source
# File lib/fox_page/helpers/app_helper.rb, line 15
def inspect
  "#{self.class.name}(#{@__app.class})"
end