Parent

ApplicationController

This is a stub used to help Spork delay the loading of the real ApplicationController

Public Class Methods

inherited(klass) click to toggle source
# File lib/spork/app_framework/rails_stub_files/application_controller.rb, line 5
def inherited(klass)
  (@_descendants ||= []) << klass if @@preloading
  super
end
reapply_inheritance!() click to toggle source
# File lib/spork/app_framework/rails_stub_files/application_controller.rb, line 10
def reapply_inheritance!
  @@preloading = false
  Array(@_descendants).each do |descendant|
    descendant.master_helper_module.send(:include, master_helper_module)
    descendant.send(:default_helper_module!)

    descendant.respond_to?(:reapply_inheritance!) && descendant.reapply_inheritance!
  end
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.