aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bundler/index.rb
diff options
context:
space:
mode:
authorErick Sasse <esasse@gmail.com>2015-07-17 22:55:44 -0300
committerErick Sasse <esasse@gmail.com>2015-07-19 11:50:38 -0300
commit48d2dc5aa17b3f81905daad87e0b79131dd0d2b8 (patch)
tree21a9b07b71a1ce5093afc96c44b8f84a40f0fce6 /lib/bundler/index.rb
parent77c9dd8fbe602c05040d7f2df3ff7decb08eb53e (diff)
downloadbundler-48d2dc5aa17b3f81905daad87e0b79131dd0d2b8.tar.gz
Fix Style/SpaceAfterComma
Diffstat (limited to 'lib/bundler/index.rb')
-rw-r--r--lib/bundler/index.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/bundler/index.rb b/lib/bundler/index.rb
index ad36b756..d0e3ae47 100644
--- a/lib/bundler/index.rb
+++ b/lib/bundler/index.rb
@@ -16,16 +16,16 @@ module Bundler
def initialize
@sources = []
@cache = {}
- @specs = Hash.new {|h,k| h[k] = Hash.new }
- @all_specs = Hash.new {|h,k| h[k] = [] }
+ @specs = Hash.new { |h, k| h[k] = Hash.new }
+ @all_specs = Hash.new { |h, k| h[k] = [] }
end
def initialize_copy(o)
super
@sources = @sources.dup
@cache = {}
- @specs = Hash.new {|h,k| h[k] = Hash.new }
- @all_specs = Hash.new {|h,k| h[k] = [] }
+ @specs = Hash.new { |h, k| h[k] = Hash.new }
+ @all_specs = Hash.new { |h, k| h[k] = [] }
o.specs.each do |name, hash|
@specs[name] = hash.dup