Skip to content

Commit 821391c

Browse files
author
github-actions
committed
Update list of tested Rails versions
1 parent 75bb02d commit 821391c

File tree

5 files changed

+21
-14
lines changed

5 files changed

+21
-14
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,11 @@ jobs:
2222
- '3.3'
2323
- '3.4'
2424
gemfile:
25-
- rails6.1
2625
- rails7.0
2726
- rails7.1
2827
- rails7.2
28+
- rails8.0
29+
- rails8.1
2930
legacy_connection_handling:
3031
- 'true'
3132
- 'false'

gemfiles/rails6.1.gemfile

Lines changed: 0 additions & 12 deletions
This file was deleted.

gemfiles/rails8.0.gemfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
source "https://rubygems.org"
2+
3+
gemspec path: "../"
4+
5+
gem "activerecord", "~> 8.0.0"
6+
gem "actionpack", "~> 8.0.0"
7+
gem "sqlite3", "~> 1.4"
8+
9+
eval_gemfile "common.rb"

gemfiles/rails8.1.gemfile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
source "https://rubygems.org"
2+
3+
gemspec path: "../"
4+
5+
gem "activerecord", "~> 8.1.0"
6+
gem "actionpack", "~> 8.1.0"
7+
gem "sqlite3", "~> 1.4"
8+
9+
eval_gemfile "common.rb"

property_sets.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Gem::Specification.new "property_sets", PropertySets::VERSION do |s|
1010

1111
s.required_ruby_version = ">= 3.1"
1212

13-
s.add_runtime_dependency("activerecord", ">= 6.1")
13+
s.add_runtime_dependency("activerecord", ">= 7.0")
1414
s.add_runtime_dependency("json")
1515

1616
s.add_development_dependency("bump")

0 commit comments

Comments
 (0)