From b2baf6bb0223bb52f9e5f861f860c61c3b6a5df1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Mon, 8 Jul 2019 12:58:24 +0200 Subject: [bundler/bundler] Remove unnecessary begin-end block And freeze the resulting hash to appease rubocop. https://github.com/bundler/bundler/commit/f38ebff92f --- spec/bundler/support/rubygems_ext.rb | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) (limited to 'spec') diff --git a/spec/bundler/support/rubygems_ext.rb b/spec/bundler/support/rubygems_ext.rb index 2f3d252865..1a2588f30a 100644 --- a/spec/bundler/support/rubygems_ext.rb +++ b/spec/bundler/support/rubygems_ext.rb @@ -6,21 +6,19 @@ require "fileutils" module Spec module Rubygems - DEPS = begin - { - # artifice doesn't support rack 2.x now. - "rack" => "< 2.0", - "rack-test" => "~> 1.1", - "artifice" => "~> 0.6.0", - "compact_index" => "~> 0.11.0", - "sinatra" => "~> 1.4.7", - # Rake version has to be consistent for tests to pass - "rake" => "12.3.2", - "builder" => "~> 3.2", - # ruby-graphviz is used by the viz tests - "ruby-graphviz" => nil, - } - end + DEPS = { + # artifice doesn't support rack 2.x now. + "rack" => "< 2.0", + "rack-test" => "~> 1.1", + "artifice" => "~> 0.6.0", + "compact_index" => "~> 0.11.0", + "sinatra" => "~> 1.4.7", + # Rake version has to be consistent for tests to pass + "rake" => "12.3.2", + "builder" => "~> 3.2", + # ruby-graphviz is used by the viz tests + "ruby-graphviz" => nil, + }.freeze def self.setup Gem.clear_paths -- cgit v1.2.3