From 14a7eb25ee03c9fb4ecf3e4c6b1f44a8267a413a Mon Sep 17 00:00:00 2001 From: Andre Arko Date: Sat, 18 Jul 2015 16:42:16 -0600 Subject: Fix Style/SpaceInsideBlockBraces closes #3850 --- spec/support/matchers.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'spec/support/matchers.rb') diff --git a/spec/support/matchers.rb b/spec/support/matchers.rb index b4b18e7839..5d5e4a0572 100644 --- a/spec/support/matchers.rb +++ b/spec/support/matchers.rb @@ -4,13 +4,13 @@ module Spec dep = Bundler::Dependency.new(*args) match do |actual| - actual.length == 1 && actual.all? { |d| d == dep } + actual.length == 1 && actual.all? {|d| d == dep } end end RSpec::Matchers.define :have_gem do |*args| match do |actual| - actual.length == args.length && actual.all? { |a| args.include?(a.full_name) } + actual.length == args.length && actual.all? {|a| args.include?(a.full_name) } end end -- cgit v1.2.1