diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index f67f3e2..251ea23 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -25,14 +25,6 @@ jobs: - 'rails-7.2' - 'Gemfile.lock' # rails-8.0 - include: - - ruby-version: '2.7' - bundler: '2.4.20' - - ruby-version: '3.0' - bundler: '2.5.23' - - ruby-version: '3.1' - bundler: '2.5.23' - exclude: - ruby-version: '3.3' lockfile: 'rails-7.0' @@ -73,7 +65,6 @@ jobs: - name: Set up Ruby uses: ruby/setup-ruby@v1 with: - bundler: ${{ matrix.bundler }} ruby-version: ${{ matrix.ruby-version }} bundler-cache: true env: @@ -100,3 +91,16 @@ jobs: - name: Run RuboCop run: bin/rubocop timeout-minutes: 2 + + lint-lockfile: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Set up Ruby + uses: ruby/setup-ruby@v1 + with: + ruby-version: 3.2 + bundler-cache: true + - name: Ensure Lockfiles are Synchronized + run: bundle install && bundle check diff --git a/Gemfile b/Gemfile index 13ec3d0..f4c0612 100644 --- a/Gemfile +++ b/Gemfile @@ -9,22 +9,31 @@ Plugin.send(:load_plugin, "bundler-multilock") gemspec +gem "zeitwerk", "< 2.7.0" # force a version still compatible with Ruby 2.7 + +ruby27 = Gem::Requirement.new("~> 2.7.0").satisfied_by?(Gem::Version.new(RUBY_VERSION)) +ruby30or31 = Gem::Requirement.new(">= 3.0.0", "< 3.2.0").satisfied_by?(Gem::Version.new(RUBY_VERSION)) + lockfile "rails-7.0" do gem "activerecord", "~> 7.0.0" + gem "nokogiri", "< 1.16.0" # force a version still compatible with Ruby 2.7 gem "railties", "~> 7.0.0" end -lockfile "rails-7.1" do +lockfile "rails-7.1", default: ruby27 do gem "activerecord", "~> 7.1.0" + gem "nokogiri", "< 1.16.0" # force a version still compatible with Ruby 2.7 gem "railties", "~> 7.1.0" end -lockfile "rails-7.2" do +lockfile "rails-7.2", default: ruby30or31 do gem "activerecord", "~> 7.2.0" gem "railties", "~> 7.2.0" end lockfile do gem "activerecord", "~> 8.0.0" + # satisfy bundler-multilock that yes, indeed, we want nokogiri to differ between the lockfiles + gem "nokogiri", ">= 1.16.0" gem "railties", "~> 8.0.0" end diff --git a/Gemfile.lock b/Gemfile.lock index 4d06fa2..af510e0 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -177,7 +177,7 @@ GEM unicode-emoji (4.0.4) uri (1.0.2) useragent (0.16.10) - zeitwerk (2.7.1) + zeitwerk (2.6.18) PLATFORMS aarch64-linux @@ -191,6 +191,7 @@ DEPENDENCIES activerecord (~> 8.0.0) activerecord-pg-extensions! debug (~> 1.8) + nokogiri (>= 1.16.0) pg (~> 1.2) railties (~> 8.0.0) rake (~> 13.0) @@ -198,6 +199,7 @@ DEPENDENCIES rubocop-inst (~> 1) rubocop-rake (~> 0.5) rubocop-rspec (~> 2.3) + zeitwerk (< 2.7.0) BUNDLED WITH - 2.5.23 + 2.4.20 diff --git a/Gemfile.rails-7.0.lock b/Gemfile.rails-7.0.lock index 7b03fb1..e681e7f 100644 --- a/Gemfile.rails-7.0.lock +++ b/Gemfile.rails-7.0.lock @@ -8,70 +8,74 @@ PATH GEM remote: https://rubygems.org/ specs: - actionpack (7.0.8) - actionview (= 7.0.8) - activesupport (= 7.0.8) + actionpack (7.0.8.4) + actionview (= 7.0.8.4) + activesupport (= 7.0.8.4) rack (~> 2.0, >= 2.2.4) rack-test (>= 0.6.3) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.2.0) - actionview (7.0.8) - activesupport (= 7.0.8) + actionview (7.0.8.4) + activesupport (= 7.0.8.4) builder (~> 3.1) erubi (~> 1.4) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.1, >= 1.2.0) - activemodel (7.0.8) - activesupport (= 7.0.8) - activerecord (7.0.8) - activemodel (= 7.0.8) - activesupport (= 7.0.8) - activesupport (7.0.8) + activemodel (7.0.8.4) + activesupport (= 7.0.8.4) + activerecord (7.0.8.4) + activemodel (= 7.0.8.4) + activesupport (= 7.0.8.4) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) ast (2.4.2) - builder (3.2.4) - concurrent-ruby (1.2.2) + builder (3.3.0) + concurrent-ruby (1.3.4) crass (1.0.6) - debug (1.8.0) - irb (>= 1.5.0) - reline (>= 0.3.1) - diff-lcs (1.5.0) - erubi (1.12.0) - i18n (1.14.1) - concurrent-ruby (~> 1.0) - io-console (0.6.0) - irb (1.8.3) - rdoc + date (3.4.1) + debug (1.9.2) + irb (~> 1.10) reline (>= 0.3.8) - json (2.6.3) + diff-lcs (1.5.1) + erubi (1.13.0) + i18n (1.14.6) + concurrent-ruby (~> 1.0) + io-console (0.7.2) + irb (1.14.1) + rdoc (>= 4.0.0) + reline (>= 0.4.2) + json (2.8.2) language_server-protocol (3.17.0.3) - loofah (2.21.4) + loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) - method_source (1.0.0) - mini_portile2 (2.8.5) - minitest (5.20.0) - nokogiri (1.15.4) - mini_portile2 (~> 2.8.2) + method_source (1.1.0) + minitest (5.25.2) + nokogiri (1.15.7-aarch64-linux) + racc (~> 1.4) + nokogiri (1.15.7-arm-linux) + racc (~> 1.4) + nokogiri (1.15.7-arm64-darwin) racc (~> 1.4) - nokogiri (1.15.4-arm64-darwin) + nokogiri (1.15.7-x86-linux) racc (~> 1.4) - nokogiri (1.15.4-x86_64-darwin) + nokogiri (1.15.7-x86_64-darwin) racc (~> 1.4) - nokogiri (1.15.4-x86_64-linux) + nokogiri (1.15.7-x86_64-linux) racc (~> 1.4) - parallel (1.23.0) - parser (3.2.2.4) + parallel (1.26.3) + parser (3.3.6.0) ast (~> 2.4.1) racc - pg (1.5.4) - psych (5.1.1.1) + pg (1.5.9) + psych (5.2.1) + date stringio - racc (1.7.1) - rack (2.2.8) + racc (1.8.1) + rack (2.2.9) rack-test (2.1.0) rack (>= 1.3) rails-dom-testing (2.2.0) @@ -81,74 +85,79 @@ GEM rails-html-sanitizer (1.6.0) loofah (~> 2.21) nokogiri (~> 1.14) - railties (7.0.8) - actionpack (= 7.0.8) - activesupport (= 7.0.8) + railties (7.0.8.4) + actionpack (= 7.0.8.4) + activesupport (= 7.0.8.4) method_source rake (>= 12.2) thor (~> 1.0) zeitwerk (~> 2.5) rainbow (3.1.1) - rake (13.1.0) - rdoc (6.5.0) + rake (13.2.1) + rdoc (6.8.1) psych (>= 4.0.0) - regexp_parser (2.8.2) - reline (0.3.9) + regexp_parser (2.9.3) + reline (0.5.12) io-console (~> 0.5) - rexml (3.2.6) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) - rubocop (1.57.2) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rubocop (1.69.0) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) - parser (>= 3.2.2.4) + parser (>= 3.3.0.2) rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.1, < 2.0) + regexp_parser (>= 2.4, < 3.0) + rubocop-ast (>= 1.36.1, < 2.0) ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) + unicode-display_width (>= 2.4.0, < 4.0) + rubocop-ast (1.36.2) + parser (>= 3.3.1.0) + rubocop-capybara (2.21.0) rubocop (~> 1.41) - rubocop-factory_bot (2.24.0) - rubocop (~> 1.33) - rubocop-inst (1.0.2) + rubocop-factory_bot (2.26.1) + rubocop (~> 1.61) + rubocop-inst (1.0.4) rubocop (~> 1.50) rubocop-performance (~> 1.17) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) + rubocop-performance (1.23.0) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.31.1, < 2.0) rubocop-rake (0.6.0) rubocop (~> 1.0) - rubocop-rspec (2.25.0) + rubocop-rspec (2.31.0) rubocop (~> 1.40) rubocop-capybara (~> 2.17) rubocop-factory_bot (~> 2.22) + rubocop-rspec_rails (~> 2.28) + rubocop-rspec_rails (2.29.1) + rubocop (~> 1.61) ruby-progressbar (1.13.0) - stringio (3.0.8) - thor (1.3.0) + stringio (3.1.2) + thor (1.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) - zeitwerk (2.6.12) + unicode-display_width (3.1.2) + unicode-emoji (~> 4.0, >= 4.0.4) + unicode-emoji (4.0.4) + zeitwerk (2.6.18) PLATFORMS + aarch64-linux + arm-linux arm64-darwin - ruby + x86-linux x86_64-darwin x86_64-linux @@ -156,6 +165,7 @@ DEPENDENCIES activerecord (~> 7.0.0) activerecord-pg-extensions! debug (~> 1.8) + nokogiri (< 1.16.0) pg (~> 1.2) railties (~> 7.0.0) rake (~> 13.0) @@ -163,6 +173,7 @@ DEPENDENCIES rubocop-inst (~> 1) rubocop-rake (~> 0.5) rubocop-rspec (~> 2.3) + zeitwerk (< 2.7.0) BUNDLED WITH 2.4.20 diff --git a/Gemfile.rails-7.1.lock b/Gemfile.rails-7.1.lock index bca3176..15bf46a 100644 --- a/Gemfile.rails-7.1.lock +++ b/Gemfile.rails-7.1.lock @@ -8,28 +8,29 @@ PATH GEM remote: https://rubygems.org/ specs: - actionpack (7.1.1) - actionview (= 7.1.1) - activesupport (= 7.1.1) + actionpack (7.1.3) + actionview (= 7.1.3) + activesupport (= 7.1.3) nokogiri (>= 1.8.5) + racc rack (>= 2.2.4) rack-session (>= 1.0.1) rack-test (>= 0.6.3) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - actionview (7.1.1) - activesupport (= 7.1.1) + actionview (7.1.3) + activesupport (= 7.1.3) builder (~> 3.1) erubi (~> 1.11) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - activemodel (7.1.1) - activesupport (= 7.1.1) - activerecord (7.1.1) - activemodel (= 7.1.1) - activesupport (= 7.1.1) + activemodel (7.1.3) + activesupport (= 7.1.3) + activerecord (7.1.3) + activemodel (= 7.1.3) + activesupport (= 7.1.3) timeout (>= 0.4.0) - activesupport (7.1.1) + activesupport (7.1.3) base64 bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) @@ -40,58 +41,60 @@ GEM mutex_m tzinfo (~> 2.0) ast (2.4.2) - base64 (0.1.1) - bigdecimal (3.1.4) - builder (3.2.4) - concurrent-ruby (1.2.2) + base64 (0.2.0) + bigdecimal (3.1.8) + builder (3.3.0) + concurrent-ruby (1.3.4) connection_pool (2.4.1) crass (1.0.6) - debug (1.8.0) - irb (>= 1.5.0) - reline (>= 0.3.1) - diff-lcs (1.5.0) - drb (2.1.1) - ruby2_keywords - erubi (1.12.0) - i18n (1.14.1) - concurrent-ruby (~> 1.0) - io-console (0.6.0) - irb (1.8.3) - rdoc + date (3.4.1) + debug (1.9.2) + irb (~> 1.10) reline (>= 0.3.8) - json (2.6.3) + diff-lcs (1.5.1) + drb (2.2.1) + erubi (1.13.0) + i18n (1.14.6) + concurrent-ruby (~> 1.0) + io-console (0.7.2) + irb (1.14.1) + rdoc (>= 4.0.0) + reline (>= 0.4.2) + json (2.8.2) language_server-protocol (3.17.0.3) - loofah (2.21.4) + loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) - mini_portile2 (2.8.5) - minitest (5.20.0) - mutex_m (0.1.2) - nokogiri (1.15.4) - mini_portile2 (~> 2.8.2) + minitest (5.25.2) + mutex_m (0.2.0) + nokogiri (1.15.7-aarch64-linux) + racc (~> 1.4) + nokogiri (1.15.7-arm-linux) + racc (~> 1.4) + nokogiri (1.15.7-arm64-darwin) racc (~> 1.4) - nokogiri (1.15.4-arm64-darwin) + nokogiri (1.15.7-x86-linux) racc (~> 1.4) - nokogiri (1.15.4-x86_64-darwin) + nokogiri (1.15.7-x86_64-darwin) racc (~> 1.4) - nokogiri (1.15.4-x86_64-linux) + nokogiri (1.15.7-x86_64-linux) racc (~> 1.4) - parallel (1.23.0) - parser (3.2.2.4) + parallel (1.26.3) + parser (3.3.6.0) ast (~> 2.4.1) racc - pg (1.5.4) - psych (5.1.1.1) + pg (1.5.9) + psych (5.2.1) + date stringio - racc (1.7.1) - rack (3.0.8) + racc (1.8.1) + rack (3.1.8) rack-session (2.0.0) rack (>= 3.0.0) rack-test (2.1.0) rack (>= 1.3) - rackup (2.1.0) + rackup (2.2.1) rack (>= 3) - webrick (~> 1.8) rails-dom-testing (2.2.0) activesupport (>= 5.0.0) minitest @@ -99,78 +102,81 @@ GEM rails-html-sanitizer (1.6.0) loofah (~> 2.21) nokogiri (~> 1.14) - railties (7.1.1) - actionpack (= 7.1.1) - activesupport (= 7.1.1) + railties (7.1.3) + actionpack (= 7.1.3) + activesupport (= 7.1.3) irb rackup (>= 1.0.0) rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) rainbow (3.1.1) - rake (13.1.0) - rdoc (6.5.0) + rake (13.2.1) + rdoc (6.8.1) psych (>= 4.0.0) - regexp_parser (2.8.2) - reline (0.3.9) + regexp_parser (2.9.3) + reline (0.5.12) io-console (~> 0.5) - rexml (3.2.6) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) - rubocop (1.57.2) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rubocop (1.69.0) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) - parser (>= 3.2.2.4) + parser (>= 3.3.0.2) rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.1, < 2.0) + regexp_parser (>= 2.4, < 3.0) + rubocop-ast (>= 1.36.1, < 2.0) ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) + unicode-display_width (>= 2.4.0, < 4.0) + rubocop-ast (1.36.2) + parser (>= 3.3.1.0) + rubocop-capybara (2.21.0) rubocop (~> 1.41) - rubocop-factory_bot (2.24.0) - rubocop (~> 1.33) - rubocop-inst (1.0.2) + rubocop-factory_bot (2.26.1) + rubocop (~> 1.61) + rubocop-inst (1.0.4) rubocop (~> 1.50) rubocop-performance (~> 1.17) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) + rubocop-performance (1.23.0) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.31.1, < 2.0) rubocop-rake (0.6.0) rubocop (~> 1.0) - rubocop-rspec (2.25.0) + rubocop-rspec (2.31.0) rubocop (~> 1.40) rubocop-capybara (~> 2.17) rubocop-factory_bot (~> 2.22) + rubocop-rspec_rails (~> 2.28) + rubocop-rspec_rails (2.29.1) + rubocop (~> 1.61) ruby-progressbar (1.13.0) - ruby2_keywords (0.0.5) - stringio (3.0.8) - thor (1.3.0) - timeout (0.4.0) + stringio (3.1.2) + thor (1.3.2) + timeout (0.4.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) - webrick (1.8.1) - zeitwerk (2.6.12) + unicode-display_width (3.1.2) + unicode-emoji (~> 4.0, >= 4.0.4) + unicode-emoji (4.0.4) + zeitwerk (2.6.18) PLATFORMS + aarch64-linux + arm-linux arm64-darwin - ruby + x86-linux x86_64-darwin x86_64-linux @@ -178,6 +184,7 @@ DEPENDENCIES activerecord (~> 7.1.0) activerecord-pg-extensions! debug (~> 1.8) + nokogiri (< 1.16.0) pg (~> 1.2) railties (~> 7.1.0) rake (~> 13.0) @@ -185,6 +192,7 @@ DEPENDENCIES rubocop-inst (~> 1) rubocop-rake (~> 0.5) rubocop-rspec (~> 2.3) + zeitwerk (< 2.7.0) BUNDLED WITH 2.4.20 diff --git a/Gemfile.rails-7.2.lock b/Gemfile.rails-7.2.lock index 08fa6b0..6c95ed2 100644 --- a/Gemfile.rails-7.2.lock +++ b/Gemfile.rails-7.2.lock @@ -44,50 +44,54 @@ GEM securerandom (>= 0.3) tzinfo (~> 2.0, >= 2.0.5) ast (2.4.2) - base64 (0.1.1) + base64 (0.2.0) benchmark (0.4.0) - bigdecimal (3.1.4) - builder (3.2.4) - concurrent-ruby (1.3.1) + bigdecimal (3.1.8) + builder (3.3.0) + concurrent-ruby (1.3.4) connection_pool (2.4.1) crass (1.0.6) - debug (1.8.0) - irb (>= 1.5.0) - reline (>= 0.3.1) - diff-lcs (1.5.0) + date (3.4.1) + debug (1.9.2) + irb (~> 1.10) + reline (>= 0.3.8) + diff-lcs (1.5.1) drb (2.2.1) erubi (1.13.0) i18n (1.14.6) concurrent-ruby (~> 1.0) - io-console (0.6.0) + io-console (0.7.2) irb (1.14.1) rdoc (>= 4.0.0) reline (>= 0.4.2) - json (2.6.3) + json (2.8.2) language_server-protocol (3.17.0.3) logger (1.6.2) loofah (2.23.1) crass (~> 1.0.2) nokogiri (>= 1.12.0) - mini_portile2 (2.8.8) minitest (5.25.2) - nokogiri (1.16.7) - mini_portile2 (~> 2.8.2) + nokogiri (1.16.7-aarch64-linux) + racc (~> 1.4) + nokogiri (1.16.7-arm-linux) racc (~> 1.4) nokogiri (1.16.7-arm64-darwin) racc (~> 1.4) + nokogiri (1.16.7-x86-linux) + racc (~> 1.4) nokogiri (1.16.7-x86_64-darwin) racc (~> 1.4) nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) - parallel (1.23.0) - parser (3.2.2.4) + parallel (1.26.3) + parser (3.3.6.0) ast (~> 2.4.1) racc - pg (1.5.4) - psych (5.1.1.1) + pg (1.5.9) + psych (5.2.1) + date stringio - racc (1.7.1) + racc (1.8.1) rack (3.1.8) rack-session (2.0.0) rack (>= 3.0.0) @@ -111,69 +115,74 @@ GEM thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) rainbow (3.1.1) - rake (13.1.0) - rdoc (6.5.0) + rake (13.2.1) + rdoc (6.8.1) psych (>= 4.0.0) - regexp_parser (2.8.2) + regexp_parser (2.9.3) reline (0.5.12) io-console (~> 0.5) - rexml (3.2.6) - rspec (3.12.0) - rspec-core (~> 3.12.0) - rspec-expectations (~> 3.12.0) - rspec-mocks (~> 3.12.0) - rspec-core (3.12.2) - rspec-support (~> 3.12.0) - rspec-expectations (3.12.3) + rspec (3.13.0) + rspec-core (~> 3.13.0) + rspec-expectations (~> 3.13.0) + rspec-mocks (~> 3.13.0) + rspec-core (3.13.2) + rspec-support (~> 3.13.0) + rspec-expectations (3.13.3) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-mocks (3.12.6) + rspec-support (~> 3.13.0) + rspec-mocks (3.13.2) diff-lcs (>= 1.2.0, < 2.0) - rspec-support (~> 3.12.0) - rspec-support (3.12.1) - rubocop (1.57.2) + rspec-support (~> 3.13.0) + rspec-support (3.13.1) + rubocop (1.69.0) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) - parser (>= 3.2.2.4) + parser (>= 3.3.0.2) rainbow (>= 2.2.2, < 4.0) - regexp_parser (>= 1.8, < 3.0) - rexml (>= 3.2.5, < 4.0) - rubocop-ast (>= 1.28.1, < 2.0) + regexp_parser (>= 2.4, < 3.0) + rubocop-ast (>= 1.36.1, < 2.0) ruby-progressbar (~> 1.7) - unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.30.0) - parser (>= 3.2.1.0) - rubocop-capybara (2.19.0) + unicode-display_width (>= 2.4.0, < 4.0) + rubocop-ast (1.36.2) + parser (>= 3.3.1.0) + rubocop-capybara (2.21.0) rubocop (~> 1.41) - rubocop-factory_bot (2.24.0) - rubocop (~> 1.33) - rubocop-inst (1.0.2) + rubocop-factory_bot (2.26.1) + rubocop (~> 1.61) + rubocop-inst (1.0.4) rubocop (~> 1.50) rubocop-performance (~> 1.17) - rubocop-performance (1.19.1) - rubocop (>= 1.7.0, < 2.0) - rubocop-ast (>= 0.4.0) + rubocop-performance (1.23.0) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.31.1, < 2.0) rubocop-rake (0.6.0) rubocop (~> 1.0) - rubocop-rspec (2.25.0) + rubocop-rspec (2.31.0) rubocop (~> 1.40) rubocop-capybara (~> 2.17) rubocop-factory_bot (~> 2.22) + rubocop-rspec_rails (~> 2.28) + rubocop-rspec_rails (2.29.1) + rubocop (~> 1.61) ruby-progressbar (1.13.0) securerandom (0.4.0) - stringio (3.0.8) + stringio (3.1.2) thor (1.3.2) timeout (0.4.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - unicode-display_width (2.5.0) + unicode-display_width (3.1.2) + unicode-emoji (~> 4.0, >= 4.0.4) + unicode-emoji (4.0.4) useragent (0.16.10) zeitwerk (2.6.18) PLATFORMS + aarch64-linux + arm-linux arm64-darwin - ruby + x86-linux x86_64-darwin x86_64-linux @@ -188,6 +197,7 @@ DEPENDENCIES rubocop-inst (~> 1) rubocop-rake (~> 0.5) rubocop-rspec (~> 2.3) + zeitwerk (< 2.7.0) BUNDLED WITH 2.4.20