From ce8bc3682ff7210c8a8bde6bbe2fb5bf119626eb Mon Sep 17 00:00:00 2001 From: Sam Date: Fri, 17 Jan 2014 12:27:09 +1100 Subject: [PATCH] BUGFIX: do not install dependencies from plugin, must be explicit --- lib/plugin/instance.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plugin/instance.rb b/lib/plugin/instance.rb index e63e4dcfd31..0516cdc2802 100644 --- a/lib/plugin/instance.rb +++ b/lib/plugin/instance.rb @@ -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