class Merb::BootLoader::AfterAppLoads

Public Class Methods

run() click to toggle source

Call any after_app_loads hooks that were registered via after_app_loads in init.rb.

Returns

nil

:api: plugin

# File lib/merb-core/bootloader.rb, line 1290
def self.run
  Merb::BootLoader.after_load_callbacks.each {|x| x.call }
  nil
end