From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: AS200651 185.10.68.0/24 X-Spam-Status: No, score=-2.9 required=3.0 tests=AWL,BAYES_00,RCVD_IN_XBL, RDNS_NONE,SPF_FAIL,SPF_HELO_FAIL,TO_EQ_FM_DOM_SPF_FAIL shortcircuit=no autolearn=no autolearn_force=no version=3.4.0 Received: from 80x24.org (unknown [185.10.68.114]) by dcvr.yhbt.net (Postfix) with ESMTP id 4FF601F407 for ; Fri, 15 Dec 2017 19:56:07 +0000 (UTC) From: Eric Wong To: olddoc-public@80x24.org Subject: [PATCH] support rdoc 6.0 Date: Fri, 15 Dec 2017 19:56:05 +0000 Message-Id: <20171215195605.14000-1-e@80x24.org> List-Id: Supporting rdoc 6.0 required no actual code changes on our part, and I'm not seeing any obvious compatibilities when view git history of https://github.com/ruby/rdoc.git Diffing the output seems to reveal no changes, either. --- lib/rdoc/discover.rb | 2 +- olddoc.gemspec | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/rdoc/discover.rb b/lib/rdoc/discover.rb index 30c5ae2..00242e9 100644 --- a/lib/rdoc/discover.rb +++ b/lib/rdoc/discover.rb @@ -1,6 +1,6 @@ # :stopdoc: begin - gem 'rdoc', [ '>= 4.2', '< 6.0' ] + gem 'rdoc', [ '>= 4.2', '< 7.0' ] require_relative '../olddoc' rescue Gem::LoadError end unless defined?(Olddoc) diff --git a/olddoc.gemspec b/olddoc.gemspec index f84ee6c..c218378 100644 --- a/olddoc.gemspec +++ b/olddoc.gemspec @@ -17,7 +17,7 @@ Gem::Specification.new do |s| s.files = manifest # works fine with RDoc 5.x - s.add_dependency('rdoc', ['>= 4.2', '< 6.0']) + s.add_dependency('rdoc', ['>= 4.2', '< 7.0']) s.required_ruby_version = '>= 1.9.3' s.homepage = Olddoc.config['rdoc_url'] s.licenses = 'GPL-3.0+' -- EW