diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7a46bd2..e255f47 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,8 +39,6 @@ jobs: fail-fast: false matrix: ruby_version: - - "2.7" - - "3.2" - "3.3" steps: - uses: actions/checkout@v4 diff --git a/Gemfile b/Gemfile index 0a6e653..4fad357 100644 --- a/Gemfile +++ b/Gemfile @@ -10,5 +10,4 @@ gem "minitest" gem "rake" gem "rubocop-jekyll", "~> 0.14.0" gem "rubocop-minitest" -gem "rubocop-rake" gem "shoulda-context" diff --git a/script/fmt b/script/fmt index c114566..ec087cd 100755 --- a/script/fmt +++ b/script/fmt @@ -2,7 +2,7 @@ set -e echo "RuboCop $(bundle exec rubocop --version)" -bundle exec rubocop -d --disable-pending-cops $@ +bundle exec rubocop -E --disable-pending-cops $@ success=$? if ((success != 0)); then echo -e "\nTry running \`script/fmt -a\` to automatically fix errors"