From 48d2dc5aa17b3f81905daad87e0b79131dd0d2b8 Mon Sep 17 00:00:00 2001 From: Erick Sasse Date: Fri, 17 Jul 2015 22:55:44 -0300 Subject: Fix Style/SpaceAfterComma --- lib/bundler/index.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lib/bundler/index.rb') 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 -- cgit v1.2.3