From 9dc4837424e5111ea588587963e6b5f9be28a85f Mon Sep 17 00:00:00 2001 From: Stan Lo Date: Sat, 6 Jul 2024 22:39:11 +0100 Subject: [PATCH] RDoc task should include top-level .md files too Otherwise, `ri.md` and `ExampleMarkdown.md` will not be included in the generated documentation. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index b951ef8f0e..2cd29bdd84 100644 --- a/Rakefile +++ b/Rakefile @@ -24,7 +24,7 @@ RDoc::Task.new do |doc| doc.main = 'README.rdoc' doc.title = "rdoc #{RDoc::VERSION} Documentation" doc.rdoc_dir = '_site' # for github pages - doc.rdoc_files = FileList.new %w[lib/**/*.rb *.rdoc doc/rdoc/markup_reference.rb] - PARSER_FILES + doc.rdoc_files = FileList.new %w[lib/**/*.rb *.rdoc *.md doc/rdoc/markup_reference.rb] - PARSER_FILES end task "coverage" do