From 03cada60e928b9d86beb3d3fee5949977daf0069 Mon Sep 17 00:00:00 2001 From: Chris Oliver Date: Tue, 12 Nov 2024 09:19:42 -0600 Subject: [PATCH] Add Rails 8.0 appraisal --- .github/workflows/ci.yml | 33 +- Appraisals | 14 +- Gemfile | 2 +- Gemfile.lock | 15 +- .../{rails_6_1.gemfile => rails_6.1.gemfile} | 2 +- ..._1.gemfile.lock => rails_6.1.gemfile.lock} | 15 +- .../{rails_7.gemfile => rails_7.0.gemfile} | 2 +- ..._7.gemfile.lock => rails_7.0.gemfile.lock} | 15 +- .../{rails_7_1.gemfile => rails_7.1.gemfile} | 2 +- ..._1.gemfile.lock => rails_7.1.gemfile.lock} | 15 +- .../{rails_7_2.gemfile => rails_7.2.gemfile} | 4 +- ..._2.gemfile.lock => rails_7.2.gemfile.lock} | 17 +- gemfiles/rails_8.0.gemfile | 30 ++ gemfiles/rails_8.0.gemfile.lock | 360 ++++++++++++++++++ gemfiles/rails_main.gemfile | 4 +- gemfiles/rails_main.gemfile.lock | 17 +- 16 files changed, 456 insertions(+), 91 deletions(-) rename gemfiles/{rails_6_1.gemfile => rails_6.1.gemfile} (89%) rename gemfiles/{rails_6_1.gemfile.lock => rails_6.1.gemfile.lock} (98%) rename gemfiles/{rails_7.gemfile => rails_7.0.gemfile} (89%) rename gemfiles/{rails_7.gemfile.lock => rails_7.0.gemfile.lock} (98%) rename gemfiles/{rails_7_1.gemfile => rails_7.1.gemfile} (89%) rename gemfiles/{rails_7_1.gemfile.lock => rails_7.1.gemfile.lock} (98%) rename gemfiles/{rails_7_2.gemfile => rails_7.2.gemfile} (85%) rename gemfiles/{rails_7_2.gemfile.lock => rails_7.2.gemfile.lock} (98%) create mode 100644 gemfiles/rails_8.0.gemfile create mode 100644 gemfiles/rails_8.0.gemfile.lock diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2134fb2..e4a47ed8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,12 +14,13 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby: ['3.2', '3.3'] + ruby: ["3.2", "3.3"] gemfile: - - rails_6_1 - - rails_7 - - rails_7_1 - - rails_7_2 + - rails_6.1 + - rails_7.0 + - rails_7.1 + - rails_7.2 + - rails_8.0 - rails_main env: @@ -51,12 +52,13 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby: ['3.2', '3.3'] + ruby: ["3.2", "3.3"] gemfile: - - rails_6_1 - - rails_7 - - rails_7_1 - - rails_7_2 + - rails_6.1 + - rails_7.0 + - rails_7.1 + - rails_7.2 + - rails_8.0 - rails_main env: BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile @@ -94,12 +96,13 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby: ['3.2', '3.3'] + ruby: ["3.2", "3.3"] gemfile: - - rails_6_1 - - rails_7 - - rails_7_1 - - rails_7_2 + - rails_6.1 + - rails_7.0 + - rails_7.1 + - rails_7.2 + - rails_8.0 - rails_main env: BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile diff --git a/Appraisals b/Appraisals index fe978c6e..9d3b5c8a 100644 --- a/Appraisals +++ b/Appraisals @@ -1,24 +1,26 @@ -appraise "rails-6-1" do +appraise "rails-6.1" do gem "rails", "~> 6.1.0" gem "sqlite3", "~> 1.4" end -appraise "rails-7" do +appraise "rails-7.0" do gem "rails", "~> 7.0.0" gem "sqlite3", "~> 1.4" end -appraise "rails-7-1" do +appraise "rails-7.1" do gem "rails", "~> 7.1.0" gem "sqlite3", "~> 1.4" end -appraise "rails-7-2" do +appraise "rails-7.2" do gem "rails", "~> 7.2.0.rc1" - gem "sqlite3", "~> 2.0" +end + +appraise "rails-8.0" do + gem "rails", "~> 8.0.0" end appraise "rails-main" do gem "rails", github: "rails/rails", branch: "main" - gem "sqlite3", "~> 2.0" end diff --git a/Gemfile b/Gemfile index 8b9d46c1..95865afc 100644 --- a/Gemfile +++ b/Gemfile @@ -11,7 +11,7 @@ gemspec # Git. Remember to move these dependencies to your gemspec before releasing # your gem to rubygems.org. -gem "appraisal", github: "thoughtbot/appraisal" +gem "appraisal" gem "mocha" gem "standard" gem "vcr" diff --git a/Gemfile.lock b/Gemfile.lock index 12d3b1f7..6ef5c3aa 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,12 +1,3 @@ -GIT - remote: https://github.com/thoughtbot/appraisal.git - revision: 602cdd9b5f8cb8f36992733422f69312b172f427 - specs: - appraisal (3.0.0.rc1) - bundler - rake - thor (>= 0.14.0) - PATH remote: . specs: @@ -88,6 +79,10 @@ GEM tzinfo (~> 2.0, >= 2.0.5) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) + appraisal (3.0.0.rc1) + bundler + rake + thor (>= 0.14.0) ast (2.4.2) base64 (0.2.0) bigdecimal (3.1.8) @@ -314,7 +309,7 @@ PLATFORMS x86_64-linux DEPENDENCIES - appraisal! + appraisal braintree (>= 2.92.0) importmap-rails lemonsqueezy (~> 1.0) diff --git a/gemfiles/rails_6_1.gemfile b/gemfiles/rails_6.1.gemfile similarity index 89% rename from gemfiles/rails_6_1.gemfile rename to gemfiles/rails_6.1.gemfile index d7e93715..fc4e2fd1 100644 --- a/gemfiles/rails_6_1.gemfile +++ b/gemfiles/rails_6.1.gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" -gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git" +gem "appraisal" gem "mocha" gem "standard" gem "vcr" diff --git a/gemfiles/rails_6_1.gemfile.lock b/gemfiles/rails_6.1.gemfile.lock similarity index 98% rename from gemfiles/rails_6_1.gemfile.lock rename to gemfiles/rails_6.1.gemfile.lock index 09ff3059..7d31c1db 100644 --- a/gemfiles/rails_6_1.gemfile.lock +++ b/gemfiles/rails_6.1.gemfile.lock @@ -1,12 +1,3 @@ -GIT - remote: https://github.com/thoughtbot/appraisal.git - revision: 602cdd9b5f8cb8f36992733422f69312b172f427 - specs: - appraisal (3.0.0.rc1) - bundler - rake - thor (>= 0.14.0) - PATH remote: .. specs: @@ -77,6 +68,10 @@ GEM zeitwerk (~> 2.3) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) + appraisal (3.0.0.rc1) + bundler + rake + thor (>= 0.14.0) ast (2.4.2) base64 (0.2.0) bigdecimal (3.1.8) @@ -284,7 +279,7 @@ PLATFORMS x86_64-linux DEPENDENCIES - appraisal! + appraisal braintree (>= 2.92.0) importmap-rails lemonsqueezy (~> 1.0) diff --git a/gemfiles/rails_7.gemfile b/gemfiles/rails_7.0.gemfile similarity index 89% rename from gemfiles/rails_7.gemfile rename to gemfiles/rails_7.0.gemfile index 1b5e20fb..247a1552 100644 --- a/gemfiles/rails_7.gemfile +++ b/gemfiles/rails_7.0.gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" -gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git" +gem "appraisal" gem "mocha" gem "standard" gem "vcr" diff --git a/gemfiles/rails_7.gemfile.lock b/gemfiles/rails_7.0.gemfile.lock similarity index 98% rename from gemfiles/rails_7.gemfile.lock rename to gemfiles/rails_7.0.gemfile.lock index 16731a8a..f5808d26 100644 --- a/gemfiles/rails_7.gemfile.lock +++ b/gemfiles/rails_7.0.gemfile.lock @@ -1,12 +1,3 @@ -GIT - remote: https://github.com/thoughtbot/appraisal.git - revision: 602cdd9b5f8cb8f36992733422f69312b172f427 - specs: - appraisal (3.0.0.rc1) - bundler - rake - thor (>= 0.14.0) - PATH remote: .. specs: @@ -83,6 +74,10 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) + appraisal (3.0.0.rc1) + bundler + rake + thor (>= 0.14.0) ast (2.4.2) base64 (0.2.0) bigdecimal (3.1.8) @@ -290,7 +285,7 @@ PLATFORMS x86_64-linux DEPENDENCIES - appraisal! + appraisal braintree (>= 2.92.0) importmap-rails lemonsqueezy (~> 1.0) diff --git a/gemfiles/rails_7_1.gemfile b/gemfiles/rails_7.1.gemfile similarity index 89% rename from gemfiles/rails_7_1.gemfile rename to gemfiles/rails_7.1.gemfile index 75335575..3aca06ad 100644 --- a/gemfiles/rails_7_1.gemfile +++ b/gemfiles/rails_7.1.gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" -gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git" +gem "appraisal" gem "mocha" gem "standard" gem "vcr" diff --git a/gemfiles/rails_7_1.gemfile.lock b/gemfiles/rails_7.1.gemfile.lock similarity index 98% rename from gemfiles/rails_7_1.gemfile.lock rename to gemfiles/rails_7.1.gemfile.lock index cfcc3fe3..dc9edb0d 100644 --- a/gemfiles/rails_7_1.gemfile.lock +++ b/gemfiles/rails_7.1.gemfile.lock @@ -1,12 +1,3 @@ -GIT - remote: https://github.com/thoughtbot/appraisal.git - revision: 602cdd9b5f8cb8f36992733422f69312b172f427 - specs: - appraisal (3.0.0.rc1) - bundler - rake - thor (>= 0.14.0) - PATH remote: .. specs: @@ -92,6 +83,10 @@ GEM tzinfo (~> 2.0) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) + appraisal (3.0.0.rc1) + bundler + rake + thor (>= 0.14.0) ast (2.4.2) base64 (0.2.0) bigdecimal (3.1.8) @@ -316,7 +311,7 @@ PLATFORMS x86_64-linux DEPENDENCIES - appraisal! + appraisal braintree (>= 2.92.0) importmap-rails lemonsqueezy (~> 1.0) diff --git a/gemfiles/rails_7_2.gemfile b/gemfiles/rails_7.2.gemfile similarity index 85% rename from gemfiles/rails_7_2.gemfile rename to gemfiles/rails_7.2.gemfile index 3a9e5396..621a1eec 100644 --- a/gemfiles/rails_7_2.gemfile +++ b/gemfiles/rails_7.2.gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" -gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git" +gem "appraisal" gem "mocha" gem "standard" gem "vcr" @@ -15,7 +15,7 @@ gem "prawn" gem "receipts" gem "mysql2" gem "pg" -gem "sqlite3", "~> 2.0" +gem "sqlite3" gem "puma" gem "web-console", group: :development gem "importmap-rails" diff --git a/gemfiles/rails_7_2.gemfile.lock b/gemfiles/rails_7.2.gemfile.lock similarity index 98% rename from gemfiles/rails_7_2.gemfile.lock rename to gemfiles/rails_7.2.gemfile.lock index 2a8c7df8..1b993c5a 100644 --- a/gemfiles/rails_7_2.gemfile.lock +++ b/gemfiles/rails_7.2.gemfile.lock @@ -1,12 +1,3 @@ -GIT - remote: https://github.com/thoughtbot/appraisal.git - revision: 602cdd9b5f8cb8f36992733422f69312b172f427 - specs: - appraisal (3.0.0.rc1) - bundler - rake - thor (>= 0.14.0) - PATH remote: .. specs: @@ -88,6 +79,10 @@ GEM tzinfo (~> 2.0, >= 2.0.5) addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) + appraisal (3.0.0.rc1) + bundler + rake + thor (>= 0.14.0) ast (2.4.2) base64 (0.2.0) bigdecimal (3.1.8) @@ -316,7 +311,7 @@ PLATFORMS x86_64-linux DEPENDENCIES - appraisal! + appraisal braintree (>= 2.92.0) importmap-rails lemonsqueezy (~> 1.0) @@ -333,7 +328,7 @@ DEPENDENCIES rails (~> 7.2.0.rc1) receipts sprockets-rails - sqlite3 (~> 2.0) + sqlite3 standard stimulus-rails stripe (~> 13.0) diff --git a/gemfiles/rails_8.0.gemfile b/gemfiles/rails_8.0.gemfile new file mode 100644 index 00000000..e01c9b90 --- /dev/null +++ b/gemfiles/rails_8.0.gemfile @@ -0,0 +1,30 @@ +# This file was generated by Appraisal + +source "https://rubygems.org" + +gem "appraisal" +gem "mocha" +gem "standard" +gem "vcr" +gem "webmock" +gem "braintree", ">= 2.92.0" +gem "lemonsqueezy", "~> 1.0" +gem "paddle", "~> 2.6" +gem "stripe", "~> 13.0" +gem "prawn" +gem "receipts" +gem "mysql2" +gem "pg" +gem "sqlite3" +gem "puma" +gem "web-console", group: :development +gem "importmap-rails" +gem "sprockets-rails" +gem "stimulus-rails" +gem "turbo-rails" +gem "net-imap", require: false +gem "net-pop", require: false +gem "net-smtp", require: false +gem "rails", "~> 8.0.0" + +gemspec path: "../" diff --git a/gemfiles/rails_8.0.gemfile.lock b/gemfiles/rails_8.0.gemfile.lock new file mode 100644 index 00000000..bf8f9769 --- /dev/null +++ b/gemfiles/rails_8.0.gemfile.lock @@ -0,0 +1,360 @@ +PATH + remote: .. + specs: + pay (8.1.3) + rails (>= 6.0.0) + +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) + bigdecimal (3.1.8) + bindex (0.8.1) + braintree (4.23.0) + builder (>= 3.2.4) + rexml (>= 3.1.9) + builder (3.3.0) + concurrent-ruby (1.3.4) + connection_pool (2.4.1) + crack (1.0.0) + bigdecimal + rexml + crass (1.0.6) + date (3.4.0) + drb (2.2.1) + erubi (1.13.0) + faraday (2.11.0) + faraday-net_http (>= 2.0, < 3.4) + logger + faraday-net_http (3.3.0) + net-http + globalid (1.2.1) + activesupport (>= 6.1) + hashdiff (1.1.2) + i18n (1.14.6) + concurrent-ruby (~> 1.0) + importmap-rails (2.0.3) + actionpack (>= 6.0.0) + activesupport (>= 6.0.0) + railties (>= 6.0.0) + io-console (0.7.2) + irb (1.14.1) + rdoc (>= 4.0.0) + reline (>= 0.4.2) + json (2.8.1) + language_server-protocol (3.17.0.3) + lemonsqueezy (1.0.1) + faraday (~> 2.0) + lint_roller (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) + mini_mime (1.1.5) + minitest (5.25.1) + mocha (2.5.0) + ruby2_keywords (>= 0.0.5) + mysql2 (0.5.6) + net-http (0.5.0) + uri + 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-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) + ostruct (0.6.1) + paddle (2.6.0) + faraday (~> 2.11.0) + ostruct (~> 0.6.0) + parallel (1.26.3) + parser (3.3.6.0) + ast (~> 2.4.1) + racc + pdf-core (0.10.0) + pg (1.5.9) + prawn (2.5.0) + matrix (~> 0.4) + pdf-core (~> 0.10.0) + ttfunk (~> 1.8) + prawn-table (0.2.2) + prawn (>= 1.3.0, < 3.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.0) + 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.7.0) + psych (>= 4.0.0) + receipts (2.4.0) + prawn (>= 1.3.0, < 3.0.0) + prawn-table (~> 0.2.1) + regexp_parser (2.9.2) + reline (0.5.11) + io-console (~> 0.5) + rexml (3.3.9) + rubocop (1.66.1) + 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.35.0) + parser (>= 3.3.1.0) + rubocop-performance (1.22.1) + rubocop (>= 1.48.1, < 2.0) + rubocop-ast (>= 1.31.1, < 2.0) + ruby-progressbar (1.13.0) + ruby2_keywords (0.0.5) + securerandom (0.3.2) + sprockets (4.2.1) + concurrent-ruby (~> 1.0) + rack (>= 2.2.4, < 4) + sprockets-rails (3.5.2) + actionpack (>= 6.1) + activesupport (>= 6.1) + sprockets (>= 3.0.0) + sqlite3 (2.2.0-aarch64-linux-gnu) + sqlite3 (2.2.0-aarch64-linux-musl) + sqlite3 (2.2.0-arm-linux-gnu) + sqlite3 (2.2.0-arm-linux-musl) + sqlite3 (2.2.0-arm64-darwin) + sqlite3 (2.2.0-x86-linux-gnu) + sqlite3 (2.2.0-x86-linux-musl) + sqlite3 (2.2.0-x86_64-darwin) + sqlite3 (2.2.0-x86_64-linux-gnu) + sqlite3 (2.2.0-x86_64-linux-musl) + standard (1.41.1) + language_server-protocol (~> 3.17.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.66.0) + standard-custom (~> 1.0.0) + standard-performance (~> 1.5) + standard-custom (1.0.2) + lint_roller (~> 1.0) + rubocop (~> 1.50) + standard-performance (1.5.0) + lint_roller (~> 1.1) + rubocop-performance (~> 1.22.0) + stimulus-rails (1.3.4) + railties (>= 6.0.0) + stringio (3.1.2) + stripe (13.1.1) + thor (1.3.2) + timeout (0.4.2) + ttfunk (1.8.0) + bigdecimal (~> 3.1) + turbo-rails (2.0.11) + actionpack (>= 6.0.0) + railties (>= 6.0.0) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + unicode-display_width (2.6.0) + uri (1.0.1) + useragent (0.16.10) + vcr (6.3.1) + base64 + web-console (4.2.1) + actionview (>= 6.0.0) + activemodel (>= 6.0.0) + bindex (>= 0.4.0) + railties (>= 6.0.0) + webmock (3.24.0) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) + websocket-driver (0.7.6) + websocket-extensions (>= 0.1.0) + websocket-extensions (0.1.5) + zeitwerk (2.7.1) + +PLATFORMS + aarch64-linux + aarch64-linux-gnu + aarch64-linux-musl + arm-linux + arm-linux-gnu + arm-linux-musl + arm64-darwin + x86-linux + x86-linux-gnu + x86-linux-musl + x86_64-darwin + x86_64-linux + x86_64-linux-gnu + x86_64-linux-musl + +DEPENDENCIES + appraisal + braintree (>= 2.92.0) + importmap-rails + lemonsqueezy (~> 1.0) + mocha + mysql2 + net-imap + net-pop + net-smtp + paddle (~> 2.6) + pay! + pg + prawn + puma + rails (~> 8.0.0) + receipts + sprockets-rails + sqlite3 + standard + stimulus-rails + stripe (~> 13.0) + turbo-rails + vcr + web-console + webmock + +BUNDLED WITH + 2.5.18 diff --git a/gemfiles/rails_main.gemfile b/gemfiles/rails_main.gemfile index 30166755..a321aa8a 100644 --- a/gemfiles/rails_main.gemfile +++ b/gemfiles/rails_main.gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" -gem "appraisal", git: "https://github.com/thoughtbot/appraisal.git" +gem "appraisal" gem "mocha" gem "standard" gem "vcr" @@ -15,7 +15,7 @@ gem "prawn" gem "receipts" gem "mysql2" gem "pg" -gem "sqlite3", "~> 2.0" +gem "sqlite3" gem "puma" gem "web-console", group: :development gem "importmap-rails" diff --git a/gemfiles/rails_main.gemfile.lock b/gemfiles/rails_main.gemfile.lock index 76b097f5..38cb31dd 100644 --- a/gemfiles/rails_main.gemfile.lock +++ b/gemfiles/rails_main.gemfile.lock @@ -97,15 +97,6 @@ GIT thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) -GIT - remote: https://github.com/thoughtbot/appraisal.git - revision: 602cdd9b5f8cb8f36992733422f69312b172f427 - specs: - appraisal (3.0.0.rc1) - bundler - rake - thor (>= 0.14.0) - PATH remote: .. specs: @@ -117,6 +108,10 @@ GEM specs: addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) + appraisal (3.0.0.rc1) + bundler + rake + thor (>= 0.14.0) ast (2.4.2) base64 (0.2.0) benchmark (0.3.0) @@ -324,7 +319,7 @@ PLATFORMS x86_64-linux DEPENDENCIES - appraisal! + appraisal braintree (>= 2.92.0) importmap-rails lemonsqueezy (~> 1.0) @@ -341,7 +336,7 @@ DEPENDENCIES rails! receipts sprockets-rails - sqlite3 (~> 2.0) + sqlite3 standard stimulus-rails stripe (~> 13.0)