Skip to content

Commit 0705ee3

Browse files
authored
Merge pull request #2 from nsgc/support-ruby-4
Add Ruby 4.0 support and bump minimum to 3.2
2 parents 8e74e67 + 010e094 commit 0705ee3

2 files changed

Lines changed: 6 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ jobs:
1010
strategy:
1111
matrix:
1212
ruby:
13-
- 3.2.8
14-
- 3.3.8
15-
- 3.4.4
13+
- 4.0.0
14+
- 3.4.8
15+
- 3.3.9
16+
- 3.2.9
1617

1718
steps:
1819
- uses: actions/checkout@v4
@@ -33,7 +34,7 @@ jobs:
3334

3435
- uses: ruby/setup-ruby@v1
3536
with:
36-
ruby-version: '3.4.4'
37+
ruby-version: '4.0.0'
3738
bundler-cache: true
3839

3940
- run: bundle exec steep check

predicateable.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
1212

1313
spec.homepage = "https://github.com/nsgc/predicateable"
1414
spec.license = "MIT"
15-
spec.required_ruby_version = ">= 3.1.0"
15+
spec.required_ruby_version = ">= 3.2.0"
1616

1717

1818
spec.metadata["homepage_uri"] = spec.homepage

0 commit comments

Comments
 (0)