From 0de9722a6f7a3c1f6879a74d262aedd1fd776b10 Mon Sep 17 00:00:00 2001 From: Geremia Taglialatela Date: Fri, 11 Oct 2024 10:11:15 +0200 Subject: [PATCH] Improve CI - Test against Rails 7.2 - Test against Ruby 3.3 - Make lockfile platforms easier to maintain (ref: activeadmin/activeadmin#8344) - Update bundles by using the minimum supported ruby version --- .github/workflows/minitest.yml | 11 +- README.md | 5 +- build.sh | 3 +- gemfiles/rails_6_1_4.gemfile | 2 + gemfiles/rails_6_1_4.gemfile.lock | 80 ++++++------- gemfiles/rails_7_0.gemfile | 2 + gemfiles/rails_7_0.gemfile.lock | 130 ++++++++++---------- gemfiles/rails_7_1.gemfile | 2 + gemfiles/rails_7_1.gemfile.lock | 127 ++++++++++---------- gemfiles/rails_7_2.gemfile | 5 + gemfiles/rails_7_2.gemfile.lock | 190 ++++++++++++++++++++++++++++++ gemfiles/rails_next.gemfile.lock | 2 +- 12 files changed, 392 insertions(+), 167 deletions(-) create mode 100644 gemfiles/rails_7_2.gemfile create mode 100644 gemfiles/rails_7_2.gemfile.lock diff --git a/.github/workflows/minitest.yml b/.github/workflows/minitest.yml index 18754708..fc278124 100644 --- a/.github/workflows/minitest.yml +++ b/.github/workflows/minitest.yml @@ -9,29 +9,36 @@ jobs: - '3.0' - '3.1' - '3.2' + - '3.3' gemfile: - rails_6_1_4 - rails_7_0 - rails_7_1 + - rails_7_2 - rails_next image_processor: - vips - mini_magick exclude: + # ruby 3.3 only supports rails 7.0+ + - ruby: '3.3' + gemfile: rails_6_1_4 # ruby 3.2 only supports rails 7.0+ - ruby: '3.2' gemfile: rails_6_1_4 # ruby 3.1 only supports rails 7.0+ - ruby: '3.1' gemfile: rails_6_1_4 - # ruby 3.0 only supports rails 6.1+ + # rails 7.2 only supports ruby 3.1 + - ruby: '3.0' + gemfile: rails_7_2 runs-on: ubuntu-latest steps: - name: Install libvips run: sudo apt-get update && sudo apt-get -y install libvips - name: Check out code - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set BUNDLE_GEMFILE run: echo 'BUNDLE_GEMFILE=${{ github.workspace }}/gemfiles/${{ matrix.gemfile }}.gemfile' >> $GITHUB_ENV diff --git a/README.md b/README.md index 172af026..70f011c4 100755 --- a/README.md +++ b/README.md @@ -434,7 +434,8 @@ To run tests in root folder of gem: * `BUNDLE_GEMFILE=gemfiles/rails_6_1_4.gemfile bundle exec rake test` to run for Rails 6.1.4 * `BUNDLE_GEMFILE=gemfiles/rails_7_0.gemfile bundle exec rake test` to run for Rails 7.0 -* `BUNDLE_GEMFILE=gemfiles/rails_7_1.gemfile bundle exec rake test` to run for Rails 7.0 +* `BUNDLE_GEMFILE=gemfiles/rails_7_1.gemfile bundle exec rake test` to run for Rails 7.1 +* `BUNDLE_GEMFILE=gemfiles/rails_7_2.gemfile bundle exec rake test` to run for Rails 7.2 * `BUNDLE_GEMFILE=gemfiles/rails_next.gemfile bundle exec rake test` to run for Rails main branch Snippet to run in console: @@ -443,10 +444,12 @@ Snippet to run in console: BUNDLE_GEMFILE=gemfiles/rails_6_1_4.gemfile bundle BUNDLE_GEMFILE=gemfiles/rails_7_0.gemfile bundle BUNDLE_GEMFILE=gemfiles/rails_7_1.gemfile bundle +BUNDLE_GEMFILE=gemfiles/rails_7_2.gemfile bundle BUNDLE_GEMFILE=gemfiles/rails_next.gemfile bundle BUNDLE_GEMFILE=gemfiles/rails_6_1_4.gemfile bundle exec rake test BUNDLE_GEMFILE=gemfiles/rails_7_0.gemfile bundle exec rake test BUNDLE_GEMFILE=gemfiles/rails_7_1.gemfile bundle exec rake test +BUNDLE_GEMFILE=gemfiles/rails_7_2.gemfile bundle exec rake test BUNDLE_GEMFILE=gemfiles/rails_next.gemfile bundle exec rake test ``` diff --git a/build.sh b/build.sh index 6bebdc9d..89f44067 100755 --- a/build.sh +++ b/build.sh @@ -1,7 +1,8 @@ BUNDLE_GEMFILE=gemfiles/rails_next.gemfile bundle BUNDLE_GEMFILE=gemfiles/rails_6_1_4.gemfile bundle -BUNDLE_GEMFILE=gemfiles/rails_6_0.gemfile bundle BUNDLE_GEMFILE=gemfiles/rails_7_0.gemfile bundle +BUNDLE_GEMFILE=gemfiles/rails_7_1.gemfile bundle +BUNDLE_GEMFILE=gemfiles/rails_7_2.gemfile bundle rm *.gem rm -fr test/dummy/log/*.log rm -fr test/dummy/tmp/cache diff --git a/gemfiles/rails_6_1_4.gemfile b/gemfiles/rails_6_1_4.gemfile index 5602b137..553f821b 100644 --- a/gemfiles/rails_6_1_4.gemfile +++ b/gemfiles/rails_6_1_4.gemfile @@ -2,4 +2,6 @@ source 'https://rubygems.org' %w[activejob activemodel activestorage activesupport].each { |rails_subcomponent| gem rails_subcomponent, '~> 6.1.4' } +gem 'sqlite3', '~> 1.7' + gemspec :path => '../' diff --git a/gemfiles/rails_6_1_4.gemfile.lock b/gemfiles/rails_6_1_4.gemfile.lock index 5c7ca090..203174de 100644 --- a/gemfiles/rails_6_1_4.gemfile.lock +++ b/gemfiles/rails_6_1_4.gemfile.lock @@ -10,35 +10,35 @@ PATH GEM remote: https://rubygems.org/ specs: - actionpack (6.1.4) - actionview (= 6.1.4) - activesupport (= 6.1.4) + actionpack (6.1.7.8) + actionview (= 6.1.7.8) + activesupport (= 6.1.7.8) rack (~> 2.0, >= 2.0.9) rack-test (>= 0.6.3) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.0, >= 1.2.0) - actionview (6.1.4) - activesupport (= 6.1.4) + actionview (6.1.7.8) + activesupport (= 6.1.7.8) builder (~> 3.1) erubi (~> 1.4) rails-dom-testing (~> 2.0) rails-html-sanitizer (~> 1.1, >= 1.2.0) - activejob (6.1.4) - activesupport (= 6.1.4) + activejob (6.1.7.8) + activesupport (= 6.1.7.8) globalid (>= 0.3.6) - activemodel (6.1.4) - activesupport (= 6.1.4) - activerecord (6.1.4) - activemodel (= 6.1.4) - activesupport (= 6.1.4) - activestorage (6.1.4) - actionpack (= 6.1.4) - activejob (= 6.1.4) - activerecord (= 6.1.4) - activesupport (= 6.1.4) - marcel (~> 1.0.0) + activemodel (6.1.7.8) + activesupport (= 6.1.7.8) + activerecord (6.1.7.8) + activemodel (= 6.1.7.8) + activesupport (= 6.1.7.8) + activestorage (6.1.7.8) + actionpack (= 6.1.7.8) + activejob (= 6.1.7.8) + activerecord (= 6.1.7.8) + activesupport (= 6.1.7.8) + marcel (~> 1.0) mini_mime (>= 1.1.0) - activesupport (6.1.4) + activesupport (6.1.7.8) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -49,32 +49,33 @@ GEM bigdecimal (3.1.8) builder (3.3.0) coderay (1.1.3) - combustion (1.3.7) + combustion (1.5.0) activesupport (>= 3.0.0) railties (>= 3.0.0) thor (>= 0.14.6) - concurrent-ruby (1.3.3) + concurrent-ruby (1.3.4) crack (1.0.0) bigdecimal rexml crass (1.0.6) - docile (1.4.0) + docile (1.4.1) erubi (1.13.0) - ffi (1.16.3) + ffi (1.17.0) globalid (1.2.1) activesupport (>= 6.1) hashdiff (1.1.1) - i18n (1.14.5) + i18n (1.14.6) concurrent-ruby (~> 1.0) + logger (1.6.1) loofah (2.22.0) crass (~> 1.0.2) nokogiri (>= 1.12.0) marcel (1.0.4) method_source (1.1.0) - mini_magick (4.12.0) + mini_magick (5.0.1) mini_mime (1.1.5) mini_portile2 (2.8.7) - minitest (5.24.1) + minitest (5.25.1) minitest-focus (1.4.0) minitest (>= 4, < 6) nokogiri (1.16.7) @@ -82,15 +83,13 @@ GEM racc (~> 1.4) nokogiri (1.16.7-arm64-darwin) racc (~> 1.4) - nokogiri (1.16.7-x86_64-darwin) - racc (~> 1.4) nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) public_suffix (6.0.1) - racc (1.8.0) + racc (1.8.1) rack (2.2.9) rack-test (2.1.0) rack (>= 1.3) @@ -101,40 +100,39 @@ GEM rails-html-sanitizer (1.6.0) loofah (~> 2.21) nokogiri (~> 1.14) - railties (6.1.4) - actionpack (= 6.1.4) - activesupport (= 6.1.4) + railties (6.1.7.8) + actionpack (= 6.1.7.8) + activesupport (= 6.1.7.8) method_source - rake (>= 0.13) + rake (>= 12.2) thor (~> 1.0) rake (13.2.1) rexml (3.3.8) - ruby-vips (2.2.1) + ruby-vips (2.2.2) ffi (~> 1.12) + logger simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sqlite3 (1.7.3) mini_portile2 (~> 2.8.0) sqlite3 (1.7.3-arm64-darwin) - sqlite3 (1.7.3-x86_64-darwin) sqlite3 (1.7.3-x86_64-linux) - thor (1.3.1) + thor (1.3.2) tzinfo (2.0.6) concurrent-ruby (~> 1.0) webmock (3.24.0) addressable (>= 2.8.0) crack (>= 0.3.2) hashdiff (>= 0.4.0, < 2.0.0) - zeitwerk (2.6.16) + zeitwerk (2.6.18) PLATFORMS arm64-darwin ruby - x86_64-darwin-19 x86_64-linux DEPENDENCIES @@ -150,8 +148,8 @@ DEPENDENCIES pry ruby-vips (>= 2.1.0) simplecov - sqlite3 + sqlite3 (~> 1.7) webmock (>= 3) BUNDLED WITH - 2.5.6 + 2.4.11 diff --git a/gemfiles/rails_7_0.gemfile b/gemfiles/rails_7_0.gemfile index fce684a7..4ae765c9 100644 --- a/gemfiles/rails_7_0.gemfile +++ b/gemfiles/rails_7_0.gemfile @@ -2,4 +2,6 @@ source 'https://rubygems.org' %w[activejob activemodel activestorage activesupport].each { |rails_subcomponent| gem rails_subcomponent, '~> 7.0.0' } +gem 'sqlite3', '~> 1.7' + gemspec :path => '../' diff --git a/gemfiles/rails_7_0.gemfile.lock b/gemfiles/rails_7_0.gemfile.lock index 24b21806..fbaede86 100644 --- a/gemfiles/rails_7_0.gemfile.lock +++ b/gemfiles/rails_7_0.gemfile.lock @@ -10,35 +10,35 @@ PATH GEM remote: https://rubygems.org/ specs: - actionpack (7.0.2.2) - actionview (= 7.0.2.2) - activesupport (= 7.0.2.2) - rack (~> 2.0, >= 2.2.0) + 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.2.2) - activesupport (= 7.0.2.2) + 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) - activejob (7.0.2.2) - activesupport (= 7.0.2.2) + activejob (7.0.8.4) + activesupport (= 7.0.8.4) globalid (>= 0.3.6) - activemodel (7.0.2.2) - activesupport (= 7.0.2.2) - activerecord (7.0.2.2) - activemodel (= 7.0.2.2) - activesupport (= 7.0.2.2) - activestorage (7.0.2.2) - actionpack (= 7.0.2.2) - activejob (= 7.0.2.2) - activerecord (= 7.0.2.2) - activesupport (= 7.0.2.2) + 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) + activestorage (7.0.8.4) + actionpack (= 7.0.8.4) + activejob (= 7.0.8.4) + activerecord (= 7.0.8.4) + activesupport (= 7.0.8.4) marcel (~> 1.0) mini_mime (>= 1.1.0) - activesupport (7.0.2.2) + activesupport (7.0.8.4) concurrent-ruby (~> 1.0, >= 1.0.2) i18n (>= 1.6, < 2) minitest (>= 5.1) @@ -46,82 +46,94 @@ GEM addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) bigdecimal (3.1.8) - builder (3.2.4) + builder (3.3.0) coderay (1.1.3) - combustion (1.3.5) + combustion (1.5.0) activesupport (>= 3.0.0) railties (>= 3.0.0) thor (>= 0.14.6) - concurrent-ruby (1.1.10) + concurrent-ruby (1.3.4) crack (1.0.0) bigdecimal rexml crass (1.0.6) docile (1.4.1) - erubi (1.10.0) - ffi (1.15.5) - globalid (1.0.0) - activesupport (>= 5.0) - hashdiff (1.1.0) - i18n (1.12.0) + erubi (1.13.0) + ffi (1.17.0) + globalid (1.2.1) + activesupport (>= 6.1) + hashdiff (1.1.1) + i18n (1.14.6) concurrent-ruby (~> 1.0) - loofah (2.14.0) + logger (1.6.1) + loofah (2.22.0) crass (~> 1.0.2) - nokogiri (>= 1.5.9) + nokogiri (>= 1.12.0) marcel (1.0.4) - method_source (1.0.0) - mini_magick (4.11.0) - mini_mime (1.1.2) - mini_portile2 (2.8.0) - minitest (5.16.3) + method_source (1.1.0) + mini_magick (5.0.1) + mini_mime (1.1.5) + mini_portile2 (2.8.7) + minitest (5.25.1) minitest-focus (1.4.0) minitest (>= 4, < 6) - nokogiri (1.13.8) - mini_portile2 (~> 2.8.0) + nokogiri (1.16.7) + mini_portile2 (~> 2.8.2) + racc (~> 1.4) + nokogiri (1.16.7-arm64-darwin) + racc (~> 1.4) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) - public_suffix (6.0.0) - racc (1.6.0) - rack (2.2.3) - rack-test (1.1.0) - rack (>= 1.0, < 3) - rails-dom-testing (2.0.3) - activesupport (>= 4.2.0) + public_suffix (6.0.1) + racc (1.8.1) + rack (2.2.9) + rack-test (2.1.0) + rack (>= 1.3) + rails-dom-testing (2.2.0) + activesupport (>= 5.0.0) + minitest nokogiri (>= 1.6) - rails-html-sanitizer (1.4.2) - loofah (~> 2.3) - railties (7.0.2.2) - actionpack (= 7.0.2.2) - activesupport (= 7.0.2.2) + rails-html-sanitizer (1.6.0) + loofah (~> 2.21) + nokogiri (~> 1.14) + 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) - rake (13.0.6) - rexml (3.3.7) - ruby-vips (2.1.4) + rake (13.2.1) + rexml (3.3.8) + ruby-vips (2.2.2) ffi (~> 1.12) + logger simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) sqlite3 (1.7.3) mini_portile2 (~> 2.8.0) - thor (1.2.1) - tzinfo (2.0.5) + sqlite3 (1.7.3-arm64-darwin) + sqlite3 (1.7.3-x86_64-linux) + thor (1.3.2) + tzinfo (2.0.6) concurrent-ruby (~> 1.0) - webmock (3.23.1) + webmock (3.24.0) addressable (>= 2.8.0) crack (>= 0.3.2) hashdiff (>= 0.4.0, < 2.0.0) - zeitwerk (2.5.4) + zeitwerk (2.6.18) PLATFORMS + arm64-darwin ruby + x86_64-linux DEPENDENCIES active_storage_validations! @@ -136,8 +148,8 @@ DEPENDENCIES pry ruby-vips (>= 2.1.0) simplecov - sqlite3 + sqlite3 (~> 1.7) webmock (>= 3) BUNDLED WITH - 2.3.7 + 2.4.11 diff --git a/gemfiles/rails_7_1.gemfile b/gemfiles/rails_7_1.gemfile index 612013ad..c77ed0c2 100644 --- a/gemfiles/rails_7_1.gemfile +++ b/gemfiles/rails_7_1.gemfile @@ -2,4 +2,6 @@ source 'https://rubygems.org' %w[activejob activemodel activestorage activesupport].each { |rails_subcomponent| gem rails_subcomponent, '~> 7.1.0' } +gem 'sqlite3', '~> 1.7' # Because 7.1 is still tested against Ruby 3.0 + gemspec :path => '../' diff --git a/gemfiles/rails_7_1.gemfile.lock b/gemfiles/rails_7_1.gemfile.lock index 2d3af75c..72610eb5 100644 --- a/gemfiles/rails_7_1.gemfile.lock +++ b/gemfiles/rails_7_1.gemfile.lock @@ -10,9 +10,9 @@ PATH GEM remote: https://rubygems.org/ specs: - actionpack (7.1.2) - actionview (= 7.1.2) - activesupport (= 7.1.2) + actionpack (7.1.4) + actionview (= 7.1.4) + activesupport (= 7.1.4) nokogiri (>= 1.8.5) racc rack (>= 2.2.4) @@ -20,28 +20,28 @@ GEM rack-test (>= 0.6.3) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - actionview (7.1.2) - activesupport (= 7.1.2) + actionview (7.1.4) + activesupport (= 7.1.4) builder (~> 3.1) erubi (~> 1.11) rails-dom-testing (~> 2.2) rails-html-sanitizer (~> 1.6) - activejob (7.1.2) - activesupport (= 7.1.2) + activejob (7.1.4) + activesupport (= 7.1.4) globalid (>= 0.3.6) - activemodel (7.1.2) - activesupport (= 7.1.2) - activerecord (7.1.2) - activemodel (= 7.1.2) - activesupport (= 7.1.2) + activemodel (7.1.4) + activesupport (= 7.1.4) + activerecord (7.1.4) + activemodel (= 7.1.4) + activesupport (= 7.1.4) timeout (>= 0.4.0) - activestorage (7.1.2) - actionpack (= 7.1.2) - activejob (= 7.1.2) - activerecord (= 7.1.2) - activesupport (= 7.1.2) + activestorage (7.1.4) + actionpack (= 7.1.4) + activejob (= 7.1.4) + activerecord (= 7.1.4) + activesupport (= 7.1.4) marcel (~> 1.0) - activesupport (7.1.2) + activesupport (7.1.4) base64 bigdecimal concurrent-ruby (~> 1.0, >= 1.0.2) @@ -54,57 +54,59 @@ GEM addressable (2.8.7) public_suffix (>= 2.0.2, < 7.0) base64 (0.2.0) - bigdecimal (3.1.4) - builder (3.2.4) + bigdecimal (3.1.8) + builder (3.3.0) coderay (1.1.3) - combustion (1.3.7) + combustion (1.5.0) activesupport (>= 3.0.0) railties (>= 3.0.0) thor (>= 0.14.6) - concurrent-ruby (1.2.2) + concurrent-ruby (1.3.4) connection_pool (2.4.1) crack (1.0.0) bigdecimal rexml crass (1.0.6) docile (1.4.1) - drb (2.2.0) - ruby2_keywords - erubi (1.12.0) - ffi (1.16.3) + drb (2.2.1) + erubi (1.13.0) + ffi (1.17.0) globalid (1.2.1) activesupport (>= 6.1) - hashdiff (1.1.0) - i18n (1.14.1) + hashdiff (1.1.1) + i18n (1.14.6) concurrent-ruby (~> 1.0) - io-console (0.6.0) - irb (1.9.0) - rdoc - reline (>= 0.3.8) + io-console (0.7.2) + irb (1.14.1) + rdoc (>= 4.0.0) + reline (>= 0.4.2) + logger (1.6.1) loofah (2.22.0) crass (~> 1.0.2) nokogiri (>= 1.12.0) marcel (1.0.4) - method_source (1.0.0) - mini_magick (4.12.0) - minitest (5.20.0) + method_source (1.1.0) + mini_magick (5.0.1) + mini_portile2 (2.8.7) + minitest (5.25.1) minitest-focus (1.4.0) minitest (>= 4, < 6) mutex_m (0.2.0) - nokogiri (1.15.5-arm64-darwin) + nokogiri (1.16.7) + mini_portile2 (~> 2.8.2) racc (~> 1.4) - nokogiri (1.15.5-x86_64-darwin) + nokogiri (1.16.7-arm64-darwin) racc (~> 1.4) - nokogiri (1.15.5-x86_64-linux) + nokogiri (1.16.7-x86_64-linux) racc (~> 1.4) pry (0.14.2) coderay (~> 1.1) method_source (~> 1.0) - psych (5.1.1.1) + psych (5.1.2) stringio - public_suffix (6.0.0) - racc (1.7.3) - rack (3.0.8) + public_suffix (6.0.1) + racc (1.8.1) + rack (3.1.7) rack-session (2.0.0) rack (>= 3.0.0) rack-test (2.1.0) @@ -119,47 +121,48 @@ GEM rails-html-sanitizer (1.6.0) loofah (~> 2.21) nokogiri (~> 1.14) - railties (7.1.2) - actionpack (= 7.1.2) - activesupport (= 7.1.2) + railties (7.1.4) + actionpack (= 7.1.4) + activesupport (= 7.1.4) irb rackup (>= 1.0.0) rake (>= 12.2) thor (~> 1.0, >= 1.2.2) zeitwerk (~> 2.6) - rake (13.1.0) - rdoc (6.6.0) + rake (13.2.1) + rdoc (6.7.0) psych (>= 4.0.0) - reline (0.4.0) + reline (0.5.10) io-console (~> 0.5) - rexml (3.3.7) - ruby-vips (2.2.0) + rexml (3.3.8) + ruby-vips (2.2.2) ffi (~> 1.12) - ruby2_keywords (0.0.5) + logger simplecov (0.22.0) docile (~> 1.1) simplecov-html (~> 0.11) simplecov_json_formatter (~> 0.1) - simplecov-html (0.12.3) + simplecov-html (0.13.1) simplecov_json_formatter (0.1.4) + sqlite3 (1.7.3) + mini_portile2 (~> 2.8.0) sqlite3 (1.7.3-arm64-darwin) - sqlite3 (1.7.3-x86_64-darwin) sqlite3 (1.7.3-x86_64-linux) - stringio (3.0.9) - thor (1.3.0) + stringio (3.1.1) + thor (1.3.2) timeout (0.4.1) tzinfo (2.0.6) concurrent-ruby (~> 1.0) - webmock (3.23.1) + webmock (3.24.0) addressable (>= 2.8.0) crack (>= 0.3.2) hashdiff (>= 0.4.0, < 2.0.0) - webrick (1.8.1) - zeitwerk (2.6.12) + webrick (1.8.2) + zeitwerk (2.6.18) PLATFORMS - arm64-darwin-22 - x86_64-darwin-21 + arm64-darwin + ruby x86_64-linux DEPENDENCIES @@ -175,8 +178,8 @@ DEPENDENCIES pry ruby-vips (>= 2.1.0) simplecov - sqlite3 + sqlite3 (~> 1.7) webmock (>= 3) BUNDLED WITH - 2.4.22 + 2.4.11 diff --git a/gemfiles/rails_7_2.gemfile b/gemfiles/rails_7_2.gemfile new file mode 100644 index 00000000..e6bcfb25 --- /dev/null +++ b/gemfiles/rails_7_2.gemfile @@ -0,0 +1,5 @@ +source 'https://rubygems.org' + +%w[activejob activemodel activestorage activesupport].each { |rails_subcomponent| gem rails_subcomponent, '~> 7.2.0' } + +gemspec :path => '../' diff --git a/gemfiles/rails_7_2.gemfile.lock b/gemfiles/rails_7_2.gemfile.lock new file mode 100644 index 00000000..7deda48b --- /dev/null +++ b/gemfiles/rails_7_2.gemfile.lock @@ -0,0 +1,190 @@ +PATH + remote: .. + specs: + active_storage_validations (1.2.0) + activejob (>= 6.1.4) + activemodel (>= 6.1.4) + activestorage (>= 6.1.4) + activesupport (>= 6.1.4) + +GEM + remote: https://rubygems.org/ + specs: + actionpack (7.2.1) + actionview (= 7.2.1) + activesupport (= 7.2.1) + 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) + actionview (7.2.1) + activesupport (= 7.2.1) + builder (~> 3.1) + erubi (~> 1.11) + rails-dom-testing (~> 2.2) + rails-html-sanitizer (~> 1.6) + activejob (7.2.1) + activesupport (= 7.2.1) + globalid (>= 0.3.6) + activemodel (7.2.1) + activesupport (= 7.2.1) + activerecord (7.2.1) + activemodel (= 7.2.1) + activesupport (= 7.2.1) + timeout (>= 0.4.0) + activestorage (7.2.1) + actionpack (= 7.2.1) + activejob (= 7.2.1) + activerecord (= 7.2.1) + activesupport (= 7.2.1) + marcel (~> 1.0) + activesupport (7.2.1) + base64 + 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) + base64 (0.2.0) + bigdecimal (3.1.8) + builder (3.3.0) + coderay (1.1.3) + combustion (1.5.0) + activesupport (>= 3.0.0) + railties (>= 3.0.0) + thor (>= 0.14.6) + concurrent-ruby (1.3.4) + connection_pool (2.4.1) + crack (1.0.0) + bigdecimal + rexml + crass (1.0.6) + docile (1.4.1) + drb (2.2.1) + erubi (1.13.0) + ffi (1.17.0) + ffi (1.17.0-arm64-darwin) + ffi (1.17.0-x86_64-linux-gnu) + globalid (1.2.1) + activesupport (>= 6.1) + hashdiff (1.1.1) + 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) + logger (1.6.1) + loofah (2.22.0) + crass (~> 1.0.2) + nokogiri (>= 1.12.0) + marcel (1.0.4) + method_source (1.1.0) + mini_magick (5.0.1) + mini_portile2 (2.8.7) + minitest (5.25.1) + minitest-focus (1.4.0) + minitest (>= 4, < 6) + nokogiri (1.16.7) + mini_portile2 (~> 2.8.2) + racc (~> 1.4) + nokogiri (1.16.7-arm64-darwin) + racc (~> 1.4) + nokogiri (1.16.7-x86_64-linux) + racc (~> 1.4) + pry (0.14.2) + coderay (~> 1.1) + method_source (~> 1.0) + psych (5.1.2) + stringio + public_suffix (6.0.1) + racc (1.8.1) + rack (3.1.7) + rack-session (2.0.0) + rack (>= 3.0.0) + rack-test (2.1.0) + rack (>= 1.3) + rackup (2.1.0) + rack (>= 3) + webrick (~> 1.8) + 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.1) + actionpack (= 7.2.1) + activesupport (= 7.2.1) + irb (~> 1.13) + rackup (>= 1.0.0) + rake (>= 12.2) + thor (~> 1.0, >= 1.2.2) + zeitwerk (~> 2.6) + rake (13.2.1) + rdoc (6.7.0) + psych (>= 4.0.0) + reline (0.5.10) + io-console (~> 0.5) + rexml (3.3.8) + ruby-vips (2.2.2) + ffi (~> 1.12) + logger + securerandom (0.3.1) + simplecov (0.22.0) + docile (~> 1.1) + simplecov-html (~> 0.11) + simplecov_json_formatter (~> 0.1) + simplecov-html (0.13.1) + simplecov_json_formatter (0.1.4) + sqlite3 (2.1.0) + mini_portile2 (~> 2.8.0) + sqlite3 (2.1.0-arm64-darwin) + sqlite3 (2.1.0-x86_64-linux-gnu) + stringio (3.1.1) + thor (1.3.2) + timeout (0.4.1) + tzinfo (2.0.6) + concurrent-ruby (~> 1.0) + useragent (0.16.10) + webmock (3.24.0) + addressable (>= 2.8.0) + crack (>= 0.3.2) + hashdiff (>= 0.4.0, < 2.0.0) + webrick (1.8.2) + zeitwerk (2.6.18) + +PLATFORMS + arm64-darwin + ruby + x86_64-linux + +DEPENDENCIES + active_storage_validations! + activejob (~> 7.2.0) + activemodel (~> 7.2.0) + activestorage (~> 7.2.0) + activesupport (~> 7.2.0) + combustion (~> 1.3) + marcel (>= 1.0.3) + mini_magick (>= 4.9.5) + minitest-focus (~> 1.4) + pry + ruby-vips (>= 2.1.0) + simplecov + sqlite3 + webmock (>= 3) + +BUNDLED WITH + 2.5.21 diff --git a/gemfiles/rails_next.gemfile.lock b/gemfiles/rails_next.gemfile.lock index 54ef0843..fc4079c7 100755 --- a/gemfiles/rails_next.gemfile.lock +++ b/gemfiles/rails_next.gemfile.lock @@ -203,8 +203,8 @@ GEM zeitwerk (2.5.4) PLATFORMS + arm64-darwin ruby - x86_64-darwin-20 x86_64-linux DEPENDENCIES