diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index fea8972..243a186 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,17 +5,17 @@ jobs: strategy: fail-fast: false matrix: - ruby: ['2.6', '2.7', '3.0', '3.1', 'head', 'jruby-9.3.7.0'] - gemfile: ['1.20.0', '1.21.0', '1.22.3', '1.23.0', '1.24.1', '1.25.1', '1.26.1', '1.27.0', '1.28.2', '1.29.1', '1.30.1'] + ruby: ['3.0', '3.1', '3.2', '3.3', 'head', 'jruby-9.3.7.0'] + gemfile: ['1.20.0', '1.25.1', '1.30.1', '1.35.1', '1.40.0', '1.45.1', '1.50.2'] runs-on: ubuntu-latest continue-on-error: ${{ matrix.ruby == 'head' }} env: BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rubocop_${{ matrix.gemfile }}.gemfile steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: ruby/setup-ruby@v1 with: bundler-cache: true ruby-version: ${{ matrix.ruby }} rubygems: latest - - run: bundle exec rspec spec \ No newline at end of file + - run: bundle exec rspec spec diff --git a/Appraisals b/Appraisals index 27988ad..1898d6f 100644 --- a/Appraisals +++ b/Appraisals @@ -1,16 +1,11 @@ [ - '1.19.1', '1.20.0', - '1.21.0', - '1.22.3', - '1.23.0', - '1.24.1', '1.25.1', - '1.26.1', - '1.27.0', - '1.28.2', - '1.29.1', - '1.30.1' + '1.30.1', + '1.35.1', + '1.40.0', + '1.45.1', + '1.50.2' ].each do |version| appraise "rubocop-#{version}" do gem 'rubocop', version diff --git a/gemfiles/rubocop_1.19.1.gemfile.lock b/gemfiles/rubocop_1.19.1.gemfile.lock deleted file mode 100644 index d80f32f..0000000 --- a/gemfiles/rubocop_1.19.1.gemfile.lock +++ /dev/null @@ -1,65 +0,0 @@ -PATH - remote: .. - specs: - rubocop-checkstyle_formatter (0.6.0) - rubocop (>= 1.14.0) - -GEM - remote: https://rubygems.org/ - specs: - appraisal (2.4.1) - bundler - rake - thor (>= 0.14.0) - ast (2.4.2) - diff-lcs (1.4.4) - parallel (1.20.1) - parser (3.0.2.0) - ast (~> 2.4.1) - rainbow (3.0.0) - rake (13.0.6) - regexp_parser (2.1.1) - rexml (3.2.5) - rspec (3.5.0) - rspec-core (~> 3.5.0) - rspec-expectations (~> 3.5.0) - rspec-mocks (~> 3.5.0) - rspec-core (3.5.4) - rspec-support (~> 3.5.0) - rspec-expectations (3.5.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.5.0) - rspec-mocks (3.5.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.5.0) - rspec-support (3.5.0) - rubocop (1.19.1) - parallel (~> 1.10) - parser (>= 3.0.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml - rubocop-ast (>= 1.9.1, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.10.0) - parser (>= 3.0.1.1) - ruby-progressbar (1.11.0) - thor (1.1.0) - unicode-display_width (2.0.0) - -PLATFORMS - java - ruby - universal-java-11 - -DEPENDENCIES - appraisal (~> 2.4.1) - bundler (>= 2.2.10) - rake (>= 12.3.3) - rspec (~> 3.5.0) - rubocop (= 1.19.1) - rubocop-checkstyle_formatter! - -BUNDLED WITH - 2.3.22 diff --git a/gemfiles/rubocop_1.20.0.gemfile.lock b/gemfiles/rubocop_1.20.0.gemfile.lock index 64e3494..021336c 100644 --- a/gemfiles/rubocop_1.20.0.gemfile.lock +++ b/gemfiles/rubocop_1.20.0.gemfile.lock @@ -13,13 +13,15 @@ GEM thor (>= 0.14.0) ast (2.4.2) diff-lcs (1.5.0) - parallel (1.22.1) - parser (3.1.2.1) + parallel (1.24.0) + parser (3.3.0.4) ast (~> 2.4.1) + racc + racc (1.7.3) rainbow (3.1.1) - rake (13.0.6) - regexp_parser (2.5.0) - rexml (3.2.5) + rake (13.1.0) + regexp_parser (2.9.0) + rexml (3.2.6) rspec (3.5.0) rspec-core (~> 3.5.0) rspec-expectations (~> 3.5.0) @@ -42,15 +44,15 @@ GEM rubocop-ast (>= 1.9.1, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.21.0) - parser (>= 3.1.1.0) - ruby-progressbar (1.11.0) - thor (1.2.1) - unicode-display_width (2.2.0) + rubocop-ast (1.30.0) + parser (>= 3.2.1.0) + ruby-progressbar (1.13.0) + thor (1.3.0) + unicode-display_width (2.5.0) PLATFORMS - universal-java-11 - x86_64-linux + ruby + x86_64-darwin-22 DEPENDENCIES appraisal (~> 2.4.1) @@ -61,4 +63,4 @@ DEPENDENCIES rubocop-checkstyle_formatter! BUNDLED WITH - 2.3.22 + 2.5.5 diff --git a/gemfiles/rubocop_1.22.3.gemfile.lock b/gemfiles/rubocop_1.22.3.gemfile.lock deleted file mode 100644 index 0d64412..0000000 --- a/gemfiles/rubocop_1.22.3.gemfile.lock +++ /dev/null @@ -1,64 +0,0 @@ -PATH - remote: .. - specs: - rubocop-checkstyle_formatter (0.6.0) - rubocop (>= 1.14.0) - -GEM - remote: https://rubygems.org/ - specs: - appraisal (2.4.1) - bundler - rake - thor (>= 0.14.0) - ast (2.4.2) - diff-lcs (1.5.0) - parallel (1.22.1) - parser (3.1.2.1) - ast (~> 2.4.1) - rainbow (3.1.1) - rake (13.0.6) - regexp_parser (2.5.0) - rexml (3.2.5) - rspec (3.5.0) - rspec-core (~> 3.5.0) - rspec-expectations (~> 3.5.0) - rspec-mocks (~> 3.5.0) - rspec-core (3.5.4) - rspec-support (~> 3.5.0) - rspec-expectations (3.5.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.5.0) - rspec-mocks (3.5.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.5.0) - rspec-support (3.5.0) - rubocop (1.22.3) - parallel (~> 1.10) - parser (>= 3.0.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml - rubocop-ast (>= 1.12.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.21.0) - parser (>= 3.1.1.0) - ruby-progressbar (1.11.0) - thor (1.2.1) - unicode-display_width (2.2.0) - -PLATFORMS - universal-java-11 - x86_64-linux - -DEPENDENCIES - appraisal (~> 2.4.1) - bundler (>= 2.2.10) - rake (>= 12.3.3) - rspec (~> 3.5.0) - rubocop (= 1.22.3) - rubocop-checkstyle_formatter! - -BUNDLED WITH - 2.3.22 diff --git a/gemfiles/rubocop_1.24.1.gemfile b/gemfiles/rubocop_1.24.1.gemfile deleted file mode 100644 index 70f522d..0000000 --- a/gemfiles/rubocop_1.24.1.gemfile +++ /dev/null @@ -1,7 +0,0 @@ -# This file was generated by Appraisal - -source "https://rubygems.org" - -gem "rubocop", "1.24.1" - -gemspec path: "../" diff --git a/gemfiles/rubocop_1.25.1.gemfile.lock b/gemfiles/rubocop_1.25.1.gemfile.lock index 05e52e3..025ff26 100644 --- a/gemfiles/rubocop_1.25.1.gemfile.lock +++ b/gemfiles/rubocop_1.25.1.gemfile.lock @@ -13,13 +13,15 @@ GEM thor (>= 0.14.0) ast (2.4.2) diff-lcs (1.5.0) - parallel (1.22.1) - parser (3.1.2.1) + parallel (1.24.0) + parser (3.3.0.4) ast (~> 2.4.1) + racc + racc (1.7.3) rainbow (3.1.1) - rake (13.0.6) - regexp_parser (2.5.0) - rexml (3.2.5) + rake (13.1.0) + regexp_parser (2.9.0) + rexml (3.2.6) rspec (3.5.0) rspec-core (~> 3.5.0) rspec-expectations (~> 3.5.0) @@ -42,15 +44,15 @@ GEM rubocop-ast (>= 1.15.1, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.21.0) - parser (>= 3.1.1.0) - ruby-progressbar (1.11.0) - thor (1.2.1) - unicode-display_width (2.2.0) + rubocop-ast (1.30.0) + parser (>= 3.2.1.0) + ruby-progressbar (1.13.0) + thor (1.3.0) + unicode-display_width (2.5.0) PLATFORMS - universal-java-11 - x86_64-linux + ruby + x86_64-darwin-22 DEPENDENCIES appraisal (~> 2.4.1) @@ -61,4 +63,4 @@ DEPENDENCIES rubocop-checkstyle_formatter! BUNDLED WITH - 2.3.22 + 2.5.5 diff --git a/gemfiles/rubocop_1.26.1.gemfile b/gemfiles/rubocop_1.26.1.gemfile deleted file mode 100644 index 4e4f04b..0000000 --- a/gemfiles/rubocop_1.26.1.gemfile +++ /dev/null @@ -1,7 +0,0 @@ -# This file was generated by Appraisal - -source "https://rubygems.org" - -gem "rubocop", "1.26.1" - -gemspec path: "../" diff --git a/gemfiles/rubocop_1.26.1.gemfile.lock b/gemfiles/rubocop_1.26.1.gemfile.lock deleted file mode 100644 index d958ec0..0000000 --- a/gemfiles/rubocop_1.26.1.gemfile.lock +++ /dev/null @@ -1,64 +0,0 @@ -PATH - remote: .. - specs: - rubocop-checkstyle_formatter (0.6.0) - rubocop (>= 1.14.0) - -GEM - remote: https://rubygems.org/ - specs: - appraisal (2.4.1) - bundler - rake - thor (>= 0.14.0) - ast (2.4.2) - diff-lcs (1.5.0) - parallel (1.22.1) - parser (3.1.2.1) - ast (~> 2.4.1) - rainbow (3.1.1) - rake (13.0.6) - regexp_parser (2.5.0) - rexml (3.2.5) - rspec (3.5.0) - rspec-core (~> 3.5.0) - rspec-expectations (~> 3.5.0) - rspec-mocks (~> 3.5.0) - rspec-core (3.5.4) - rspec-support (~> 3.5.0) - rspec-expectations (3.5.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.5.0) - rspec-mocks (3.5.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.5.0) - rspec-support (3.5.0) - rubocop (1.26.1) - parallel (~> 1.10) - parser (>= 3.1.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml - rubocop-ast (>= 1.16.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.21.0) - parser (>= 3.1.1.0) - ruby-progressbar (1.11.0) - thor (1.2.1) - unicode-display_width (2.2.0) - -PLATFORMS - universal-java-11 - x86_64-linux - -DEPENDENCIES - appraisal (~> 2.4.1) - bundler (>= 2.2.10) - rake (>= 12.3.3) - rspec (~> 3.5.0) - rubocop (= 1.26.1) - rubocop-checkstyle_formatter! - -BUNDLED WITH - 2.3.22 diff --git a/gemfiles/rubocop_1.27.0.gemfile b/gemfiles/rubocop_1.27.0.gemfile deleted file mode 100644 index 10099bb..0000000 --- a/gemfiles/rubocop_1.27.0.gemfile +++ /dev/null @@ -1,7 +0,0 @@ -# This file was generated by Appraisal - -source "https://rubygems.org" - -gem "rubocop", "1.27.0" - -gemspec path: "../" diff --git a/gemfiles/rubocop_1.27.0.gemfile.lock b/gemfiles/rubocop_1.27.0.gemfile.lock deleted file mode 100644 index 42d2d76..0000000 --- a/gemfiles/rubocop_1.27.0.gemfile.lock +++ /dev/null @@ -1,64 +0,0 @@ -PATH - remote: .. - specs: - rubocop-checkstyle_formatter (0.6.0) - rubocop (>= 1.14.0) - -GEM - remote: https://rubygems.org/ - specs: - appraisal (2.4.1) - bundler - rake - thor (>= 0.14.0) - ast (2.4.2) - diff-lcs (1.5.0) - parallel (1.22.1) - parser (3.1.2.1) - ast (~> 2.4.1) - rainbow (3.1.1) - rake (13.0.6) - regexp_parser (2.5.0) - rexml (3.2.5) - rspec (3.5.0) - rspec-core (~> 3.5.0) - rspec-expectations (~> 3.5.0) - rspec-mocks (~> 3.5.0) - rspec-core (3.5.4) - rspec-support (~> 3.5.0) - rspec-expectations (3.5.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.5.0) - rspec-mocks (3.5.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.5.0) - rspec-support (3.5.0) - rubocop (1.27.0) - parallel (~> 1.10) - parser (>= 3.1.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml - rubocop-ast (>= 1.16.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.21.0) - parser (>= 3.1.1.0) - ruby-progressbar (1.11.0) - thor (1.2.1) - unicode-display_width (2.2.0) - -PLATFORMS - universal-java-11 - x86_64-linux - -DEPENDENCIES - appraisal (~> 2.4.1) - bundler (>= 2.2.10) - rake (>= 12.3.3) - rspec (~> 3.5.0) - rubocop (= 1.27.0) - rubocop-checkstyle_formatter! - -BUNDLED WITH - 2.3.22 diff --git a/gemfiles/rubocop_1.28.2.gemfile b/gemfiles/rubocop_1.28.2.gemfile deleted file mode 100644 index 41604ab..0000000 --- a/gemfiles/rubocop_1.28.2.gemfile +++ /dev/null @@ -1,7 +0,0 @@ -# This file was generated by Appraisal - -source "https://rubygems.org" - -gem "rubocop", "1.28.2" - -gemspec path: "../" diff --git a/gemfiles/rubocop_1.28.2.gemfile.lock b/gemfiles/rubocop_1.28.2.gemfile.lock deleted file mode 100644 index 9df3376..0000000 --- a/gemfiles/rubocop_1.28.2.gemfile.lock +++ /dev/null @@ -1,64 +0,0 @@ -PATH - remote: .. - specs: - rubocop-checkstyle_formatter (0.6.0) - rubocop (>= 1.14.0) - -GEM - remote: https://rubygems.org/ - specs: - appraisal (2.4.1) - bundler - rake - thor (>= 0.14.0) - ast (2.4.2) - diff-lcs (1.5.0) - parallel (1.22.1) - parser (3.1.2.1) - ast (~> 2.4.1) - rainbow (3.1.1) - rake (13.0.6) - regexp_parser (2.5.0) - rexml (3.2.5) - rspec (3.5.0) - rspec-core (~> 3.5.0) - rspec-expectations (~> 3.5.0) - rspec-mocks (~> 3.5.0) - rspec-core (3.5.4) - rspec-support (~> 3.5.0) - rspec-expectations (3.5.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.5.0) - rspec-mocks (3.5.0) - diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.5.0) - rspec-support (3.5.0) - rubocop (1.28.2) - parallel (~> 1.10) - parser (>= 3.1.0.0) - rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml - rubocop-ast (>= 1.17.0, < 2.0) - ruby-progressbar (~> 1.7) - unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.21.0) - parser (>= 3.1.1.0) - ruby-progressbar (1.11.0) - thor (1.2.1) - unicode-display_width (2.2.0) - -PLATFORMS - universal-java-11 - x86_64-linux - -DEPENDENCIES - appraisal (~> 2.4.1) - bundler (>= 2.2.10) - rake (>= 12.3.3) - rspec (~> 3.5.0) - rubocop (= 1.28.2) - rubocop-checkstyle_formatter! - -BUNDLED WITH - 2.3.22 diff --git a/gemfiles/rubocop_1.29.1.gemfile b/gemfiles/rubocop_1.29.1.gemfile deleted file mode 100644 index 289b7aa..0000000 --- a/gemfiles/rubocop_1.29.1.gemfile +++ /dev/null @@ -1,7 +0,0 @@ -# This file was generated by Appraisal - -source "https://rubygems.org" - -gem "rubocop", "1.29.1" - -gemspec path: "../" diff --git a/gemfiles/rubocop_1.30.1.gemfile.lock b/gemfiles/rubocop_1.30.1.gemfile.lock index d2dab40..750450a 100644 --- a/gemfiles/rubocop_1.30.1.gemfile.lock +++ b/gemfiles/rubocop_1.30.1.gemfile.lock @@ -13,13 +13,15 @@ GEM thor (>= 0.14.0) ast (2.4.2) diff-lcs (1.5.0) - parallel (1.22.1) - parser (3.1.2.1) + parallel (1.24.0) + parser (3.3.0.4) ast (~> 2.4.1) + racc + racc (1.7.3) rainbow (3.1.1) - rake (13.0.6) - regexp_parser (2.5.0) - rexml (3.2.5) + rake (13.1.0) + regexp_parser (2.9.0) + rexml (3.2.6) rspec (3.5.0) rspec-core (~> 3.5.0) rspec-expectations (~> 3.5.0) @@ -42,15 +44,15 @@ GEM rubocop-ast (>= 1.18.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.21.0) - parser (>= 3.1.1.0) - ruby-progressbar (1.11.0) - thor (1.2.1) - unicode-display_width (2.2.0) + rubocop-ast (1.30.0) + parser (>= 3.2.1.0) + ruby-progressbar (1.13.0) + thor (1.3.0) + unicode-display_width (2.5.0) PLATFORMS - universal-java-11 - x86_64-linux + ruby + x86_64-darwin-22 DEPENDENCIES appraisal (~> 2.4.1) @@ -61,4 +63,4 @@ DEPENDENCIES rubocop-checkstyle_formatter! BUNDLED WITH - 2.3.22 + 2.5.5 diff --git a/gemfiles/rubocop_1.19.1.gemfile b/gemfiles/rubocop_1.35.1.gemfile similarity index 79% rename from gemfiles/rubocop_1.19.1.gemfile rename to gemfiles/rubocop_1.35.1.gemfile index e7113ee..84630f6 100644 --- a/gemfiles/rubocop_1.19.1.gemfile +++ b/gemfiles/rubocop_1.35.1.gemfile @@ -2,6 +2,6 @@ source "https://rubygems.org" -gem "rubocop", "1.19.1" +gem "rubocop", "1.35.1" gemspec path: "../" diff --git a/gemfiles/rubocop_1.29.1.gemfile.lock b/gemfiles/rubocop_1.35.1.gemfile.lock similarity index 69% rename from gemfiles/rubocop_1.29.1.gemfile.lock rename to gemfiles/rubocop_1.35.1.gemfile.lock index b8c989a..30b87ee 100644 --- a/gemfiles/rubocop_1.29.1.gemfile.lock +++ b/gemfiles/rubocop_1.35.1.gemfile.lock @@ -13,13 +13,16 @@ GEM thor (>= 0.14.0) ast (2.4.2) diff-lcs (1.5.0) - parallel (1.22.1) - parser (3.1.2.1) + json (2.7.1) + parallel (1.24.0) + parser (3.3.0.4) ast (~> 2.4.1) + racc + racc (1.7.3) rainbow (3.1.1) - rake (13.0.6) - regexp_parser (2.5.0) - rexml (3.2.5) + rake (13.1.0) + regexp_parser (2.9.0) + rexml (3.2.6) rspec (3.5.0) rspec-core (~> 3.5.0) rspec-expectations (~> 3.5.0) @@ -33,32 +36,33 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.5.0) rspec-support (3.5.0) - rubocop (1.29.1) + rubocop (1.35.1) + json (~> 2.3) parallel (~> 1.10) - parser (>= 3.1.0.0) + parser (>= 3.1.2.1) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 1.8, < 3.0) rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.17.0, < 2.0) + rubocop-ast (>= 1.20.1, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.21.0) - parser (>= 3.1.1.0) - ruby-progressbar (1.11.0) - thor (1.2.1) - unicode-display_width (2.2.0) + rubocop-ast (1.30.0) + parser (>= 3.2.1.0) + ruby-progressbar (1.13.0) + thor (1.3.0) + unicode-display_width (2.5.0) PLATFORMS - universal-java-11 - x86_64-linux + ruby + x86_64-darwin-22 DEPENDENCIES appraisal (~> 2.4.1) bundler (>= 2.2.10) rake (>= 12.3.3) rspec (~> 3.5.0) - rubocop (= 1.29.1) + rubocop (= 1.35.1) rubocop-checkstyle_formatter! BUNDLED WITH - 2.3.22 + 2.5.5 diff --git a/gemfiles/rubocop_1.22.3.gemfile b/gemfiles/rubocop_1.40.0.gemfile similarity index 79% rename from gemfiles/rubocop_1.22.3.gemfile rename to gemfiles/rubocop_1.40.0.gemfile index 596bb21..bd26211 100644 --- a/gemfiles/rubocop_1.22.3.gemfile +++ b/gemfiles/rubocop_1.40.0.gemfile @@ -2,6 +2,6 @@ source "https://rubygems.org" -gem "rubocop", "1.22.3" +gem "rubocop", "1.40.0" gemspec path: "../" diff --git a/gemfiles/rubocop_1.24.1.gemfile.lock b/gemfiles/rubocop_1.40.0.gemfile.lock similarity index 67% rename from gemfiles/rubocop_1.24.1.gemfile.lock rename to gemfiles/rubocop_1.40.0.gemfile.lock index d0a9679..fe9ddb8 100644 --- a/gemfiles/rubocop_1.24.1.gemfile.lock +++ b/gemfiles/rubocop_1.40.0.gemfile.lock @@ -13,13 +13,16 @@ GEM thor (>= 0.14.0) ast (2.4.2) diff-lcs (1.5.0) - parallel (1.22.1) - parser (3.1.2.1) + json (2.7.1) + parallel (1.24.0) + parser (3.3.0.4) ast (~> 2.4.1) + racc + racc (1.7.3) rainbow (3.1.1) - rake (13.0.6) - regexp_parser (2.5.0) - rexml (3.2.5) + rake (13.1.0) + regexp_parser (2.9.0) + rexml (3.2.6) rspec (3.5.0) rspec-core (~> 3.5.0) rspec-expectations (~> 3.5.0) @@ -33,32 +36,33 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.5.0) rspec-support (3.5.0) - rubocop (1.24.1) + rubocop (1.40.0) + json (~> 2.3) parallel (~> 1.10) - parser (>= 3.0.0.0) + parser (>= 3.1.2.1) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 1.8, < 3.0) - rexml - rubocop-ast (>= 1.15.1, < 2.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.23.0, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.21.0) - parser (>= 3.1.1.0) - ruby-progressbar (1.11.0) - thor (1.2.1) - unicode-display_width (2.2.0) + rubocop-ast (1.30.0) + parser (>= 3.2.1.0) + ruby-progressbar (1.13.0) + thor (1.3.0) + unicode-display_width (2.5.0) PLATFORMS - universal-java-11 - x86_64-linux + ruby + x86_64-darwin-22 DEPENDENCIES appraisal (~> 2.4.1) bundler (>= 2.2.10) rake (>= 12.3.3) rspec (~> 3.5.0) - rubocop (= 1.24.1) + rubocop (= 1.40.0) rubocop-checkstyle_formatter! BUNDLED WITH - 2.3.22 + 2.5.5 diff --git a/gemfiles/rubocop_1.21.0.gemfile b/gemfiles/rubocop_1.45.1.gemfile similarity index 79% rename from gemfiles/rubocop_1.21.0.gemfile rename to gemfiles/rubocop_1.45.1.gemfile index 426697d..7915429 100644 --- a/gemfiles/rubocop_1.21.0.gemfile +++ b/gemfiles/rubocop_1.45.1.gemfile @@ -2,6 +2,6 @@ source "https://rubygems.org" -gem "rubocop", "1.21.0" +gem "rubocop", "1.45.1" gemspec path: "../" diff --git a/gemfiles/rubocop_1.23.0.gemfile.lock b/gemfiles/rubocop_1.45.1.gemfile.lock similarity index 64% rename from gemfiles/rubocop_1.23.0.gemfile.lock rename to gemfiles/rubocop_1.45.1.gemfile.lock index 7a3eba6..e9a0c39 100644 --- a/gemfiles/rubocop_1.23.0.gemfile.lock +++ b/gemfiles/rubocop_1.45.1.gemfile.lock @@ -13,13 +13,16 @@ GEM thor (>= 0.14.0) ast (2.4.2) diff-lcs (1.5.0) - parallel (1.22.1) - parser (3.1.2.1) + json (2.7.1) + parallel (1.24.0) + parser (3.3.0.4) ast (~> 2.4.1) + racc + racc (1.7.3) rainbow (3.1.1) - rake (13.0.6) - regexp_parser (2.5.0) - rexml (3.2.5) + rake (13.1.0) + regexp_parser (2.9.0) + rexml (3.2.6) rspec (3.5.0) rspec-core (~> 3.5.0) rspec-expectations (~> 3.5.0) @@ -33,32 +36,33 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.5.0) rspec-support (3.5.0) - rubocop (1.23.0) + rubocop (1.45.1) + json (~> 2.3) parallel (~> 1.10) - parser (>= 3.0.0.0) + parser (>= 3.2.0.0) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 1.8, < 3.0) - rexml - rubocop-ast (>= 1.12.0, < 2.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.24.1, < 2.0) ruby-progressbar (~> 1.7) - unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.21.0) - parser (>= 3.1.1.0) - ruby-progressbar (1.11.0) - thor (1.2.1) - unicode-display_width (2.2.0) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.30.0) + parser (>= 3.2.1.0) + ruby-progressbar (1.13.0) + thor (1.3.0) + unicode-display_width (2.5.0) PLATFORMS - universal-java-11 - x86_64-linux + ruby + x86_64-darwin-22 DEPENDENCIES appraisal (~> 2.4.1) bundler (>= 2.2.10) rake (>= 12.3.3) rspec (~> 3.5.0) - rubocop (= 1.23.0) + rubocop (= 1.45.1) rubocop-checkstyle_formatter! BUNDLED WITH - 2.3.22 + 2.5.5 diff --git a/gemfiles/rubocop_1.23.0.gemfile b/gemfiles/rubocop_1.50.2.gemfile similarity index 79% rename from gemfiles/rubocop_1.23.0.gemfile rename to gemfiles/rubocop_1.50.2.gemfile index 8331b64..fea0e85 100644 --- a/gemfiles/rubocop_1.23.0.gemfile +++ b/gemfiles/rubocop_1.50.2.gemfile @@ -2,6 +2,6 @@ source "https://rubygems.org" -gem "rubocop", "1.23.0" +gem "rubocop", "1.50.2" gemspec path: "../" diff --git a/gemfiles/rubocop_1.21.0.gemfile.lock b/gemfiles/rubocop_1.50.2.gemfile.lock similarity index 64% rename from gemfiles/rubocop_1.21.0.gemfile.lock rename to gemfiles/rubocop_1.50.2.gemfile.lock index b3d4831..0aba9a0 100644 --- a/gemfiles/rubocop_1.21.0.gemfile.lock +++ b/gemfiles/rubocop_1.50.2.gemfile.lock @@ -13,13 +13,16 @@ GEM thor (>= 0.14.0) ast (2.4.2) diff-lcs (1.5.0) - parallel (1.22.1) - parser (3.1.2.1) + json (2.7.1) + parallel (1.24.0) + parser (3.3.0.4) ast (~> 2.4.1) + racc + racc (1.7.3) rainbow (3.1.1) - rake (13.0.6) - regexp_parser (2.5.0) - rexml (3.2.5) + rake (13.1.0) + regexp_parser (2.9.0) + rexml (3.2.6) rspec (3.5.0) rspec-core (~> 3.5.0) rspec-expectations (~> 3.5.0) @@ -33,32 +36,33 @@ GEM diff-lcs (>= 1.2.0, < 2.0) rspec-support (~> 3.5.0) rspec-support (3.5.0) - rubocop (1.21.0) + rubocop (1.50.2) + json (~> 2.3) parallel (~> 1.10) - parser (>= 3.0.0.0) + parser (>= 3.2.0.0) rainbow (>= 2.2.2, < 4.0) regexp_parser (>= 1.8, < 3.0) - rexml - rubocop-ast (>= 1.9.1, < 2.0) + rexml (>= 3.2.5, < 4.0) + rubocop-ast (>= 1.28.0, < 2.0) ruby-progressbar (~> 1.7) - unicode-display_width (>= 1.4.0, < 3.0) - rubocop-ast (1.21.0) - parser (>= 3.1.1.0) - ruby-progressbar (1.11.0) - thor (1.2.1) - unicode-display_width (2.2.0) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.30.0) + parser (>= 3.2.1.0) + ruby-progressbar (1.13.0) + thor (1.3.0) + unicode-display_width (2.5.0) PLATFORMS - universal-java-11 - x86_64-linux + ruby + x86_64-darwin-22 DEPENDENCIES appraisal (~> 2.4.1) bundler (>= 2.2.10) rake (>= 12.3.3) rspec (~> 3.5.0) - rubocop (= 1.21.0) + rubocop (= 1.50.2) rubocop-checkstyle_formatter! BUNDLED WITH - 2.3.22 + 2.5.5