From: Go MAEDA Date: Fri, 3 Mar 2023 02:18:56 +0000 (+0000) Subject: Don't load RuboCop by default (#36919). X-Git-Tag: 5.1.0~226 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=b0b0a72f5c278ac5e43f21fc91b697a0a8587040;p=redmine.git Don't load RuboCop by default (#36919). git-svn-id: https://svn.redmine.org/redmine/trunk@22126 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/Gemfile b/Gemfile index 04ab29334..292cf0c1a 100644 --- a/Gemfile +++ b/Gemfile @@ -103,9 +103,9 @@ group :test do gem "selenium-webdriver", "~> 3.142.7" gem 'webdrivers', '4.6.1', require: false # RuboCop - gem 'rubocop', '~> 1.47.0' - gem 'rubocop-performance', '~> 1.16.0' - gem 'rubocop-rails', '~> 2.17.2' + gem 'rubocop', '~> 1.47.0', require: false + gem 'rubocop-performance', '~> 1.16.0', require: false + gem 'rubocop-rails', '~> 2.17.2', require: false end local_gemfile = File.join(File.dirname(__FILE__), "Gemfile.local")