diff options
author | Victor Koronen <koronen@kth.se> | 2015-08-08 17:24:34 +0200 |
---|---|---|
committer | Victor Koronen <koronen@kth.se> | 2015-08-14 12:29:45 +0200 |
commit | 214dd086decb580f68de21600b79dd668aea8af9 (patch) | |
tree | 1663d0c6b9e52827779ae8a5a56dbe74e88794ca /lib/bundler | |
parent | 71a6385524777c7a52d06c91a5fcf8175050c4bd (diff) | |
download | bundler-214dd086decb580f68de21600b79dd668aea8af9.tar.gz |
Fix Style/ClosingParenthesisIndentation
Diffstat (limited to 'lib/bundler')
-rw-r--r-- | lib/bundler/source/rubygems.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/bundler/source/rubygems.rb b/lib/bundler/source/rubygems.rb index f46ec77160..26c1e7cd17 100644 --- a/lib/bundler/source/rubygems.rb +++ b/lib/bundler/source/rubygems.rb @@ -132,7 +132,8 @@ module Bundler installed_spec = nil Bundler.rubygems.preserve_paths do - installed_spec = Bundler::GemInstaller.new(path, + installed_spec = Bundler::GemInstaller.new( + path, :install_dir => install_path.to_s, :bin_dir => bin_path.to_s, :ignore_dependencies => true, |