From 3678734fac7a4d3d7e160200153090dcba6e3d94 Mon Sep 17 00:00:00 2001 From: Stan Lo Date: Thu, 31 Aug 2023 16:44:13 +0100 Subject: [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 --- lib/irb/irb.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/irb/irb.gemspec') 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 -- cgit v1.2.3