Skip to content

Commit

Permalink
Drop support for EOL'd Ruby 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
sferik committed Dec 26, 2023
1 parent fbebd54 commit aa336d6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
1 change: 0 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ jobs:

matrix:
ruby-version:
- '2.6'
- '2.7'
- '3.0'
- '3.1'
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require:
AllCops:
DisplayCopNames: true
NewCops: enable
TargetRubyVersion: 2.6
TargetRubyVersion: 2.7

Bundler/DuplicatedGem:
Enabled: false
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ group :test do
end

group :development do
gem "rubocop", "~> 1.50.2"
gem "rubocop"
gem "rubocop-minitest"
gem "rubocop-performance"
gem "rubocop-rake"
Expand Down
10 changes: 6 additions & 4 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ GEM
execjs (2.9.1)
json (2.7.1)
json (2.7.1-java)
language_server-protocol (3.17.0.3)
minitest (5.20.0)
parallel (1.24.0)
parser (3.2.2.4)
Expand All @@ -33,14 +34,15 @@ GEM
rake (13.1.0)
regexp_parser (2.8.3)
rexml (3.2.6)
rubocop (1.50.2)
rubocop (1.59.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.0.0)
parser (>= 3.2.2.4)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.28.0, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.30.0)
Expand Down Expand Up @@ -72,7 +74,7 @@ DEPENDENCIES
bundler (~> 2.4.0)
minitest
rake (>= 11)
rubocop (~> 1.50.2)
rubocop
rubocop-minitest
rubocop-performance
rubocop-rake
Expand Down
2 changes: 1 addition & 1 deletion simplecov-html.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |gem|
gem.summary = gem.description
gem.license = "MIT"

gem.required_ruby_version = ">= 2.6"
gem.required_ruby_version = ">= 2.7"

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

0 comments on commit aa336d6

Please sign in to comment.