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

* lib/rdoc/*: Added --root option for building documentation outside

the source directory.
* test/rdoc/*:  ditto
* common.mk (rdoc):  Added --root to rdoc rule


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37896 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
drbrain 2012-11-27 08:54:03 +00:00
parent 7de9e2dfde
commit 6d1266a879
20 changed files with 169 additions and 35 deletions

View file

@ -1026,7 +1026,7 @@ EOF
stream = [
tk(:COMMENT, 0, 1, 1, nil,
"# File #{@top_level.absolute_name}, line 1"),
"# File #{@top_level.relative_name}, line 1"),
RDoc::Parser::Ruby::NEWLINE_TOKEN,
tk(:SPACE, 0, 1, 1, nil, ''),
]
@ -1199,7 +1199,7 @@ EOF
stream = [
tk(:COMMENT, 0, 1, 1, nil,
"# File #{@top_level.absolute_name}, line 1"),
"# File #{@top_level.relative_name}, line 1"),
RDoc::Parser::Ruby::NEWLINE_TOKEN,
tk(:SPACE, 0, 1, 1, nil, ''),
tk(:IDENTIFIER, 0, 1, 0, 'add_my_method', 'add_my_method'),
@ -1397,7 +1397,7 @@ end
stream = [
tk(:COMMENT, 0, 1, 1, nil,
"# File #{@top_level.absolute_name}, line 1"),
"# File #{@top_level.relative_name}, line 1"),
RDoc::Parser::Ruby::NEWLINE_TOKEN,
tk(:SPACE, 0, 1, 1, nil, ''),
tk(:DEF, 0, 1, 0, 'def', 'def'),