mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 09:36:19 -05:00
allow plugins to be symlinked
This commit is contained in:
parent
9c820443fa
commit
fcd85b8a72
2 changed files with 3 additions and 2 deletions
|
@ -10,7 +10,8 @@ class Plugin::Instance
|
|||
|
||||
def self.find_all(parent_path)
|
||||
[].tap { |plugins|
|
||||
Dir["#{parent_path}/**/plugin.rb"].each do |path|
|
||||
# also follows symlinks - http://stackoverflow.com/q/357754
|
||||
Dir["#{parent_path}/**/*/**/plugin.rb"].each do |path|
|
||||
source = File.read(path)
|
||||
metadata = Plugin::Metadata.parse(source)
|
||||
plugins << self.new(metadata, path)
|
||||
|
|
|
@ -7,7 +7,7 @@ describe Plugin::Instance do
|
|||
it "can find plugins correctly" do
|
||||
plugins = Plugin::Instance.find_all("#{Rails.root}/spec/fixtures/plugins")
|
||||
plugins.count.should == 1
|
||||
plugin =plugins[0]
|
||||
plugin = plugins[0]
|
||||
|
||||
plugin.name.should == "plugin-name"
|
||||
plugin.path.should == "#{Rails.root}/spec/fixtures/plugins/my_plugin/plugin.rb"
|
||||
|
|
Loading…
Reference in a new issue