Skip to content

Commit

Permalink
Merge pull request #46 from koic/drop_ruby_25_runtime_support
Browse files Browse the repository at this point in the history
Drop Ruby 2.5 runtime support
  • Loading branch information
koic committed Aug 5, 2022
2 parents 0122e47 + e342661 commit 7b18fd6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["2.5", "2.6", "2.7", "3.0", "3.1", ruby-head]
ruby: ["2.6", "2.7", "3.0", "3.1", ruby-head]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ AllCops:
- 'spec/fixtures/**/*'
- 'tmp/**/*'
- 'vendor/**/*'
TargetRubyVersion: 2.5
TargetRubyVersion: 2.6

Naming/FileName:
Exclude:
Expand Down
2 changes: 1 addition & 1 deletion rubocop-packaging.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
spec.files = Dir["config/default.yml", "lib/**/*", "LICENSE", "README.md"]
spec.require_paths = ["lib"]

spec.required_ruby_version = Gem::Requirement.new(">= 2.5.0")
spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")

spec.add_development_dependency "bump", "~> 0.8"
spec.add_development_dependency "pry", "~> 0.13"
Expand Down

0 comments on commit 7b18fd6

Please sign in to comment.