From 6761f8665e3fbfa69bf4bd46bfc220c20ec90e26 Mon Sep 17 00:00:00 2001 From: Glenn Sarti Date: Sat, 23 May 2020 20:13:57 +0800 Subject: [PATCH] (maint) Pin Rubocop to < 0.84.0 Due to https://github.com/rubocop-hq/rubocop/issues/8008 this commit pins rubocop to 0.83.0 until the fix is release in 0.85.0. --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 4ac7d7fb..0f7e8632 100644 --- a/Gemfile +++ b/Gemfile @@ -13,7 +13,7 @@ group :development do gem 'rspec', '>= 3.2', :require => false if Gem::Version.create(RUBY_VERSION) >= Gem::Version.create('2.3.0') - gem "rubocop", ">= 0.80.0", :require => false, :platforms => [:ruby, :x64_mingw] + gem "rubocop", "~> 0.83.0", :require => false, :platforms => [:ruby, :x64_mingw] end if ENV['PUPPET_GEM_VERSION']