Skip to content

Commit

Permalink
chore(dep): support rails 7 and ruby 3.2
Browse files Browse the repository at this point in the history
- add sprockets-rails dependencies as it's no longer included in rails >= 7
  • Loading branch information
bivanalhar authored and cysjonathan committed Jul 24, 2024
1 parent 2818b03 commit e9c3b88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['3.0', '3.1']
activerecord: ['6.0', '6.1']
ruby-version: ['3.0', '3.1', '3.2']
activerecord: ['6.0', '6.1', '7.0', '7.1']
env:
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.activerecord }}.gemfile
steps:
Expand Down
1 change: 1 addition & 0 deletions rails_utils.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ Gem::Specification.new do |s|
s.add_dependency "rails", ">= 6"

s.add_development_dependency "minitest" , ">= 4.7.5"
s.add_development_dependency "sprockets-rails", '~>3.0'
s.add_development_dependency "sprockets", '~>3.0'
s.add_development_dependency "appraisal", "~> 2.1"
s.add_development_dependency "mocha"
Expand Down

0 comments on commit e9c3b88

Please sign in to comment.