Skip to content

Commit 3f24018

Browse files
author
adi-herwana-nus
committed
chore: add configurations for rails 7.2, ruby {3.2, 3.3}
1 parent 3e9a184 commit 3f24018

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

.github/workflows/ruby.yml

+12-2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414
branches: ['master']
1515
schedule:
1616
- cron: '0 0 * * 0'
17+
workflow_dispatch:
1718

1819
permissions:
1920
contents: read
@@ -23,8 +24,17 @@ jobs:
2324
runs-on: ubuntu-latest
2425
strategy:
2526
matrix:
26-
ruby-version: ['3.0', '3.1']
27-
activerecord: ['6.0', '6.1', '7.0', '7.1']
27+
ruby-version: ['3.0', '3.1', '3.2', '3.3']
28+
activerecord: ['6.0', '6.1', '7.0', '7.1', '7.2']
29+
exclude:
30+
- ruby-version: '3.2'
31+
activerecord: '6.0'
32+
- ruby-version: '3.2'
33+
activerecord: '6.0'
34+
- ruby-version: '3.3'
35+
activerecord: '6.1'
36+
- ruby-version: '3.3'
37+
activerecord: '6.1'
2838
env:
2939
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/rails_${{ matrix.activerecord }}.gemfile
3040
steps:

Appraisals

+5
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,8 @@ appraise "rails-7.1" do
1717
gem 'rails', '~> 7.1'
1818
gem "rspec-rails", '>= 6'
1919
end
20+
21+
appraise "rails-7.2" do
22+
gem 'rails', '~> 7.2'
23+
gem "rspec-rails", '>= 6'
24+
end

activerecord-userstamp.gemspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require 'active_record/userstamp/version'
66
Gem::Specification.new do |s|
77
s.name = 'activerecord-userstamp'
88
s.version = ActiveRecord::Userstamp::VERSION
9-
s.authors = ['Bivan Alzacky Harmanto']
9+
s.authors = ['Joel Low', 'Bivan Alzacky Harmanto']
1010
s.email = ['[email protected]']
1111

1212
s.summary = 'Adds magic creator and updater attributes to your ActiveRecord models.'

gemfiles/rails_7.2.gemfile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# This file was generated by Appraisal
2+
3+
source "https://rubygems.org"
4+
5+
gem "rails", "~> 7.2"
6+
gem "rspec-rails", ">= 6"
7+
8+
gemspec path: "../"

0 commit comments

Comments
 (0)