Skip to content

Commit

Permalink
Drop Ruby 2.6 support
Browse files Browse the repository at this point in the history
The required IRB version only supports 2.7+
  • Loading branch information
st0012 committed Dec 3, 2023
1 parent fd4a4a9 commit 50f1a88
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/protocol.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: ['2.6', '2.7', '3.0', '3.1', 'head', 'debug']
ruby-version: ["2.7", "3.0", "3.1", "head", "debug"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2', 'head', 'debug']
ruby-version: ["2.7", "3.0", "3.1", "3.2", "head", "debug"]

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# debug.rb

This library provides debugging functionality to Ruby (MRI) 2.6 and later.
This library provides debugging functionality to Ruby (MRI) 2.7 and later.

This debug.rb is replacement of traditional lib/debug.rb standard library which is implemented by `set_trace_func`.
New debug.rb has several advantages:
Expand Down
2 changes: 1 addition & 1 deletion debug.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Gem::Specification.new do |spec|
spec.description = %q{Debugging functionality for Ruby. This is completely rewritten debug.rb which was contained by the ancient Ruby versions.}
spec.homepage = "https://github.com/ruby/debug"
spec.licenses = ["Ruby", "BSD-2-Clause"]
spec.required_ruby_version = Gem::Requirement.new(">= 2.6.0")
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
Expand Down
2 changes: 1 addition & 1 deletion misc/README.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# debug.rb

This library provides debugging functionality to Ruby (MRI) 2.6 and later.
This library provides debugging functionality to Ruby (MRI) 2.7 and later.

This debug.rb is replacement of traditional lib/debug.rb standard library which is implemented by `set_trace_func`.
New debug.rb has several advantages:
Expand Down

0 comments on commit 50f1a88

Please sign in to comment.