summaryrefslogtreecommitdiff
path: root/lib/bundler/cli/binstubs.rb
diff options
context:
space:
mode:
authorAndre Arko <andre@arko.net>2015-07-18 16:44:14 -0600
committerAndre Arko <andre@arko.net>2015-07-18 16:45:36 -0600
commit0f8bc78180ce4f8bae5dc48e2078b44cd4fafe44 (patch)
treec175c911a748afd50c0045038499a5a349fec135 /lib/bundler/cli/binstubs.rb
parent14a7eb25ee03c9fb4ecf3e4c6b1f44a8267a413a (diff)
downloadbundler-0f8bc78180ce4f8bae5dc48e2078b44cd4fafe44.tar.gz
Fix Style/SpaceInsideBlockBraces
closes #3853
Diffstat (limited to 'lib/bundler/cli/binstubs.rb')
-rw-r--r--lib/bundler/cli/binstubs.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/cli/binstubs.rb b/lib/bundler/cli/binstubs.rb
index 7c67b7d75c..cf9ce02c4d 100644
--- a/lib/bundler/cli/binstubs.rb
+++ b/lib/bundler/cli/binstubs.rb
@@ -20,7 +20,7 @@ module Bundler
end
gems.each do |gem_name|
- spec = installer.specs.find{|s| s.name == gem_name }
+ spec = installer.specs.find {|s| s.name == gem_name }
unless spec
raise GemNotFound, Bundler::CLI::Common.gem_not_found_message(
gem_name, Bundler.definition.specs)