Skip to content

Commit 7a0f2ca

Browse files
authored
Drop support for ruby 2.6 (#10)
1 parent feff0fb commit 7a0f2ca

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/gem-push.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ jobs:
1414

1515
steps:
1616
- uses: actions/checkout@v2
17-
- name: Set up Ruby 2.6
17+
- name: Set up Ruby 2.7
1818
uses: actions/setup-ruby@v1
1919
with:
20-
ruby-version: 2.6.x
20+
ruby-version: 2.7.x
2121

2222
- name: Publish to GPR
2323
run: |

.github/workflows/ruby.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
strategy:
2020
matrix:
21-
ruby-version: ["2.6", "2.7", "3.0", "3.1"]
21+
ruby-version: ["2.7", "3.0", "3.1"]
2222
allow-failure: [false]
2323
include:
2424
- ruby-version: "ruby-head"

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
AllCops:
2-
TargetRubyVersion: 2.6
2+
TargetRubyVersion: 2.7
33
Metrics/AbcSize:
44
Enabled: false
55
Metrics/CyclomaticComplexity:

edits.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
2525
spec.bindir = "exe"
2626
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
2727
spec.require_paths = ["lib"]
28-
spec.required_ruby_version = ">= 2.6"
28+
spec.required_ruby_version = ">= 2.7"
2929

3030
spec.add_development_dependency "benchmark-ips", "~> 2.8"
3131
spec.add_development_dependency "bundler", "~> 2.0"

0 commit comments

Comments
 (0)