Class: Merb::BootLoader::AfterAppLoads

Inherits:
Merb::BootLoader show all
Defined in:
lib/merb-core/bootloader.rb

Class Method Summary collapse

Methods inherited from Merb::BootLoader

after, after_app_loads, before, before_app_loads, default_framework, finished?, inherited, move_klass

Class Method Details

.runObject

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



549
550
551
# File 'lib/merb-core/bootloader.rb', line 549

def self.run
  Merb::BootLoader.after_load_callbacks.each {|x| x.call }
end