Skip to content

Commit 8d78c4c

Browse files
committed
Drop support of Ruby 3.1
1 parent 617d51b commit 8d78c4c

File tree

3 files changed

+3
-7
lines changed

3 files changed

+3
-7
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Setup Ruby
2525
uses: ruby/setup-ruby@v1
2626
with:
27-
ruby-version: '3.1'
27+
ruby-version: '3.2'
2828

2929
- name: Bundler
3030
run: bundle install
@@ -42,15 +42,11 @@ jobs:
4242
- '3.4'
4343
- '3.3'
4444
- '3.2'
45-
- '3.1'
4645
- 'head'
4746
rails:
4847
- rails_8.0
4948
- rails_7.2
5049
- rails_7.1
51-
exclude:
52-
- ruby: '3.1'
53-
rails: 'rails_8.0'
5450

5551
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
5652
BUNDLE_GEMFILE: ${{ github.workspace }}/gemfiles/${{ matrix.rails }}.gemfile

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins:
77

88
AllCops:
99
NewCops: enable
10-
TargetRubyVersion: 3.1
10+
TargetRubyVersion: 3.2
1111
Exclude:
1212
- bin/*
1313
- gemfiles/*

crono.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Gem::Specification.new do |s|
1313
s.description = 'A time-based background job scheduler daemon (just like Cron) for Rails'
1414
s.license = 'Apache-2.0'
1515

16-
s.required_ruby_version = '>= 3.1.0'
16+
s.required_ruby_version = '>= 3.2.0'
1717

1818
s.files = Dir[
1919
'README.md',

0 commit comments

Comments
 (0)