Skip to content

Commit

Permalink
allow usage in rails 7.2.x (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
klausmeyer authored Aug 21, 2024
1 parent a742ee3 commit 233e39f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
env:
ACTIVESUPPORT: '7.1'
ACTIVESUPPORT: '7.2'
with:
ruby-version: '3.2'
bundler-cache: true
Expand All @@ -25,7 +25,7 @@ jobs:
strategy:
fail-fast: false
matrix:
activesupport: ['6.1', '7.0', '7.1']
activesupport: ['6.1', '7.0', '7.1', '7.2']
ruby: ['3.1', '3.2', '3.3']
steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion ja2r.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -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', '< 7.2'
s.add_dependency 'activesupport', '>= 6.1', '< 8.0'

s.metadata['rubygems_mfa_required'] = 'true'
end

0 comments on commit 233e39f

Please sign in to comment.