Skip to content

Commit aa336d6

Browse files
committed
Drop support for EOL'd Ruby 2.6
1 parent fbebd54 commit aa336d6

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ jobs:
1010

1111
matrix:
1212
ruby-version:
13-
- '2.6'
1413
- '2.7'
1514
- '3.0'
1615
- '3.1'

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require:
66
AllCops:
77
DisplayCopNames: true
88
NewCops: enable
9-
TargetRubyVersion: 2.6
9+
TargetRubyVersion: 2.7
1010

1111
Bundler/DuplicatedGem:
1212
Enabled: false

Gemfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ group :test do
1616
end
1717

1818
group :development do
19-
gem "rubocop", "~> 1.50.2"
19+
gem "rubocop"
2020
gem "rubocop-minitest"
2121
gem "rubocop-performance"
2222
gem "rubocop-rake"

Gemfile.lock

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ GEM
2121
execjs (2.9.1)
2222
json (2.7.1)
2323
json (2.7.1-java)
24+
language_server-protocol (3.17.0.3)
2425
minitest (5.20.0)
2526
parallel (1.24.0)
2627
parser (3.2.2.4)
@@ -33,14 +34,15 @@ GEM
3334
rake (13.1.0)
3435
regexp_parser (2.8.3)
3536
rexml (3.2.6)
36-
rubocop (1.50.2)
37+
rubocop (1.59.0)
3738
json (~> 2.3)
39+
language_server-protocol (>= 3.17.0)
3840
parallel (~> 1.10)
39-
parser (>= 3.2.0.0)
41+
parser (>= 3.2.2.4)
4042
rainbow (>= 2.2.2, < 4.0)
4143
regexp_parser (>= 1.8, < 3.0)
4244
rexml (>= 3.2.5, < 4.0)
43-
rubocop-ast (>= 1.28.0, < 2.0)
45+
rubocop-ast (>= 1.30.0, < 2.0)
4446
ruby-progressbar (~> 1.7)
4547
unicode-display_width (>= 2.4.0, < 3.0)
4648
rubocop-ast (1.30.0)
@@ -72,7 +74,7 @@ DEPENDENCIES
7274
bundler (~> 2.4.0)
7375
minitest
7476
rake (>= 11)
75-
rubocop (~> 1.50.2)
77+
rubocop
7678
rubocop-minitest
7779
rubocop-performance
7880
rubocop-rake

simplecov-html.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
1414
gem.summary = gem.description
1515
gem.license = "MIT"
1616

17-
gem.required_ruby_version = ">= 2.6"
17+
gem.required_ruby_version = ">= 2.7"
1818

1919
gem.files = Dir.chdir(__dir__) do
2020
`git ls-files -z`.split("\x0").reject do |f|

0 commit comments

Comments
 (0)