Skip to content

Commit

Permalink
Upgrade to work with Rails 8 (#132)
Browse files Browse the repository at this point in the history
* Upgrade to work with Rails 8

* Add Rails 8 to test matrix
  • Loading branch information
robzolkos authored Nov 12, 2024
1 parent 452d79f commit ac5cdb4
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,19 @@ jobs:
- '7.0.2.3'
- '7.1.0'
- '7.2.0'
- '8.0.0'
exclude:
- ruby-version: 2.7
rails: '7.2.0'
rails:
- '7.2.0'
- '8.0.0'
- ruby-version: '3.0'
rails: '7.2.0'
rails:
- '7.2.0'
- '8.0.0'
- ruby-version: 3.1
rails:
- '8.0.0'
env:
RAILS_VERSION: ${{ matrix.rails }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions credit_card_validations.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ Gem::Specification.new do |gem|
gem.require_paths = ["lib"]


gem.add_dependency "activemodel", ">= 5.2", "< 8.0"
gem.add_dependency "activesupport", ">= 5.2", "< 8.0"
gem.add_dependency "activemodel", ">= 5.2", "< 8.1"
gem.add_dependency "activesupport", ">= 5.2", "< 8.1"


gem.add_development_dependency "minitest", '~> 5.14.3'
Expand Down

0 comments on commit ac5cdb4

Please sign in to comment.