From 2786d67be5bb1289f8e68e1290803fbeeaa81137 Mon Sep 17 00:00:00 2001 From: Ashwin Maroli Date: Wed, 20 Feb 2019 13:15:54 +0530 Subject: [PATCH] Use rubocop-0.65.x on all platforms except Windows --- Gemfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 6fbbfd43..6c1fb650 100644 --- a/Gemfile +++ b/Gemfile @@ -28,7 +28,7 @@ group :test do gem "rspec-mocks" # Temporary lock on RuboCop version for Windows since Pysch-3.1.0 is not available # for use on Ruby 2.6-mingw32 platforms - gem "rubocop", "~> 0.64.0" if Gem.win_platform? + gem "rubocop", Gem.win_platform? ? "~> 0.64.0" : "~> 0.65.0" gem "test-dependency-theme", :path => File.expand_path("test/fixtures/test-dependency-theme", __dir__) gem "test-theme", :path => File.expand_path("test/fixtures/test-theme", __dir__) gem "test-theme-symlink", :path => File.expand_path("test/fixtures/test-theme-symlink", __dir__)