aboutsummaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorKazuki Yamaguchi <k@rhe.jp>2016-08-18 19:15:20 +0900
committerKazuki Yamaguchi <k@rhe.jp>2016-08-18 22:00:37 +0900
commitdf476cdaa935204b318a28ee588ba40ed994b072 (patch)
treeb6f0ee663c0c6a75a7f37b2f6b8f96adb9fed300 /Rakefile
parent666b87049a4195859d25cfc7462e3f6c54c57879 (diff)
downloadruby-openssl-df476cdaa935204b318a28ee588ba40ed994b072.tar.gz
Fix RDoc main pagetopic/gh-pages-rdoc
Include *.md, and use README.md as the main page.
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 82669ea8..e0fb9c8e 100644
--- a/Rakefile
+++ b/Rakefile
@@ -19,7 +19,8 @@ Rake::ExtensionTask.new('test/mdebug') do |ext|
end
RDoc::Task.new do |rdoc|
- rdoc.rdoc_files.include("README.md", "lib/**/*.rb", "ext/**/*.c")
+ rdoc.main = "README.md"
+ rdoc.rdoc_files.include("*.md", "lib/**/*.rb", "ext/**/*.c")
end
task :test => :debug