From 06aaaf3bfa5e7ff2b9aa0afee9acc7ee34f0fee3 Mon Sep 17 00:00:00 2001 From: Konstantin Munteanu Date: Mon, 24 Nov 2025 15:05:08 +0100 Subject: [PATCH] Support activesupport 8.1 --- .github/workflows/main.yml | 6 +++--- ja2r.gemspec | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cd59dd2..b1cbc99 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,11 +13,11 @@ jobs: - name: Set up Ruby uses: ruby/setup-ruby@v1 env: - ACTIVESUPPORT: '7.2' + ACTIVESUPPORT: '8.1' with: ruby-version: '3.4' bundler-cache: true - cache-version: '7.1' + cache-version: '8.1' - name: Rubocop run: bundle exec rubocop rspec: @@ -25,7 +25,7 @@ jobs: strategy: fail-fast: false matrix: - activesupport: ['6.1', '7.0', '7.1', '7.2', '8.0'] + activesupport: ['7.1', '7.2', '8.0', '8.1'] ruby: ['3.3', '3.4'] steps: - uses: actions/checkout@v2 diff --git a/ja2r.gemspec b/ja2r.gemspec index acc894a..3aba1cd 100644 --- a/ja2r.gemspec +++ b/ja2r.gemspec @@ -13,7 +13,7 @@ Gem::Specification.new do |s| s.files = Dir['{app,config,db,lib}/**/*', 'LICENSE', 'README.md'] - s.add_dependency 'activesupport', '>= 6.1', '< 8.1' + s.add_dependency 'activesupport', '>= 7.1', '< 8.2' s.metadata['rubygems_mfa_required'] = 'true' end