Created
March 17, 2009 07:05
-
-
Save deepthawtz/80377 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class Merb::BootLoader::BeforeAppLoads < Merb::BootLoader | |
| # Call any before_app_loads hooks that were registered via before_app_loads | |
| # in any plugins. | |
| # | |
| # ==== Returns | |
| # nil | |
| # | |
| # :api: plugin | |
| def self.run | |
| Merb::BootLoader.before_load_callbacks.each { |x| x.call } | |
| nil | |
| end | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment