From bc3840bd21618d55d81dead811861dc673960c11 Mon Sep 17 00:00:00 2001 From: ksss Date: Mon, 22 Dec 2025 16:13:12 +0900 Subject: [PATCH] Support rdoc v7 --- Gemfile | 2 +- Gemfile.lock | 4 ++-- lib/rdoc/discover.rb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index 273f08b49..79b7ff9a6 100644 --- a/Gemfile +++ b/Gemfile @@ -16,7 +16,7 @@ gem "json-schema" gem "goodcheck" gem 'digest' gem 'tempfile' -gem "rdoc", "~> 6.16" +gem "rdoc" gem "fileutils" gem "raap" gem "activesupport", "~> 7.0" diff --git a/Gemfile.lock b/Gemfile.lock index cb6e2b8ed..6f88d16a7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -106,7 +106,7 @@ GEM rb-fsevent (0.11.2) rb-inotify (0.11.1) ffi (~> 1.0) - rdoc (6.17.0) + rdoc (7.0.1) erb psych (>= 4.0.0) tsort @@ -219,7 +219,7 @@ DEPENDENCIES rake-compiler rbs! rbs-amber! - rdoc (~> 6.16) + rdoc rspec rubocop rubocop-on-rbs diff --git a/lib/rdoc/discover.rb b/lib/rdoc/discover.rb index 3696a11e2..e0bf2cb7a 100644 --- a/lib/rdoc/discover.rb +++ b/lib/rdoc/discover.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true begin - gem 'rdoc', '~> 6.16' + gem 'rdoc', '>= 6.16' require 'rdoc_plugin/parser' module RDoc class Parser