Skip to content

Commit 8d72e6e

Browse files
authored
Merge pull request #508 from DannyBen/remove/ruby30
Drop support for Ruby 3.0
2 parents 0549c60 + 865d6ac commit 8d72e6e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
LC_ALL: en_US.UTF-8
1515

1616
strategy:
17-
matrix: { ruby: ['3.0', '3.1', '3.2', '3.3'] }
17+
matrix: { ruby: ['3.1', '3.2', '3.3'] }
1818

1919
steps:
2020
- 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
Exclude:
1313
- dev/**/*
1414

bashly.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.executables = ['bashly']
1414
s.homepage = 'https://github.com/dannyben/bashly'
1515
s.license = 'MIT'
16-
s.required_ruby_version = '>= 3.0'
16+
s.required_ruby_version = '>= 3.1'
1717

1818
s.add_dependency 'colsole', '>= 0.8.1', '< 2'
1919
s.add_dependency 'completely', '~> 0.6.1'

lib/bashly/script/base.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def help
2929
options['help'] ||= ''
3030
end
3131

32-
def method_missing(method_name, *arguments, &block)
32+
def method_missing(method_name, *arguments, &)
3333
key = method_name.to_s
3434
respond_to?(method_name) ? options[key] : super
3535
end

0 commit comments

Comments
 (0)