Skip to content

Commit d343876

Browse files
authored
Merge pull request #6 from DannyBen/remove/ruby30
Drop support for Ruby 3.0
2 parents b72b2a0 + 5085412 commit d343876

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
LC_ALL: en_US.UTF-8 # consistent sort order
1313

1414
strategy:
15-
matrix: { ruby: ['3.0', '3.1', '3.2', '3.3'] }
15+
matrix: { ruby: ['3.1', '3.2', '3.3', '3.4'] }
1616

1717
steps:
1818
- name: Checkout code

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ inherit_gem:
88
- rspec.yml
99

1010
AllCops:
11-
TargetRubyVersion: 3.0
11+
TargetRubyVersion: 3.1
1212
SuggestExtensions: false
1313
Exclude:
1414
- 'dev/**/*'

gtx.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Gem::Specification.new do |s|
1212
s.files = Dir['README.md', 'lib/**/*.*']
1313
s.homepage = 'https://github.com/dannyben/gtx'
1414
s.license = 'MIT'
15-
s.required_ruby_version = '>= 3.0'
15+
s.required_ruby_version = '>= 3.1'
1616

1717
s.add_dependency 'erb', '~> 4.0'
1818

0 commit comments

Comments
 (0)