1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[DOC] Set the documentation title and main page

Copied from https://github.com/ruby/docs.ruby-lang.org/ to be as
same as docs.ruby-lang.org.
This commit is contained in:
Nobuyoshi Nakada 2022-02-21 13:05:24 +09:00
parent 1abd068445
commit f92f08ff23
No known key found for this signature in database
GPG key ID: 7CD2805BFA3770C6
2 changed files with 5 additions and 1 deletions

View file

@ -1,2 +1,4 @@
---
page_dir: doc
main_page: README.md
title: Documentation for Ruby development version

View file

@ -70,7 +70,9 @@ RDOCOUT = $(EXTOUT)/rdoc
HTMLOUT = $(EXTOUT)/html
CAPIOUT = doc/capi
INSTALL_DOC_OPTS = --rdoc-output="$(RDOCOUT)" --html-output="$(HTMLOUT)"
RDOC_GEN_OPTS = --page-dir "$(srcdir)/doc" --no-force-update
RDOC_GEN_OPTS = --page-dir "$(srcdir)/doc" --no-force-update \
--title "Documentation for Ruby $(RUBY_API_VERSION)" \
--main README.md
INITOBJS = dmyext.$(OBJEXT) dmyenc.$(OBJEXT)
NORMALMAINOBJ = main.$(OBJEXT)