summaryrefslogtreecommitdiff
path: root/lib/irb/irb.gemspec
diff options
context:
space:
mode:
authorStan Lo <stan001212@gmail.com>2023-08-31 16:44:13 +0100
committergit <svn-admin@ruby-lang.org>2023-08-31 15:44:17 +0000
commit3678734fac7a4d3d7e160200153090dcba6e3d94 (patch)
tree9b76dec358e1ee9804cf66af761e0034a434f84a /lib/irb/irb.gemspec
parent43825fba6eb39980130fd9bf47acb2000cde55d3 (diff)
[ruby/irb] Drop rdoc's version requirement
(https://github.com/ruby/irb/pull/704) 1. The newer versions of rdoc requires pysch 4.0+, which could break apps using Ruby 3.0 or 2.7. #703 has more detailed explanation on this. 2. We actually don't use any version-specific rdoc APIs. So having a version requirement is not necessary atm. https://github.com/ruby/irb/commit/3e6ba78c42
Diffstat (limited to 'lib/irb/irb.gemspec')
-rw-r--r--lib/irb/irb.gemspec2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/irb/irb.gemspec b/lib/irb/irb.gemspec
index 50f6a22209..a008a39f9d 100644
--- a/lib/irb/irb.gemspec
+++ b/lib/irb/irb.gemspec
@@ -42,5 +42,5 @@ Gem::Specification.new do |spec|
spec.required_ruby_version = Gem::Requirement.new(">= 2.7")
spec.add_dependency "reline", ">= 0.3.8"
- spec.add_dependency "rdoc", "~> 6.5"
+ spec.add_dependency "rdoc"
end