summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVictor Koronen <koronen@kth.se>2015-08-08 17:24:34 +0200
committerVictor Koronen <koronen@kth.se>2015-08-14 12:29:45 +0200
commit214dd086decb580f68de21600b79dd668aea8af9 (patch)
tree1663d0c6b9e52827779ae8a5a56dbe74e88794ca
parent71a6385524777c7a52d06c91a5fcf8175050c4bd (diff)
downloadbundler-214dd086decb580f68de21600b79dd668aea8af9.tar.gz
Fix Style/ClosingParenthesisIndentation
-rw-r--r--.rubocop_todo.yml5
-rw-r--r--lib/bundler/source/rubygems.rb3
2 files changed, 2 insertions, 6 deletions
diff --git a/.rubocop_todo.yml b/.rubocop_todo.yml
index f66af5e8c7..5776aa696f 100644
--- a/.rubocop_todo.yml
+++ b/.rubocop_todo.yml
@@ -107,11 +107,6 @@ Style/ClassAndModuleChildren:
Style/ClassCheck:
Enabled: false
-# Offense count: 3
-# Cop supports --auto-correct.
-Style/ClosingParenthesisIndentation:
- Enabled: false
-
# Offense count: 153
Style/Documentation:
Enabled: false
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,