mirror of
https://github.com/super-linter/super-linter.git
synced 2024-11-22 14:10:56 -05:00
Add rubocop-minitest
and minitest-rake
(#3253)
* Add `rubocop-minitest` and `minitest-rake` They are both official and recommended by RuboCop itself. * Update Gemfile.lock Co-authored-by: Lukas Gravley <admiralawkbar@github.com>
This commit is contained in:
parent
7be44d6ddb
commit
1e1f71f145
2 changed files with 8 additions and 0 deletions
2
dependencies/Gemfile
vendored
2
dependencies/Gemfile
vendored
|
@ -6,6 +6,8 @@ git_source(:github) { |repo_name| "https://github.com/#{repo_name}" }
|
||||||
|
|
||||||
gem "rubocop", "~> 1.35.0"
|
gem "rubocop", "~> 1.35.0"
|
||||||
gem "rubocop-github", "~> 0.18.0"
|
gem "rubocop-github", "~> 0.18.0"
|
||||||
|
gem "rubocop-minitest", "~> 0.21.0"
|
||||||
gem "rubocop-performance", "~>1.14.3"
|
gem "rubocop-performance", "~>1.14.3"
|
||||||
gem "rubocop-rails", "~> 2.15"
|
gem "rubocop-rails", "~> 2.15"
|
||||||
|
gem "rubocop-rake", "~> 0.6.0"
|
||||||
gem "rubocop-rspec", "~> 2.12.1"
|
gem "rubocop-rspec", "~> 2.12.1"
|
||||||
|
|
6
dependencies/Gemfile.lock
vendored
6
dependencies/Gemfile.lock
vendored
|
@ -35,6 +35,8 @@ GEM
|
||||||
rubocop (>= 1.0.0)
|
rubocop (>= 1.0.0)
|
||||||
rubocop-performance
|
rubocop-performance
|
||||||
rubocop-rails
|
rubocop-rails
|
||||||
|
rubocop-minitest (0.21.0)
|
||||||
|
rubocop (>= 0.90, < 2.0)
|
||||||
rubocop-performance (1.14.3)
|
rubocop-performance (1.14.3)
|
||||||
rubocop (>= 1.7.0, < 2.0)
|
rubocop (>= 1.7.0, < 2.0)
|
||||||
rubocop-ast (>= 0.4.0)
|
rubocop-ast (>= 0.4.0)
|
||||||
|
@ -42,6 +44,8 @@ GEM
|
||||||
activesupport (>= 4.2.0)
|
activesupport (>= 4.2.0)
|
||||||
rack (>= 1.1)
|
rack (>= 1.1)
|
||||||
rubocop (>= 1.7.0, < 2.0)
|
rubocop (>= 1.7.0, < 2.0)
|
||||||
|
rubocop-rake (0.6.0)
|
||||||
|
rubocop (~> 1.0)
|
||||||
rubocop-rspec (2.12.1)
|
rubocop-rspec (2.12.1)
|
||||||
rubocop (~> 1.31)
|
rubocop (~> 1.31)
|
||||||
ruby-progressbar (1.11.0)
|
ruby-progressbar (1.11.0)
|
||||||
|
@ -55,8 +59,10 @@ PLATFORMS
|
||||||
DEPENDENCIES
|
DEPENDENCIES
|
||||||
rubocop (~> 1.35.0)
|
rubocop (~> 1.35.0)
|
||||||
rubocop-github (~> 0.18.0)
|
rubocop-github (~> 0.18.0)
|
||||||
|
rubocop-minitest (~> 0.21.0)
|
||||||
rubocop-performance (~> 1.14.3)
|
rubocop-performance (~> 1.14.3)
|
||||||
rubocop-rails (~> 2.15)
|
rubocop-rails (~> 2.15)
|
||||||
|
rubocop-rake (~> 0.6.0)
|
||||||
rubocop-rspec (~> 2.12.1)
|
rubocop-rspec (~> 2.12.1)
|
||||||
|
|
||||||
BUNDLED WITH
|
BUNDLED WITH
|
||||||
|
|
Loading…
Reference in a new issue