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 / .svn / pristine / 4b / 4bd5699fdfa1ef964b63852ff5e554bbdc600109.svn-base @ 1297:0a574315af3e

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