From b171e997912f4980c6a948aa98a584d2554ec954 Mon Sep 17 00:00:00 2001 From: zzak Date: Mon, 6 Feb 2023 13:04:01 +0900 Subject: [PATCH] [ruby/rdoc] Actually execute RDoc document task for coverage https://github.com/ruby/rdoc/commit/7e70d41585 --- lib/rdoc/task.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/rdoc/task.rb b/lib/rdoc/task.rb index d960f7a60e..eb584c9d2a 100644 --- a/lib/rdoc/task.rb +++ b/lib/rdoc/task.rb @@ -259,6 +259,7 @@ class RDoc::Task < Rake::TaskLib args = opts + @rdoc_files $stderr.puts "rdoc #{args.join ' '}" if Rake.application.options.trace + RDoc::RDoc.new.document args end end