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 / 0f / 0f842304e58a7a419abba90bd185840b383c9907.svn-base @ 912:5e80956cc792

History | View | Annotate | Download (240 Bytes)

1 909:cbb26bc654de Chris
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