Class: Merb::BootLoader::AfterAppLoads
- Inherits:
-
Merb::BootLoader
- Object
- Merb::BootLoader
- Merb::BootLoader::AfterAppLoads
- Defined in:
- lib/merb-core/bootloader.rb
Class Method Summary collapse
-
.run ⇒ Object
Call any after_app_loads hooks that were registered via after_app_loads in init.rb.
Methods inherited from Merb::BootLoader
after, after_app_loads, before, before_app_loads, default_framework, finished?, inherited, move_klass
Class Method Details
.run ⇒ Object
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 |