Skip to content

Commit b15e26f

Browse files
committed
Revert "Drop support for EOL'd Ruby 2.6"
This reverts commit aa336d6.
1 parent d107616 commit b15e26f

File tree

5 files changed

+8
-9
lines changed

5 files changed

+8
-9
lines changed

.github/workflows/main.yml

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

1111
matrix:
1212
ruby-version:
13+
- '2.6'
1314
- '2.7'
1415
- '3.0'
1516
- '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.7
9+
TargetRubyVersion: 2.6
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"
19+
gem "rubocop", "~> 1.50.2"
2020
gem "rubocop-minitest"
2121
gem "rubocop-performance"
2222
gem "rubocop-rake"

Gemfile.lock

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ 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)
2524
minitest (5.20.0)
2625
parallel (1.24.0)
2726
parser (3.2.2.4)
@@ -35,15 +34,14 @@ GEM
3534
regexp_parser (2.8.3)
3635
rexml (3.3.6)
3736
strscan
38-
rubocop (1.59.0)
37+
rubocop (1.50.2)
3938
json (~> 2.3)
40-
language_server-protocol (>= 3.17.0)
4139
parallel (~> 1.10)
42-
parser (>= 3.2.2.4)
40+
parser (>= 3.2.0.0)
4341
rainbow (>= 2.2.2, < 4.0)
4442
regexp_parser (>= 1.8, < 3.0)
4543
rexml (>= 3.2.5, < 4.0)
46-
rubocop-ast (>= 1.30.0, < 2.0)
44+
rubocop-ast (>= 1.28.0, < 2.0)
4745
ruby-progressbar (~> 1.7)
4846
unicode-display_width (>= 2.4.0, < 3.0)
4947
rubocop-ast (1.30.0)
@@ -77,7 +75,7 @@ DEPENDENCIES
7775
bundler (~> 2.4.0)
7876
minitest
7977
rake (>= 11)
80-
rubocop
78+
rubocop (~> 1.50.2)
8179
rubocop-minitest
8280
rubocop-performance
8381
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.7"
17+
gem.required_ruby_version = ">= 2.6"
1818

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

0 commit comments

Comments
 (0)