1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 11:37:14 +00:00

Don't load RuboCop by default (#36919).

git-svn-id: https://svn.redmine.org/redmine/trunk@22126 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2023-03-03 02:18:56 +00:00
parent 453e3b7c25
commit b0b0a72f5c

View File

@ -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")