Skip to content

Commit 0f91ef7

Browse files
committed
Drop support of Ruby 3.1
1 parent e4e1bcf commit 0f91ef7

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
@@ -55,15 +55,11 @@ jobs:
5555
- '3.4'
5656
- '3.3'
5757
- '3.2'
58-
- '3.1'
5958
- 'head'
6059
rails:
6160
- rails_8.0
6261
- rails_7.2
6362
- rails_7.1
64-
exclude:
65-
- ruby: '3.1'
66-
rails: 'rails_8.0'
6763

6864
env: # $BUNDLE_GEMFILE must be set at the job level, so it is set for all steps
6965
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/*

redis_web_manager.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 = 'Manage your Redis instance (See keys, memory used, connected client, configuration, information)'
1414
s.license = 'MIT'
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)