Skip to content

Commit 9811f5e

Browse files
committed
Revert "Drop Ruby 2.7 support as EOL and I have trouble with some deps"
This reverts commit 31eed31.
1 parent c7102e4 commit 9811f5e

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.github/workflows/stable.yml

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

1414
matrix:
1515
ruby-version:
16+
- '2.7'
1617
- '3.0'
1718
- '3.1'
1819
- '3.2'

.rubocop.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ AllCops:
1010
- "tmp/**/*"
1111
- "vendor/bundle/**/*"
1212
- "vendor/bundle/**/.*"
13-
TargetRubyVersion: 3.0
13+
TargetRubyVersion: 2.7
1414
NewCops: enable
1515
# we might wanna adopt rspec and rake but it's a bit annoying for now
1616
SuggestExtensions: false

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -889,7 +889,7 @@ SimpleCov.formatter = SimpleCov::Formatter::JSONFormatter
889889

890890
## Ruby version compatibility
891891

892-
SimpleCov is built in [Continuous Integration] on Ruby 3.0+ as well as JRuby 9.3+.
892+
SimpleCov is built in [Continuous Integration] on Ruby 2.7+ as well as JRuby 9.3+.
893893

894894
Note for JRuby => You need to pass JRUBY_OPTS="--debug" or create .jrubyrc and add debug.fullTrace=true
895895

simplecov.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Gem::Specification.new do |gem|
3333
"rubygems_mfa_required" => "true"
3434
}
3535

36-
gem.required_ruby_version = ">= 3.0.0"
36+
gem.required_ruby_version = ">= 2.7.0"
3737

3838
gem.add_dependency "docile", "~> 1.1"
3939
gem.add_dependency "simplecov-html", "~> 0.11"

0 commit comments

Comments
 (0)