From 8cb38e26d3e5386979a9f597b5905e2ad17555c8 Mon Sep 17 00:00:00 2001 From: Joel Moss Date: Tue, 19 Nov 2024 23:07:44 +0000 Subject: [PATCH] chore: Installed and setup Appraisal for rails 7.1, 7.2 and 8.0 --- .github/workflows/main.yml | 3 +- Appraisals | 13 + Gemfile | 3 +- Gemfile.lock | 174 +++++---- fixtures/dummy/vendor/gem1/lib/gem1/engine.rb | 2 + fixtures/dummy/vendor/gem3/lib/gem3/engine.rb | 2 + gemfiles/rails_7.1.gemfile | 39 ++ gemfiles/rails_7.1.gemfile.lock | 368 ++++++++++++++++++ gemfiles/rails_7.2.gemfile | 39 ++ gemfiles/rails_7.2.gemfile.lock | 362 +++++++++++++++++ gemfiles/rails_8.gemfile | 39 ++ gemfiles/rails_8.gemfile.lock | 363 +++++++++++++++++ proscenium.gemspec | 4 +- 13 files changed, 1323 insertions(+), 88 deletions(-) create mode 100644 Appraisals create mode 100644 gemfiles/rails_7.1.gemfile create mode 100644 gemfiles/rails_7.1.gemfile.lock create mode 100644 gemfiles/rails_7.2.gemfile create mode 100644 gemfiles/rails_7.2.gemfile.lock create mode 100644 gemfiles/rails_8.gemfile create mode 100644 gemfiles/rails_8.gemfile.lock diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 40ce3031..63dd86d7 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -24,7 +24,8 @@ jobs: with: bundler-cache: true - run: bundle exec rake compile:local - - run: bin/test + - run: bundle exec appraisal install + - run: bundle exec appraisal bin/test rubocop: runs-on: "ubuntu-latest" diff --git a/Appraisals b/Appraisals new file mode 100644 index 00000000..5937ffcd --- /dev/null +++ b/Appraisals @@ -0,0 +1,13 @@ +# frozen_string_literal: true + +appraise 'rails-7.1' do + gem 'rails', '~> 7.1.0' +end + +appraise 'rails-7.2' do + gem 'rails', '~> 7.2.0' +end + +appraise 'rails-8' do + gem 'rails', '~> 8.0.0' +end diff --git a/Gemfile b/Gemfile index 2b9dc8d5..8d420759 100644 --- a/Gemfile +++ b/Gemfile @@ -9,6 +9,7 @@ gem 'debug' gem 'rails', '~> 7.0' # Playground +gem 'appraisal' gem 'htmlbeautifier' gem 'phlexible' gem 'rouge' @@ -37,5 +38,5 @@ group :test do gem 'minitest-focus' gem 'minitest-spec-rails' gem 'phlex-testing-capybara' - gem 'view_component', '~> 3.6.0' + gem 'view_component' end diff --git a/Gemfile.lock b/Gemfile.lock index 16e58e02..3c0d7bce 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -2,11 +2,11 @@ PATH remote: . specs: proscenium (0.18.0) - activesupport (>= 7.1.0, < 8.0) + activesupport (>= 7.1.0, < 9.0) ffi (~> 1.17.0) literal (~> 1.0) oj (~> 3.13) - railties (>= 7.1.0, < 8.0) + railties (>= 7.1.0, < 9.0) ruby-next (~> 1.0.1) PATH @@ -36,29 +36,29 @@ PATH GEM remote: https://rubygems.org/ specs: - actioncable (7.2.1.2) - actionpack (= 7.2.1.2) - activesupport (= 7.2.1.2) + actioncable (7.2.2) + actionpack (= 7.2.2) + activesupport (= 7.2.2) nio4r (~> 2.0) websocket-driver (>= 0.6.1) zeitwerk (~> 2.6) - actionmailbox (7.2.1.2) - actionpack (= 7.2.1.2) - activejob (= 7.2.1.2) - activerecord (= 7.2.1.2) - activestorage (= 7.2.1.2) - activesupport (= 7.2.1.2) + actionmailbox (7.2.2) + actionpack (= 7.2.2) + activejob (= 7.2.2) + activerecord (= 7.2.2) + activestorage (= 7.2.2) + activesupport (= 7.2.2) mail (>= 2.8.0) - actionmailer (7.2.1.2) - actionpack (= 7.2.1.2) - actionview (= 7.2.1.2) - activejob (= 7.2.1.2) - activesupport (= 7.2.1.2) + actionmailer (7.2.2) + actionpack (= 7.2.2) + actionview (= 7.2.2) + activejob (= 7.2.2) + activesupport (= 7.2.2) mail (>= 2.8.0) rails-dom-testing (~> 2.2) - actionpack (7.2.1.2) - actionview (= 7.2.1.2) - activesupport (= 7.2.1.2) + actionpack (7.2.2) + actionview (= 7.2.2) + activesupport (= 7.2.2) nokogiri (>= 1.8.5) racc rack (>= 2.2.4, < 3.2) @@ -67,36 +67,37 @@ GEM rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) useragent (~> 0.16) - actiontext (7.2.1.2) - actionpack (= 7.2.1.2) - activerecord (= 7.2.1.2) - activestorage (= 7.2.1.2) - activesupport (= 7.2.1.2) + actiontext (7.2.2) + actionpack (= 7.2.2) + activerecord (= 7.2.2) + activestorage (= 7.2.2) + activesupport (= 7.2.2) globalid (>= 0.6.0) nokogiri (>= 1.8.5) - actionview (7.2.1.2) - activesupport (= 7.2.1.2) + actionview (7.2.2) + activesupport (= 7.2.2) builder (~> 3.1) erubi (~> 1.11) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - activejob (7.2.1.2) - activesupport (= 7.2.1.2) + activejob (7.2.2) + activesupport (= 7.2.2) globalid (>= 0.3.6) - activemodel (7.2.1.2) - activesupport (= 7.2.1.2) - activerecord (7.2.1.2) - activemodel (= 7.2.1.2) - activesupport (= 7.2.1.2) + activemodel (7.2.2) + activesupport (= 7.2.2) + activerecord (7.2.2) + activemodel (= 7.2.2) + activesupport (= 7.2.2) timeout (>= 0.4.0) - activestorage (7.2.1.2) - actionpack (= 7.2.1.2) - activejob (= 7.2.1.2) - activerecord (= 7.2.1.2) - activesupport (= 7.2.1.2) + activestorage (7.2.2) + actionpack (= 7.2.2) + activejob (= 7.2.2) + activerecord (= 7.2.2) + activesupport (= 7.2.2) marcel (~> 1.0) - activesupport (7.2.1.2) + activesupport (7.2.2) base64 + benchmark (>= 0.3) bigdecimal concurrent-ruby (~> 1.0, >= 1.3.1) connection_pool (>= 2.2.5) @@ -108,8 +109,13 @@ GEM tzinfo (~> 2.0, >= 2.0.5) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) ast (2.4.2) base64 (0.2.0) + benchmark (0.4.0) benchmark-ips (2.14.0) bigdecimal (3.1.8) bindex (0.8.1) @@ -129,7 +135,7 @@ GEM cuprite (0.15.1) capybara (~> 3.0) ferrum (~> 0.15.0) - date (3.3.4) + date (3.4.0) debug (1.9.2) irb (~> 1.10) reline (>= 0.3.8) @@ -153,9 +159,9 @@ GEM irb (1.14.1) rdoc (>= 4.0.0) reline (>= 0.4.2) - json (2.7.5) + json (2.8.2) language_server-protocol (3.17.0.3) - literal (1.0.0) + literal (1.1.0) logger (1.6.1) loofah (2.23.1) crass (~> 1.0.2) @@ -167,17 +173,17 @@ GEM net-smtp marcel (1.0.4) matrix (0.4.2) - maxitest (5.7.1) + maxitest (5.8.0) minitest (>= 5.14.0, < 5.26.0) method_source (1.1.0) mini_mime (1.1.5) minitest (5.25.1) minitest-focus (1.4.0) minitest (>= 4, < 6) - minitest-spec-rails (7.3.0) + minitest-spec-rails (7.4.1) minitest (>= 5.0) railties (>= 4.1) - net-imap (0.5.0) + net-imap (0.5.1) date net-protocol net-pop (0.1.2) @@ -191,26 +197,26 @@ GEM racc (~> 1.4) nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) - oj (3.16.6) + oj (3.16.7) bigdecimal (>= 3.0) ostruct (>= 0.2) - ostruct (0.6.0) + ostruct (0.6.1) paco (0.2.3) parallel (1.26.3) - parser (3.3.5.0) + parser (3.3.6.0) ast (~> 2.4.1) racc - phlex (1.10.3) - phlex-rails (1.2.1) - phlex (~> 1.10.0) - railties (>= 6.1, < 8) + phlex (1.11.0) + phlex-rails (1.2.2) + phlex (>= 1.10, < 2) + railties (>= 6.1, < 9) phlex-testing-capybara (0.1.0) capybara (~> 3.38) phlex (>= 0.5) phlexible (2.0.0) phlex (>= 1.10.0, < 2.0.0) phlex-rails (>= 1.2.1, < 2.0.0) - psych (5.1.2) + psych (5.2.0) stringio public_suffix (6.0.1) puma (6.4.3) @@ -221,23 +227,22 @@ GEM 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 (7.2.1.2) - actioncable (= 7.2.1.2) - actionmailbox (= 7.2.1.2) - actionmailer (= 7.2.1.2) - actionpack (= 7.2.1.2) - actiontext (= 7.2.1.2) - actionview (= 7.2.1.2) - activejob (= 7.2.1.2) - activemodel (= 7.2.1.2) - activerecord (= 7.2.1.2) - activestorage (= 7.2.1.2) - activesupport (= 7.2.1.2) + rails (7.2.2) + actioncable (= 7.2.2) + actionmailbox (= 7.2.2) + actionmailer (= 7.2.2) + actionpack (= 7.2.2) + actiontext (= 7.2.2) + actionview (= 7.2.2) + activejob (= 7.2.2) + activemodel (= 7.2.2) + activerecord (= 7.2.2) + activestorage (= 7.2.2) + activesupport (= 7.2.2) bundler (>= 1.15.0) - railties (= 7.2.1.2) + railties (= 7.2.2) rails-dom-testing (2.2.0) activesupport (>= 5.0.0) minitest @@ -245,9 +250,9 @@ GEM rails-html-sanitizer (1.6.0) loofah (~> 2.21) nokogiri (~> 1.14) - railties (7.2.1.2) - actionpack (= 7.2.1.2) - activesupport (= 7.2.1.2) + railties (7.2.2) + actionpack (= 7.2.2) + activesupport (= 7.2.2) irb (~> 1.13) rackup (>= 1.0.0) rake (>= 12.2) @@ -255,14 +260,14 @@ GEM zeitwerk (~> 2.6) rainbow (3.1.1) rake (13.2.1) - rdoc (6.7.0) + rdoc (6.8.1) psych (>= 4.0.0) regexp_parser (2.9.2) - reline (0.5.10) + reline (0.5.11) io-console (~> 0.5) require-hooks (0.2.2) - rouge (4.4.0) - rubocop (1.67.0) + rouge (4.5.1) + rubocop (1.68.0) json (~> 2.3) language_server-protocol (>= 3.17.0) parallel (~> 1.10) @@ -272,14 +277,14 @@ GEM rubocop-ast (>= 1.32.2, < 2.0) ruby-progressbar (~> 1.7) unicode-display_width (>= 2.4.0, < 3.0) - rubocop-ast (1.33.0) + rubocop-ast (1.36.1) parser (>= 3.3.1.0) rubocop-minitest (0.36.0) rubocop (>= 1.61, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) rubocop-packaging (0.5.2) rubocop (>= 1.33, < 2.0) - rubocop-performance (1.22.1) + rubocop-performance (1.23.0) rubocop (>= 1.48.1, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) rubocop-rake (0.6.0) @@ -294,12 +299,12 @@ GEM ruby-next-parser (3.2.2.0) parser (>= 3.0.3.1) ruby-progressbar (1.13.0) - securerandom (0.3.1) + securerandom (0.3.2) sqlite3 (2.2.0-arm64-darwin) sqlite3 (2.2.0-x86_64-linux-gnu) - stringio (3.1.1) + stringio (3.1.2) thor (1.3.2) - timeout (0.4.1) + timeout (0.4.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) unicode-display_width (2.6.0) @@ -307,8 +312,8 @@ GEM diff-lcs (~> 1.3) parser (>= 3.3.0) useragent (0.16.10) - view_component (3.6.0) - activesupport (>= 5.2.0, < 8.0) + view_component (3.20.0) + activesupport (>= 5.2.0, < 8.1) concurrent-ruby (~> 1.0) method_source (~> 1.0) web-console (4.2.1) @@ -316,7 +321,7 @@ GEM activemodel (>= 6.0.0) bindex (>= 0.4.0) railties (>= 6.0.0) - webrick (1.8.2) + webrick (1.9.0) websocket-driver (0.7.6) websocket-extensions (>= 0.1.0) websocket-extensions (0.1.5) @@ -332,6 +337,7 @@ PLATFORMS x86_64-linux DEPENDENCIES + appraisal benchmark-ips capybara cuprite @@ -357,7 +363,7 @@ DEPENDENCIES rubocop-performance rubocop-rake sqlite3 - view_component (~> 3.6.0) + view_component web-console BUNDLED WITH diff --git a/fixtures/dummy/vendor/gem1/lib/gem1/engine.rb b/fixtures/dummy/vendor/gem1/lib/gem1/engine.rb index d1ec987f..6011cbab 100644 --- a/fixtures/dummy/vendor/gem1/lib/gem1/engine.rb +++ b/fixtures/dummy/vendor/gem1/lib/gem1/engine.rb @@ -1,5 +1,7 @@ # frozen_string_literal: true +require 'proscenium' + module Gem1 class Engine < ::Rails::Engine # isolate_namespace Gem1 diff --git a/fixtures/dummy/vendor/gem3/lib/gem3/engine.rb b/fixtures/dummy/vendor/gem3/lib/gem3/engine.rb index 4385f17f..86cfdcb4 100644 --- a/fixtures/dummy/vendor/gem3/lib/gem3/engine.rb +++ b/fixtures/dummy/vendor/gem3/lib/gem3/engine.rb @@ -1,5 +1,7 @@ # frozen_string_literal: true +require 'proscenium' + module Gem3 class Engine < ::Rails::Engine # isolate_namespace Gem3 diff --git a/gemfiles/rails_7.1.gemfile b/gemfiles/rails_7.1.gemfile new file mode 100644 index 00000000..cf444332 --- /dev/null +++ b/gemfiles/rails_7.1.gemfile @@ -0,0 +1,39 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "debug" +gem "rails", "~> 7.1.0" +gem "appraisal" +gem "htmlbeautifier" +gem "phlexible" +gem "rouge" + +group :development do + gem "benchmark-ips" + gem "puma" + gem "rubocop" + gem "rubocop-minitest", require: false + gem "rubocop-packaging", require: false + gem "rubocop-performance", require: false + gem "rubocop-rake", require: false + gem "sqlite3" + gem "web-console" +end + +group :test do + gem "capybara" + gem "cuprite" + gem "fakefs", require: "fakefs/safe" + gem "gem1", path: "../fixtures/dummy/vendor/gem1" + gem "gem2", path: "../fixtures/external/gem2" + gem "gem3", path: "../fixtures/dummy/vendor/gem3" + gem "gem4", path: "../fixtures/external/gem4" + gem "maxitest" + gem "minitest-focus" + gem "minitest-spec-rails" + gem "phlex-testing-capybara" + gem "view_component" +end + +gemspec path: "../" diff --git a/gemfiles/rails_7.1.gemfile.lock b/gemfiles/rails_7.1.gemfile.lock new file mode 100644 index 00000000..1e45ebb7 --- /dev/null +++ b/gemfiles/rails_7.1.gemfile.lock @@ -0,0 +1,368 @@ +PATH + remote: ../fixtures/dummy/vendor/gem1 + specs: + gem1 (0.1.0) + rails (>= 7.0.4) + +PATH + remote: ../fixtures/dummy/vendor/gem3 + specs: + gem3 (0.1.0) + rails (>= 7.0.4) + +PATH + remote: ../fixtures/external/gem2 + specs: + gem2 (0.1.0) + rails (>= 7.0.4) + +PATH + remote: ../fixtures/external/gem4 + specs: + gem4 (0.1.0) + rails (>= 7.0.4) + +PATH + remote: .. + specs: + proscenium (0.18.0) + activesupport (>= 7.1.0, < 9.0) + ffi (~> 1.17.0) + literal (~> 1.0) + oj (~> 3.13) + railties (>= 7.1.0, < 9.0) + ruby-next (~> 1.0.1) + +GEM + remote: https://rubygems.org/ + specs: + actioncable (7.1.5) + actionpack (= 7.1.5) + activesupport (= 7.1.5) + nio4r (~> 2.0) + websocket-driver (>= 0.6.1) + zeitwerk (~> 2.6) + actionmailbox (7.1.5) + actionpack (= 7.1.5) + activejob (= 7.1.5) + activerecord (= 7.1.5) + activestorage (= 7.1.5) + activesupport (= 7.1.5) + mail (>= 2.7.1) + net-imap + net-pop + net-smtp + actionmailer (7.1.5) + actionpack (= 7.1.5) + actionview (= 7.1.5) + activejob (= 7.1.5) + activesupport (= 7.1.5) + mail (~> 2.5, >= 2.5.4) + net-imap + net-pop + net-smtp + rails-dom-testing (~> 2.2) + actionpack (7.1.5) + actionview (= 7.1.5) + activesupport (= 7.1.5) + 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) + actiontext (7.1.5) + actionpack (= 7.1.5) + activerecord (= 7.1.5) + activestorage (= 7.1.5) + activesupport (= 7.1.5) + globalid (>= 0.6.0) + nokogiri (>= 1.8.5) + actionview (7.1.5) + activesupport (= 7.1.5) + builder (~> 3.1) + erubi (~> 1.11) + rails-dom-testing (~> 2.2) + rails-html-sanitizer (~> 1.6) + activejob (7.1.5) + activesupport (= 7.1.5) + globalid (>= 0.3.6) + activemodel (7.1.5) + activesupport (= 7.1.5) + activerecord (7.1.5) + activemodel (= 7.1.5) + activesupport (= 7.1.5) + timeout (>= 0.4.0) + activestorage (7.1.5) + actionpack (= 7.1.5) + activejob (= 7.1.5) + activerecord (= 7.1.5) + activesupport (= 7.1.5) + marcel (~> 1.0) + activesupport (7.1.5) + base64 + benchmark (>= 0.3) + bigdecimal + concurrent-ruby (~> 1.0, >= 1.0.2) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + logger (>= 1.4.2) + minitest (>= 5.1) + mutex_m + securerandom (>= 0.3) + tzinfo (~> 2.0) + addressable (2.8.7) + public_suffix (>= 2.0.2, < 7.0) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + base64 (0.2.0) + benchmark (0.4.0) + benchmark-ips (2.14.0) + bigdecimal (3.1.8) + bindex (0.8.1) + builder (3.3.0) + capybara (3.40.0) + addressable + matrix + mini_mime (>= 0.1.3) + nokogiri (~> 1.11) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (>= 1.5, < 3.0) + xpath (~> 3.2) + concurrent-ruby (1.3.4) + connection_pool (2.4.1) + crass (1.0.6) + cuprite (0.15.1) + capybara (~> 3.0) + ferrum (~> 0.15.0) + date (3.4.0) + debug (1.9.2) + irb (~> 1.10) + reline (>= 0.3.8) + diff-lcs (1.5.1) + drb (2.2.1) + erubi (1.13.0) + fakefs (2.5.0) + ferrum (0.15) + addressable (~> 2.5) + concurrent-ruby (~> 1.1) + webrick (~> 1.7) + websocket-driver (~> 0.7) + ffi (1.17.0-arm64-darwin) + globalid (1.2.1) + activesupport (>= 6.1) + htmlbeautifier (1.4.3) + 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) + literal (1.1.0) + logger (1.6.1) + loofah (2.23.1) + crass (~> 1.0.2) + nokogiri (>= 1.12.0) + mail (2.8.1) + mini_mime (>= 0.1.1) + net-imap + net-pop + net-smtp + marcel (1.0.4) + matrix (0.4.2) + maxitest (5.8.0) + minitest (>= 5.14.0, < 5.26.0) + method_source (1.1.0) + mini_mime (1.1.5) + minitest (5.25.1) + minitest-focus (1.4.0) + minitest (>= 4, < 6) + minitest-spec-rails (7.4.1) + minitest (>= 5.0) + railties (>= 4.1) + mutex_m (0.2.0) + net-imap (0.5.1) + date + net-protocol + net-pop (0.1.2) + net-protocol + net-protocol (0.2.2) + timeout + net-smtp (0.5.0) + net-protocol + nio4r (2.7.4) + nokogiri (1.16.7-arm64-darwin) + racc (~> 1.4) + oj (3.16.7) + bigdecimal (>= 3.0) + ostruct (>= 0.2) + ostruct (0.6.1) + paco (0.2.3) + parallel (1.26.3) + parser (3.3.6.0) + ast (~> 2.4.1) + racc + phlex (1.11.0) + phlex-rails (1.2.2) + phlex (>= 1.10, < 2) + railties (>= 6.1, < 9) + phlex-testing-capybara (0.1.0) + capybara (~> 3.38) + phlex (>= 0.5) + phlexible (2.0.0) + phlex (>= 1.10.0, < 2.0.0) + phlex-rails (>= 1.2.1, < 2.0.0) + psych (5.2.0) + stringio + public_suffix (6.0.1) + puma (6.4.3) + nio4r (~> 2.0) + 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.2.1) + rack (>= 3) + rails (7.1.5) + actioncable (= 7.1.5) + actionmailbox (= 7.1.5) + actionmailer (= 7.1.5) + actionpack (= 7.1.5) + actiontext (= 7.1.5) + actionview (= 7.1.5) + activejob (= 7.1.5) + activemodel (= 7.1.5) + activerecord (= 7.1.5) + activestorage (= 7.1.5) + activesupport (= 7.1.5) + bundler (>= 1.15.0) + railties (= 7.1.5) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest + nokogiri (>= 1.6) + rails-html-sanitizer (1.6.0) + loofah (~> 2.21) + nokogiri (~> 1.14) + railties (7.1.5) + actionpack (= 7.1.5) + activesupport (= 7.1.5) + irb + rackup (>= 1.0.0) + rake (>= 12.2) + thor (~> 1.0, >= 1.2.2) + zeitwerk (~> 2.6) + rainbow (3.1.1) + rake (13.2.1) + rdoc (6.8.1) + psych (>= 4.0.0) + regexp_parser (2.9.2) + reline (0.5.11) + io-console (~> 0.5) + require-hooks (0.2.2) + rouge (4.5.1) + rubocop (1.68.0) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 2.4, < 3.0) + rubocop-ast (>= 1.32.2, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.36.1) + parser (>= 3.3.1.0) + rubocop-minitest (0.36.0) + rubocop (>= 1.61, < 2.0) + rubocop-ast (>= 1.31.1, < 2.0) + rubocop-packaging (0.5.2) + rubocop (>= 1.33, < 2.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) + ruby-next (1.0.3) + paco (~> 0.2) + require-hooks (~> 0.2) + ruby-next-core (= 1.0.3) + ruby-next-parser (>= 3.2.2.0) + unparser (~> 0.6.0) + ruby-next-core (1.0.3) + ruby-next-parser (3.2.2.0) + parser (>= 3.0.3.1) + ruby-progressbar (1.13.0) + securerandom (0.3.2) + sqlite3 (2.2.0-arm64-darwin) + stringio (3.1.2) + thor (1.3.2) + timeout (0.4.2) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.6.0) + unparser (0.6.15) + diff-lcs (~> 1.3) + parser (>= 3.3.0) + view_component (3.20.0) + activesupport (>= 5.2.0, < 8.1) + concurrent-ruby (~> 1.0) + method_source (~> 1.0) + web-console (4.2.1) + actionview (>= 6.0.0) + activemodel (>= 6.0.0) + bindex (>= 0.4.0) + railties (>= 6.0.0) + webrick (1.9.0) + websocket-driver (0.7.6) + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.5) + xpath (3.2.0) + nokogiri (~> 1.8) + zeitwerk (2.7.1) + +PLATFORMS + arm64-darwin + +DEPENDENCIES + appraisal + benchmark-ips + capybara + cuprite + debug + fakefs + gem1! + gem2! + gem3! + gem4! + htmlbeautifier + maxitest + minitest-focus + minitest-spec-rails + phlex-testing-capybara + phlexible + proscenium! + puma + rails (~> 7.1.0) + rouge + rubocop + rubocop-minitest + rubocop-packaging + rubocop-performance + rubocop-rake + sqlite3 + view_component + web-console + +BUNDLED WITH + 2.5.22 diff --git a/gemfiles/rails_7.2.gemfile b/gemfiles/rails_7.2.gemfile new file mode 100644 index 00000000..de624647 --- /dev/null +++ b/gemfiles/rails_7.2.gemfile @@ -0,0 +1,39 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "debug" +gem "rails", "~> 7.2.0" +gem "appraisal" +gem "htmlbeautifier" +gem "phlexible" +gem "rouge" + +group :development do + gem "benchmark-ips" + gem "puma" + gem "rubocop" + gem "rubocop-minitest", require: false + gem "rubocop-packaging", require: false + gem "rubocop-performance", require: false + gem "rubocop-rake", require: false + gem "sqlite3" + gem "web-console" +end + +group :test do + gem "capybara" + gem "cuprite" + gem "fakefs", require: "fakefs/safe" + gem "gem1", path: "../fixtures/dummy/vendor/gem1" + gem "gem2", path: "../fixtures/external/gem2" + gem "gem3", path: "../fixtures/dummy/vendor/gem3" + gem "gem4", path: "../fixtures/external/gem4" + gem "maxitest" + gem "minitest-focus" + gem "minitest-spec-rails" + gem "phlex-testing-capybara" + gem "view_component" +end + +gemspec path: "../" diff --git a/gemfiles/rails_7.2.gemfile.lock b/gemfiles/rails_7.2.gemfile.lock new file mode 100644 index 00000000..a29e3740 --- /dev/null +++ b/gemfiles/rails_7.2.gemfile.lock @@ -0,0 +1,362 @@ +PATH + remote: ../fixtures/dummy/vendor/gem1 + specs: + gem1 (0.1.0) + rails (>= 7.0.4) + +PATH + remote: ../fixtures/dummy/vendor/gem3 + specs: + gem3 (0.1.0) + rails (>= 7.0.4) + +PATH + remote: ../fixtures/external/gem2 + specs: + gem2 (0.1.0) + rails (>= 7.0.4) + +PATH + remote: ../fixtures/external/gem4 + specs: + gem4 (0.1.0) + rails (>= 7.0.4) + +PATH + remote: .. + specs: + proscenium (0.18.0) + activesupport (>= 7.1.0, < 9.0) + ffi (~> 1.17.0) + literal (~> 1.0) + oj (~> 3.13) + railties (>= 7.1.0, < 9.0) + ruby-next (~> 1.0.1) + +GEM + remote: https://rubygems.org/ + specs: + actioncable (7.2.2) + actionpack (= 7.2.2) + activesupport (= 7.2.2) + nio4r (~> 2.0) + websocket-driver (>= 0.6.1) + zeitwerk (~> 2.6) + actionmailbox (7.2.2) + actionpack (= 7.2.2) + activejob (= 7.2.2) + activerecord (= 7.2.2) + activestorage (= 7.2.2) + activesupport (= 7.2.2) + mail (>= 2.8.0) + actionmailer (7.2.2) + actionpack (= 7.2.2) + actionview (= 7.2.2) + activejob (= 7.2.2) + activesupport (= 7.2.2) + mail (>= 2.8.0) + rails-dom-testing (~> 2.2) + actionpack (7.2.2) + actionview (= 7.2.2) + activesupport (= 7.2.2) + nokogiri (>= 1.8.5) + racc + rack (>= 2.2.4, < 3.2) + rack-session (>= 1.0.1) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.2) + rails-html-sanitizer (~> 1.6) + useragent (~> 0.16) + actiontext (7.2.2) + actionpack (= 7.2.2) + activerecord (= 7.2.2) + activestorage (= 7.2.2) + activesupport (= 7.2.2) + globalid (>= 0.6.0) + nokogiri (>= 1.8.5) + actionview (7.2.2) + activesupport (= 7.2.2) + builder (~> 3.1) + erubi (~> 1.11) + rails-dom-testing (~> 2.2) + rails-html-sanitizer (~> 1.6) + activejob (7.2.2) + activesupport (= 7.2.2) + globalid (>= 0.3.6) + activemodel (7.2.2) + activesupport (= 7.2.2) + activerecord (7.2.2) + activemodel (= 7.2.2) + activesupport (= 7.2.2) + timeout (>= 0.4.0) + activestorage (7.2.2) + actionpack (= 7.2.2) + activejob (= 7.2.2) + activerecord (= 7.2.2) + activesupport (= 7.2.2) + marcel (~> 1.0) + activesupport (7.2.2) + base64 + benchmark (>= 0.3) + bigdecimal + concurrent-ruby (~> 1.0, >= 1.3.1) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + logger (>= 1.4.2) + minitest (>= 5.1) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) + addressable (2.8.7) + public_suffix (>= 2.0.2, < 7.0) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + base64 (0.2.0) + benchmark (0.4.0) + benchmark-ips (2.14.0) + bigdecimal (3.1.8) + bindex (0.8.1) + builder (3.3.0) + capybara (3.40.0) + addressable + matrix + mini_mime (>= 0.1.3) + nokogiri (~> 1.11) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (>= 1.5, < 3.0) + xpath (~> 3.2) + concurrent-ruby (1.3.4) + connection_pool (2.4.1) + crass (1.0.6) + cuprite (0.15.1) + capybara (~> 3.0) + ferrum (~> 0.15.0) + date (3.4.0) + debug (1.9.2) + irb (~> 1.10) + reline (>= 0.3.8) + diff-lcs (1.5.1) + drb (2.2.1) + erubi (1.13.0) + fakefs (2.5.0) + ferrum (0.15) + addressable (~> 2.5) + concurrent-ruby (~> 1.1) + webrick (~> 1.7) + websocket-driver (~> 0.7) + ffi (1.17.0-arm64-darwin) + globalid (1.2.1) + activesupport (>= 6.1) + htmlbeautifier (1.4.3) + 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) + literal (1.1.0) + logger (1.6.1) + loofah (2.23.1) + crass (~> 1.0.2) + nokogiri (>= 1.12.0) + mail (2.8.1) + mini_mime (>= 0.1.1) + net-imap + net-pop + net-smtp + marcel (1.0.4) + matrix (0.4.2) + maxitest (5.8.0) + minitest (>= 5.14.0, < 5.26.0) + method_source (1.1.0) + mini_mime (1.1.5) + minitest (5.25.1) + minitest-focus (1.4.0) + minitest (>= 4, < 6) + minitest-spec-rails (7.4.1) + minitest (>= 5.0) + railties (>= 4.1) + net-imap (0.5.1) + date + net-protocol + net-pop (0.1.2) + net-protocol + net-protocol (0.2.2) + timeout + net-smtp (0.5.0) + net-protocol + nio4r (2.7.4) + nokogiri (1.16.7-arm64-darwin) + racc (~> 1.4) + oj (3.16.7) + bigdecimal (>= 3.0) + ostruct (>= 0.2) + ostruct (0.6.1) + paco (0.2.3) + parallel (1.26.3) + parser (3.3.6.0) + ast (~> 2.4.1) + racc + phlex (1.11.0) + phlex-rails (1.2.2) + phlex (>= 1.10, < 2) + railties (>= 6.1, < 9) + phlex-testing-capybara (0.1.0) + capybara (~> 3.38) + phlex (>= 0.5) + phlexible (2.0.0) + phlex (>= 1.10.0, < 2.0.0) + phlex-rails (>= 1.2.1, < 2.0.0) + psych (5.2.0) + stringio + public_suffix (6.0.1) + puma (6.4.3) + nio4r (~> 2.0) + 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.2.1) + rack (>= 3) + rails (7.2.2) + actioncable (= 7.2.2) + actionmailbox (= 7.2.2) + actionmailer (= 7.2.2) + actionpack (= 7.2.2) + actiontext (= 7.2.2) + actionview (= 7.2.2) + activejob (= 7.2.2) + activemodel (= 7.2.2) + activerecord (= 7.2.2) + activestorage (= 7.2.2) + activesupport (= 7.2.2) + bundler (>= 1.15.0) + railties (= 7.2.2) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest + nokogiri (>= 1.6) + rails-html-sanitizer (1.6.0) + loofah (~> 2.21) + nokogiri (~> 1.14) + railties (7.2.2) + actionpack (= 7.2.2) + activesupport (= 7.2.2) + irb (~> 1.13) + rackup (>= 1.0.0) + rake (>= 12.2) + thor (~> 1.0, >= 1.2.2) + zeitwerk (~> 2.6) + rainbow (3.1.1) + rake (13.2.1) + rdoc (6.8.1) + psych (>= 4.0.0) + regexp_parser (2.9.2) + reline (0.5.11) + io-console (~> 0.5) + require-hooks (0.2.2) + rouge (4.5.1) + rubocop (1.68.0) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 2.4, < 3.0) + rubocop-ast (>= 1.32.2, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.36.1) + parser (>= 3.3.1.0) + rubocop-minitest (0.36.0) + rubocop (>= 1.61, < 2.0) + rubocop-ast (>= 1.31.1, < 2.0) + rubocop-packaging (0.5.2) + rubocop (>= 1.33, < 2.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) + ruby-next (1.0.3) + paco (~> 0.2) + require-hooks (~> 0.2) + ruby-next-core (= 1.0.3) + ruby-next-parser (>= 3.2.2.0) + unparser (~> 0.6.0) + ruby-next-core (1.0.3) + ruby-next-parser (3.2.2.0) + parser (>= 3.0.3.1) + ruby-progressbar (1.13.0) + securerandom (0.3.2) + sqlite3 (2.2.0-arm64-darwin) + stringio (3.1.2) + thor (1.3.2) + timeout (0.4.2) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.6.0) + unparser (0.6.15) + diff-lcs (~> 1.3) + parser (>= 3.3.0) + useragent (0.16.10) + view_component (3.20.0) + activesupport (>= 5.2.0, < 8.1) + concurrent-ruby (~> 1.0) + method_source (~> 1.0) + web-console (4.2.1) + actionview (>= 6.0.0) + activemodel (>= 6.0.0) + bindex (>= 0.4.0) + railties (>= 6.0.0) + webrick (1.9.0) + websocket-driver (0.7.6) + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.5) + xpath (3.2.0) + nokogiri (~> 1.8) + zeitwerk (2.7.1) + +PLATFORMS + arm64-darwin + +DEPENDENCIES + appraisal + benchmark-ips + capybara + cuprite + debug + fakefs + gem1! + gem2! + gem3! + gem4! + htmlbeautifier + maxitest + minitest-focus + minitest-spec-rails + phlex-testing-capybara + phlexible + proscenium! + puma + rails (~> 7.2.0) + rouge + rubocop + rubocop-minitest + rubocop-packaging + rubocop-performance + rubocop-rake + sqlite3 + view_component + web-console + +BUNDLED WITH + 2.5.22 diff --git a/gemfiles/rails_8.gemfile b/gemfiles/rails_8.gemfile new file mode 100644 index 00000000..f3948363 --- /dev/null +++ b/gemfiles/rails_8.gemfile @@ -0,0 +1,39 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "debug" +gem "rails", "~> 8.0.0" +gem "appraisal" +gem "htmlbeautifier" +gem "phlexible" +gem "rouge" + +group :development do + gem "benchmark-ips" + gem "puma" + gem "rubocop" + gem "rubocop-minitest", require: false + gem "rubocop-packaging", require: false + gem "rubocop-performance", require: false + gem "rubocop-rake", require: false + gem "sqlite3" + gem "web-console" +end + +group :test do + gem "capybara" + gem "cuprite" + gem "fakefs", require: "fakefs/safe" + gem "gem1", path: "../fixtures/dummy/vendor/gem1" + gem "gem2", path: "../fixtures/external/gem2" + gem "gem3", path: "../fixtures/dummy/vendor/gem3" + gem "gem4", path: "../fixtures/external/gem4" + gem "maxitest" + gem "minitest-focus" + gem "minitest-spec-rails" + gem "phlex-testing-capybara" + gem "view_component" +end + +gemspec path: "../" diff --git a/gemfiles/rails_8.gemfile.lock b/gemfiles/rails_8.gemfile.lock new file mode 100644 index 00000000..54d620ff --- /dev/null +++ b/gemfiles/rails_8.gemfile.lock @@ -0,0 +1,363 @@ +PATH + remote: ../fixtures/dummy/vendor/gem1 + specs: + gem1 (0.1.0) + rails (>= 7.0.4) + +PATH + remote: ../fixtures/dummy/vendor/gem3 + specs: + gem3 (0.1.0) + rails (>= 7.0.4) + +PATH + remote: ../fixtures/external/gem2 + specs: + gem2 (0.1.0) + rails (>= 7.0.4) + +PATH + remote: ../fixtures/external/gem4 + specs: + gem4 (0.1.0) + rails (>= 7.0.4) + +PATH + remote: .. + specs: + proscenium (0.18.0) + activesupport (>= 7.1.0, < 9.0) + ffi (~> 1.17.0) + literal (~> 1.0) + oj (~> 3.13) + railties (>= 7.1.0, < 9.0) + ruby-next (~> 1.0.1) + +GEM + remote: https://rubygems.org/ + specs: + actioncable (8.0.0) + actionpack (= 8.0.0) + activesupport (= 8.0.0) + nio4r (~> 2.0) + websocket-driver (>= 0.6.1) + zeitwerk (~> 2.6) + actionmailbox (8.0.0) + actionpack (= 8.0.0) + activejob (= 8.0.0) + activerecord (= 8.0.0) + activestorage (= 8.0.0) + activesupport (= 8.0.0) + mail (>= 2.8.0) + actionmailer (8.0.0) + actionpack (= 8.0.0) + actionview (= 8.0.0) + activejob (= 8.0.0) + activesupport (= 8.0.0) + mail (>= 2.8.0) + rails-dom-testing (~> 2.2) + actionpack (8.0.0) + actionview (= 8.0.0) + activesupport (= 8.0.0) + nokogiri (>= 1.8.5) + rack (>= 2.2.4) + rack-session (>= 1.0.1) + rack-test (>= 0.6.3) + rails-dom-testing (~> 2.2) + rails-html-sanitizer (~> 1.6) + useragent (~> 0.16) + actiontext (8.0.0) + actionpack (= 8.0.0) + activerecord (= 8.0.0) + activestorage (= 8.0.0) + activesupport (= 8.0.0) + globalid (>= 0.6.0) + nokogiri (>= 1.8.5) + actionview (8.0.0) + activesupport (= 8.0.0) + builder (~> 3.1) + erubi (~> 1.11) + rails-dom-testing (~> 2.2) + rails-html-sanitizer (~> 1.6) + activejob (8.0.0) + activesupport (= 8.0.0) + globalid (>= 0.3.6) + activemodel (8.0.0) + activesupport (= 8.0.0) + activerecord (8.0.0) + activemodel (= 8.0.0) + activesupport (= 8.0.0) + timeout (>= 0.4.0) + activestorage (8.0.0) + actionpack (= 8.0.0) + activejob (= 8.0.0) + activerecord (= 8.0.0) + activesupport (= 8.0.0) + marcel (~> 1.0) + activesupport (8.0.0) + base64 + benchmark (>= 0.3) + bigdecimal + concurrent-ruby (~> 1.0, >= 1.3.1) + connection_pool (>= 2.2.5) + drb + i18n (>= 1.6, < 2) + logger (>= 1.4.2) + minitest (>= 5.1) + securerandom (>= 0.3) + tzinfo (~> 2.0, >= 2.0.5) + uri (>= 0.13.1) + addressable (2.8.7) + public_suffix (>= 2.0.2, < 7.0) + appraisal (2.5.0) + bundler + rake + thor (>= 0.14.0) + ast (2.4.2) + base64 (0.2.0) + benchmark (0.4.0) + benchmark-ips (2.14.0) + bigdecimal (3.1.8) + bindex (0.8.1) + builder (3.3.0) + capybara (3.40.0) + addressable + matrix + mini_mime (>= 0.1.3) + nokogiri (~> 1.11) + rack (>= 1.6.0) + rack-test (>= 0.6.3) + regexp_parser (>= 1.5, < 3.0) + xpath (~> 3.2) + concurrent-ruby (1.3.4) + connection_pool (2.4.1) + crass (1.0.6) + cuprite (0.15.1) + capybara (~> 3.0) + ferrum (~> 0.15.0) + date (3.4.0) + debug (1.9.2) + irb (~> 1.10) + reline (>= 0.3.8) + diff-lcs (1.5.1) + drb (2.2.1) + erubi (1.13.0) + fakefs (2.5.0) + ferrum (0.15) + addressable (~> 2.5) + concurrent-ruby (~> 1.1) + webrick (~> 1.7) + websocket-driver (~> 0.7) + ffi (1.17.0-arm64-darwin) + globalid (1.2.1) + activesupport (>= 6.1) + htmlbeautifier (1.4.3) + 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) + literal (1.1.0) + logger (1.6.1) + loofah (2.23.1) + crass (~> 1.0.2) + nokogiri (>= 1.12.0) + mail (2.8.1) + mini_mime (>= 0.1.1) + net-imap + net-pop + net-smtp + marcel (1.0.4) + matrix (0.4.2) + maxitest (5.8.0) + minitest (>= 5.14.0, < 5.26.0) + method_source (1.1.0) + mini_mime (1.1.5) + minitest (5.25.1) + minitest-focus (1.4.0) + minitest (>= 4, < 6) + minitest-spec-rails (7.4.1) + minitest (>= 5.0) + railties (>= 4.1) + net-imap (0.5.1) + date + net-protocol + net-pop (0.1.2) + net-protocol + net-protocol (0.2.2) + timeout + net-smtp (0.5.0) + net-protocol + nio4r (2.7.4) + nokogiri (1.16.7-arm64-darwin) + racc (~> 1.4) + oj (3.16.7) + bigdecimal (>= 3.0) + ostruct (>= 0.2) + ostruct (0.6.1) + paco (0.2.3) + parallel (1.26.3) + parser (3.3.6.0) + ast (~> 2.4.1) + racc + phlex (1.11.0) + phlex-rails (1.2.2) + phlex (>= 1.10, < 2) + railties (>= 6.1, < 9) + phlex-testing-capybara (0.1.0) + capybara (~> 3.38) + phlex (>= 0.5) + phlexible (2.0.0) + phlex (>= 1.10.0, < 2.0.0) + phlex-rails (>= 1.2.1, < 2.0.0) + psych (5.2.0) + stringio + public_suffix (6.0.1) + puma (6.4.3) + nio4r (~> 2.0) + 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.2.1) + rack (>= 3) + rails (8.0.0) + actioncable (= 8.0.0) + actionmailbox (= 8.0.0) + actionmailer (= 8.0.0) + actionpack (= 8.0.0) + actiontext (= 8.0.0) + actionview (= 8.0.0) + activejob (= 8.0.0) + activemodel (= 8.0.0) + activerecord (= 8.0.0) + activestorage (= 8.0.0) + activesupport (= 8.0.0) + bundler (>= 1.15.0) + railties (= 8.0.0) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest + nokogiri (>= 1.6) + rails-html-sanitizer (1.6.0) + loofah (~> 2.21) + nokogiri (~> 1.14) + railties (8.0.0) + actionpack (= 8.0.0) + activesupport (= 8.0.0) + irb (~> 1.13) + rackup (>= 1.0.0) + rake (>= 12.2) + thor (~> 1.0, >= 1.2.2) + zeitwerk (~> 2.6) + rainbow (3.1.1) + rake (13.2.1) + rdoc (6.8.1) + psych (>= 4.0.0) + regexp_parser (2.9.2) + reline (0.5.11) + io-console (~> 0.5) + require-hooks (0.2.2) + rouge (4.5.1) + rubocop (1.68.0) + json (~> 2.3) + language_server-protocol (>= 3.17.0) + parallel (~> 1.10) + parser (>= 3.3.0.2) + rainbow (>= 2.2.2, < 4.0) + regexp_parser (>= 2.4, < 3.0) + rubocop-ast (>= 1.32.2, < 2.0) + ruby-progressbar (~> 1.7) + unicode-display_width (>= 2.4.0, < 3.0) + rubocop-ast (1.36.1) + parser (>= 3.3.1.0) + rubocop-minitest (0.36.0) + rubocop (>= 1.61, < 2.0) + rubocop-ast (>= 1.31.1, < 2.0) + rubocop-packaging (0.5.2) + rubocop (>= 1.33, < 2.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) + ruby-next (1.0.3) + paco (~> 0.2) + require-hooks (~> 0.2) + ruby-next-core (= 1.0.3) + ruby-next-parser (>= 3.2.2.0) + unparser (~> 0.6.0) + ruby-next-core (1.0.3) + ruby-next-parser (3.2.2.0) + parser (>= 3.0.3.1) + ruby-progressbar (1.13.0) + securerandom (0.3.2) + sqlite3 (2.2.0-arm64-darwin) + stringio (3.1.2) + thor (1.3.2) + timeout (0.4.2) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.6.0) + unparser (0.6.15) + diff-lcs (~> 1.3) + parser (>= 3.3.0) + uri (1.0.2) + useragent (0.16.10) + view_component (3.20.0) + activesupport (>= 5.2.0, < 8.1) + concurrent-ruby (~> 1.0) + method_source (~> 1.0) + web-console (4.2.1) + actionview (>= 6.0.0) + activemodel (>= 6.0.0) + bindex (>= 0.4.0) + railties (>= 6.0.0) + webrick (1.9.0) + websocket-driver (0.7.6) + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.5) + xpath (3.2.0) + nokogiri (~> 1.8) + zeitwerk (2.7.1) + +PLATFORMS + arm64-darwin + +DEPENDENCIES + appraisal + benchmark-ips + capybara + cuprite + debug + fakefs + gem1! + gem2! + gem3! + gem4! + htmlbeautifier + maxitest + minitest-focus + minitest-spec-rails + phlex-testing-capybara + phlexible + proscenium! + puma + rails (~> 8.0.0) + rouge + rubocop + rubocop-minitest + rubocop-packaging + rubocop-performance + rubocop-rake + sqlite3 + view_component + web-console + +BUNDLED WITH + 2.5.22 diff --git a/proscenium.gemspec b/proscenium.gemspec index 0efd2254..995aa674 100644 --- a/proscenium.gemspec +++ b/proscenium.gemspec @@ -27,10 +27,10 @@ Gem::Specification.new do |spec| 'LICENSE.txt'] spec.require_paths = ['lib'] - spec.add_dependency 'activesupport', ['>= 7.1.0', '< 8.0'] + spec.add_dependency 'activesupport', ['>= 7.1.0', '< 9.0'] spec.add_dependency 'ffi', '~> 1.17.0' spec.add_dependency 'literal', '~> 1.0' spec.add_dependency 'oj', '~> 3.13' - spec.add_dependency 'railties', ['>= 7.1.0', '< 8.0'] + spec.add_dependency 'railties', ['>= 7.1.0', '< 9.0'] spec.add_dependency 'ruby-next', '~> 1.0.1' end