Skip to content

Commit 6db2f4a

Browse files
committed
Add support for rails 8 & 8.1 and specs for ruby 3.2, 3.3, 3.4, 4.0
1 parent 056686e commit 6db2f4a

4 files changed

Lines changed: 8 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ jobs:
1818
- "2.7"
1919
- "3.0"
2020
- "3.1"
21+
- "3.2"
22+
- "3.3"
23+
- "3.4"
24+
- "4.0"
2125

2226
steps:
2327
- uses: actions/checkout@v2

Gemfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PATH
22
remote: .
33
specs:
4-
safe_polymorphic (0.1.3)
5-
activerecord (>= 5.2, < 8.0)
4+
safe_polymorphic (0.1.4)
5+
activerecord (>= 5.2, < 8.3)
66

77
GEM
88
remote: https://rubygems.org/

lib/safe_polymorphic/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module SafePolymorphic
4-
VERSION = '0.1.3'
4+
VERSION = '0.1.4'
55
end

safe_polymorphic.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ Gem::Specification.new do |spec|
3131
spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
3232
spec.require_paths = ['lib']
3333

34-
spec.add_dependency 'activerecord', '>= 5.2', '< 8.0'
34+
spec.add_dependency 'activerecord', '>= 5.2', '< 8.3'
3535
end

0 commit comments

Comments
 (0)