Skip to content

Commit

Permalink
Add Rails 7.2 support (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
yosiat authored Aug 10, 2024
1 parent 1e8db7a commit 8d28065
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,10 @@ jobs:
fail-fast: false
matrix:
include:
- ruby: '3.2'
rails: '7.2'
- ruby: '3.1'
rails: '7.2'
- ruby: '3.2'
rails: '7.1'
- ruby: '3.1'
Expand Down
6 changes: 6 additions & 0 deletions Appraisals
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,9 @@ appraise "activerecord-7.1" do
gem "activesupport", "~> 7.1"
gem "standard", "~> 1.16"
end

appraise "activerecord-7.2" do
gem "activerecord", "~> 7.2"
gem "activesupport", "~> 7.2"
gem "standard", "~> 1.16"
end
9 changes: 9 additions & 0 deletions gemfiles/activerecord_7.2.gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# This file was generated by Appraisal

source "https://rubygems.org"

gem "activerecord", "~> 7.2"
gem "activesupport", "~> 7.2"
gem "standard", "~> 1.16"

gemspec path: "../"
4 changes: 2 additions & 2 deletions temping.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Gem::Specification.new do |s|

s.required_ruby_version = ">= 2.5"

s.add_dependency "activerecord", ">= 6.0", "< 7.2"
s.add_dependency "activesupport", ">= 6.0", "< 7.2"
s.add_dependency "activerecord", ">= 6.0", "< 7.3"
s.add_dependency "activesupport", ">= 6.0", "< 7.3"

s.add_development_dependency "appraisal", "~> 2.2"

Expand Down

0 comments on commit 8d28065

Please sign in to comment.