From 28372744f0f125b3bc0fc3967676d6520de9e00f Mon Sep 17 00:00:00 2001 From: Carlos Ribeiro Date: Fri, 27 Sep 2019 15:27:32 -0300 Subject: [PATCH] Add RubocopMinitest This commit includes rubocop-minitest gem in the Gemfile to allow users that uses it to have their code analyzed with CodeClimate. --- Gemfile | 3 ++- Gemfile.lock | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Gemfile b/Gemfile index 1d6f0df5..ceb75572 100644 --- a/Gemfile +++ b/Gemfile @@ -9,8 +9,9 @@ gem "pry", require: false gem "rubocop", "0.75.1", require: false gem "rubocop-performance", require: false gem "rubocop-migrations", require: false -gem "rubocop-rspec", require: false +gem "rubocop-minitest", require: false gem "rubocop-rails", require: false +gem "rubocop-rspec", require: false gem "safe_yaml" group :test do diff --git a/Gemfile.lock b/Gemfile.lock index e736f312..0f8989c5 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -49,6 +49,8 @@ GEM unicode-display_width (>= 1.4.0, < 1.7) rubocop-migrations (0.1.2) rubocop (~> 0.41) + rubocop-minitest (0.4.1) + rubocop (>= 0.74) rubocop-performance (1.5.1) rubocop (>= 0.71.0) rubocop-rails (2.3.2) @@ -76,6 +78,7 @@ DEPENDENCIES rspec rubocop (= 0.75.1) rubocop-migrations + rubocop-minitest rubocop-performance rubocop-rails rubocop-rspec