Skip to content

Commit

Permalink
Add Rails 7.2 and 8 into the build matrix (#38)
Browse files Browse the repository at this point in the history
nulldb has updated, in [v1.1.1](https://github.com/nulldb/nulldb/releases/tag/v1.1.1) it now supports Rails 7.2 and 8.0.
  • Loading branch information
adamstegman authored Dec 6, 2024
1 parent 7a0ae5e commit 3458007
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 8 deletions.
21 changes: 16 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ version: 2.1
_references:
ruby_versions: &ruby_versions
ruby-version:
- "3.3.0"
- "3.2.2"
- "3.1.4"
- "3.0.6"
- "3.3"
- "3.2"
- "3.1"
- "3.0"
rails_version_prefixess: &rails_version_prefixes
rails-version-prefix:
- "8.0"
- "7.2"
- "7.1"
- "7.0"
- "6.1"
Expand Down Expand Up @@ -90,6 +92,13 @@ workflows:
parameters:
<<: *ruby_versions
<<: *rails_version_prefixes
exclude:
- ruby-version: "3.0"
rails-version-prefix: "7.2"
- ruby-version: "3.0"
rails-version-prefix: "8.0"
- ruby-version: "3.1"
rails-version-prefix: "8.0"
test-head:
jobs:
- test:
Expand All @@ -100,7 +109,9 @@ workflows:
rails-version-prefix:
- main
exclude:
- ruby-version: 3.0.6
- ruby-version: "3.0"
rails-version-prefix: main
- ruby-version: "3.1"
rails-version-prefix: main
- test-ruby-head:
name: "test-ruby-head-rails-<<matrix.rails-version-prefix>>"
Expand Down
6 changes: 3 additions & 3 deletions acts_as_scrubbable.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ Gem::Specification.new do |s|
s.license = "MIT"
s.required_ruby_version = ['>= 2.0', '< 4.0']

s.add_runtime_dependency 'activesupport' , '>= 6.1', '< 8'
s.add_runtime_dependency 'activerecord' , '>= 6.1', '< 8'
s.add_runtime_dependency 'railties' , '>= 6.1', '< 8'
s.add_runtime_dependency 'activesupport' , '>= 6.1', '< 9'
s.add_runtime_dependency 'activerecord' , '>= 6.1', '< 9'
s.add_runtime_dependency 'railties' , '>= 6.1', '< 9'
s.add_runtime_dependency 'faker' , '>= 1.4'
s.add_runtime_dependency 'highline' , '>= 2.1.0'
s.add_runtime_dependency 'term-ansicolor' , '>= 1.3'
Expand Down

0 comments on commit 3458007

Please sign in to comment.