diff options
author | zzak <[email protected]> | 2023-02-06 13:04:01 +0900 |
---|---|---|
committer | git <[email protected]> | 2023-02-06 23:09:05 +0000 |
commit | b171e997912f4980c6a948aa98a584d2554ec954 (patch) | |
tree | 6f6994b6619c058cae8c81c435d030c9333f3e19 /lib/rdoc | |
parent | c19defd02665492de7147572714ebe692260c849 (diff) |
[ruby/rdoc] Actually execute RDoc document task for coverage
https://github.com/ruby/rdoc/commit/7e70d41585
Diffstat (limited to 'lib/rdoc')
-rw-r--r-- | lib/rdoc/task.rb | 1 |
1 files changed, 1 insertions, 0 deletions
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 |