Skip to content

Commit b40017f

Browse files
committed
Drop support for EOL'd Ruby 2.5
1 parent 29a4b66 commit b40017f

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
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.5'
1413
- '2.6'
1514
- '2.7'
1615
- '3.0'

.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.5
9+
TargetRubyVersion: 2.6
1010

1111
Bundler/DuplicatedGem:
1212
Enabled: false

Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ source "https://rubygems.org"
44

55
gemspec
66

7+
gem "bundler", "~> 2.4.0"
78
gem "rake", ">= 11"
89

910
# Use local copy of simplecov in development if you want to

Gemfile.lock

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ PLATFORMS
6868
ruby
6969

7070
DEPENDENCIES
71+
bundler (~> 2.4.0)
7172
minitest
7273
rake (>= 11)
7374
rubocop
@@ -81,4 +82,4 @@ DEPENDENCIES
8182
yui-compressor
8283

8384
BUNDLED WITH
84-
2.5.3
85+
2.4.22

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.5"
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)