Skip to content

Commit

Permalink
BUGFIX: do not install dependencies from plugin, must be explicit
Browse files Browse the repository at this point in the history
  • Loading branch information
SamSaffron committed Jan 17, 2014
1 parent e7c100a commit ce8bc36
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/plugin/instance.rb
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ def gem(name, version, opts = {})
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
Expand Down

0 comments on commit ce8bc36

Please sign in to comment.