Class: Merb::BootLoader::BeforeAppLoads
- Inherits:
-
Merb::BootLoader
- Object
- Merb::BootLoader
- Merb::BootLoader::BeforeAppLoads
- Defined in:
- lib/merb-core/bootloader.rb
Class Method Summary collapse
-
.run ⇒ Object
Call any before_app_loads hooks that were registered via before_app_loads in any plugins.
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 before_app_loads hooks that were registered via before_app_loads in any plugins.
319 320 321 |
# File 'lib/merb-core/bootloader.rb', line 319 def self.run Merb::BootLoader.before_load_callbacks.each { |x| x.call } end |