Bump RuboCop to v1.x

This commit is contained in:
Ashwin Maroli 2020-10-21 17:57:08 +05:30
parent 8948277363
commit 1ae2a1dd04
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ group :test do
gem "nokogiri", "~> 1.7"
gem "rspec"
gem "rspec-mocks"
gem "rubocop", "~> 0.93.0"
gem "rubocop", "~> 1.0"
gem "rubocop-performance"
gem "test-dependency-theme", :path => File.expand_path("test/fixtures/test-dependency-theme", __dir__)
gem "test-theme", :path => File.expand_path("test/fixtures/test-theme", __dir__)

View File

@ -1,5 +1,5 @@
#!/bin/bash
echo "Rubocop $(bundle exec rubocop --version)"
echo "RuboCop $(bundle exec rubocop --version)"
bundle exec rubocop -D $@
success=$?
if ((success != 0)); then