2
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2025-09-05 08:59:27 +08:00

FEATURE: add support for gem source in plugins

This commit is contained in:
Sam 2013-12-31 09:57:04 +11:00
parent 2c04f615f4
commit 95cbcc198e

View file

@ -204,7 +204,10 @@ class Plugin::Instance
spec_path = gems_path + "/specifications"
spec_file = spec_path + "/#{name}-#{version}.gemspec"
unless File.exists? spec_file
command = "gem install #{name} -v #{version} -i #{gems_path} --no-rdoc --no-ri"
command = "gem install #{name} -v #{version} -i #{gems_path} --no-document"
if opts[:source]
command << " --source #{opts[:source]}"
end
puts command
puts `#{command}`
end