public
Fork of halorgium/mephisto
Description: A mirror of the mephisto code-base
Homepage: http://mephistoblog.com/
Clone URL: git://github.com/zmack/mephisto.git
mephisto / vendor / plugins / engines / lib / engines / plugin / locator.rb
100644 12 lines (10 sloc) 0.24 kb
1
2
3
4
5
6
7
8
9
10
11
12
module Engines
  class Plugin
    class FileSystemLocator < Rails::Plugin::FileSystemLocator
      def create_plugin(path)
        plugin = Engines::Plugin.new(path)
        plugin.valid? ? plugin : nil
      end
    end
  end
end