To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / vendor / plugins / engines / lib / engines / plugin / loader.rb @ 442:753f1380d6bc

History | View | Annotate | Download (233 Bytes)

1
module Engines
2
  class Plugin
3
    class Loader < Rails::Plugin::Loader    
4
      protected    
5
        def register_plugin_as_loaded(plugin)
6
          super plugin
7
          Engines.plugins << plugin
8
        end    
9
    end
10
  end
11
end