Skip to content

Commit

Permalink
Drop Ruby 2.7 support as EOL and I have trouble with some deps
Browse files Browse the repository at this point in the history
  • Loading branch information
PragTob committed Jun 22, 2024
1 parent 0522dbc commit d6f4bb1
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion .github/workflows/stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:

matrix:
ruby-version:
- '2.7'
- '3.0'
- '3.1'
- '3.2'
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ AllCops:
- "tmp/**/*"
- "vendor/bundle/**/*"
- "vendor/bundle/**/.*"
TargetRubyVersion: 2.7
TargetRubyVersion: 3.0
NewCops: enable
# we might wanna adopt rspec and rake but it's a bit annoying for now
SuggestExtensions: false
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ SimpleCov.formatter = SimpleCov::Formatter::JSONFormatter

## Ruby version compatibility

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

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

Expand Down
2 changes: 1 addition & 1 deletion simplecov.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Gem::Specification.new do |gem|
"rubygems_mfa_required" => "true"
}

gem.required_ruby_version = ">= 2.7.0"
gem.required_ruby_version = ">= 3.0.0"

gem.add_dependency "docile", "~> 1.1"
gem.add_dependency "simplecov-html", "~> 0.11"
Expand Down

0 comments on commit d6f4bb1

Please sign in to comment.