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 / locator.rb @ 442:753f1380d6bc

History | View | Annotate | Download (240 Bytes)

1
module Engines
2
  class Plugin
3
    class FileSystemLocator < Rails::Plugin::FileSystemLocator
4
      def create_plugin(path)
5
        plugin = Engines::Plugin.new(path)
6
        plugin.valid? ? plugin : nil
7
      end        
8
    end
9
  end
10
end
11