From cb6c7b6fa3041b9ffe7f784718544b3e4beaedce Mon Sep 17 00:00:00 2001 From: yoshoku Date: Sat, 9 Jan 2021 20:03:00 +0900 Subject: [PATCH] :sparkles: Add RuboCop Rake gem --- .rubocop.yml | 1 + Gemfile | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.rubocop.yml b/.rubocop.yml index 2286a0b..1af3ba9 100644 --- a/.rubocop.yml +++ b/.rubocop.yml @@ -1,5 +1,6 @@ require: - rubocop-performance + - rubocop-rake - rubocop-rspec AllCops: diff --git a/Gemfile b/Gemfile index f01151e..d881e23 100644 --- a/Gemfile +++ b/Gemfile @@ -9,7 +9,8 @@ gem 'parallel', '>= 1.17.0' gem 'rake', '~> 12.0' gem 'rake-compiler', '~> 1.0' gem 'rspec', '~> 3.0' -gem 'rubocop', '~> 0.91' +gem 'rubocop', '~> 1.0' gem 'rubocop-performance', '~> 1.8' -gem 'rubocop-rspec', '~> 1.43' +gem 'rubocop-rake', '~> 0.5' +gem 'rubocop-rspec', '~> 2.0' gem 'simplecov', '~> 0.19'