BUGFIX: do not install dependencies from plugin, must be explicit

This commit is contained in:
Sam 2014-01-17 12:27:09 +11:00
parent e7c100aed3
commit ce8bc3682f
1 changed files with 1 additions and 1 deletions

View File

@ -205,7 +205,7 @@ 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-document"
command = "gem install #{name} -v #{version} -i #{gems_path} --no-document --ignore-dependencies"
if opts[:source]
command << " --source #{opts[:source]}"
end