Skip to content

Commit 0a3d026

Browse files
update supported ruby verison (#76)
(refs: #75)
1 parent 8c67804 commit 0a3d026

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
ruby: ['3.3', '3.2', '3.1', '3.0']
11+
ruby: ['3.4', '3.3', '3.2', '3.1']
1212
env:
1313
BUNDLE_WITH: 'development_common development_test'
1414
BUNDLE_WITHOUT: 'development_lint development_local'

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ inherit_from:
22
- .rubocop_todo.yml
33

44
AllCops:
5-
TargetRubyVersion: 3.0
5+
TargetRubyVersion: 3.1
66
Exclude:
77
- spec/**/*
88
- sample/**/*

flgen.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ Gem::Specification.new do |spec|
2424
spec.bindir = 'exe'
2525
spec.executables = `git ls-files -- exe/*`.split($RS).map(&File.method(:basename))
2626
spec.require_paths = ['lib']
27-
spec.required_ruby_version = '>= 3.0'
27+
spec.required_ruby_version = '>= 3.1'
2828
end

0 commit comments

Comments
 (0)