Skip to content

Commit 8ac632c

Browse files
committed
config(ruby-version, gemspec) Allow use with Rails 8. Bump ruby version
1 parent a5d9ace commit 8ac632c

File tree

4 files changed

+6
-3
lines changed

4 files changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ env:
33

44
name: RichEnums CI
55
on:
6+
workflow_dispatch:
67
pull_request:
78
paths-ignore:
89
- .gitignore
@@ -23,6 +24,8 @@ jobs:
2324
strategy:
2425
matrix:
2526
include:
27+
- ruby: '3.4'
28+
rails: '8.0'
2629
- ruby: '3.3'
2730
rails: '7.2'
2831
- ruby: '3.2'

.ruby-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
3.3.4
1+
3.4.2

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ PATH
22
remote: .
33
specs:
44
rich_enums (0.1.5)
5-
activerecord (>= 6.1, < 8.0)
5+
activerecord (>= 6.1, < 9.0)
66

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

rich_enums.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ DESC
2424

2525
spec.add_development_dependency 'sqlite3', '~> 1.4'
2626
spec.add_development_dependency 'temping', '~> 4.1'
27-
spec.add_runtime_dependency 'activerecord', '>= 6.1', '< 8.0'
27+
spec.add_runtime_dependency 'activerecord', '>= 6.1', '< 9.0'
2828
# Specify which files should be added to the gem when it is released.
2929
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
3030
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do

0 commit comments

Comments
 (0)