mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Add --ri-system option
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5373 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
90d913613c
commit
7336cf5424
2 changed files with 18 additions and 6 deletions
|
@ -196,11 +196,12 @@ Options are:
|
||||||
[<tt>--quiet</tt>]
|
[<tt>--quiet</tt>]
|
||||||
do not display progress messages
|
do not display progress messages
|
||||||
|
|
||||||
[<tt>--ri</tt> _and_ <tt>--ri-site</tt>]
|
[<tt>--ri</tt>, <tt>--ri-site</tt>, _and_ <tt>--ri-system</tt>]
|
||||||
generate output than can be read by the _ri_ command-line tool.
|
generate output than can be read by the _ri_ command-line tool.
|
||||||
By default --ri places its output in ~/.rdoc, and --ri-site in
|
By default --ri places its output in ~/.rdoc, --ri-site in
|
||||||
$datadir/ri/<ver>/site. Both can be overridden with a subsequent
|
$datadir/ri/<ver>/site, and --ri-system in
|
||||||
--op option. Both default directories are in ri's default search
|
$datadir/ri/<ver>/system. All can be overridden with a subsequent
|
||||||
|
--op option. All default directories are in ri's default search
|
||||||
path.
|
path.
|
||||||
|
|
||||||
[<tt>--show-hash</tt>]
|
[<tt>--show-hash</tt>]
|
||||||
|
|
|
@ -198,6 +198,12 @@ class Options
|
||||||
"stored in a site-wide directory, making them accessible\n"+
|
"stored in a site-wide directory, making them accessible\n"+
|
||||||
"to others, so special privileges are needed." ],
|
"to others, so special privileges are needed." ],
|
||||||
|
|
||||||
|
[ "--ri-system", "-Y", nil,
|
||||||
|
"generate output for use by 'ri.' The files are\n" +
|
||||||
|
"stored in a system-level directory, making them accessible\n"+
|
||||||
|
"to others, so special privileges are needed. This option\n"+
|
||||||
|
"is intended to be used during Ruby installations" ],
|
||||||
|
|
||||||
[ "--show-hash", "-H", nil,
|
[ "--show-hash", "-H", nil,
|
||||||
"A name of the form #name in a comment\n" +
|
"A name of the form #name in a comment\n" +
|
||||||
"is a possible hyperlink to an instance\n" +
|
"is a possible hyperlink to an instance\n" +
|
||||||
|
@ -431,9 +437,14 @@ class Options
|
||||||
when "--include"
|
when "--include"
|
||||||
@rdoc_include.concat arg.split(/\s*,\s*/)
|
@rdoc_include.concat arg.split(/\s*,\s*/)
|
||||||
|
|
||||||
when "--ri", "--ri-site"
|
when "--ri", "--ri-site", "--ri-system"
|
||||||
@generator_name = "ri"
|
@generator_name = "ri"
|
||||||
@op_dir = opt == "--ri" ? RI::Paths::HOMEDIR : RI::Paths::SITEDIR
|
@op_dir = case opt
|
||||||
|
when "--ri" then RI::Paths::HOMEDIR
|
||||||
|
when "--ri-site" then RI::Paths::SITEDIR
|
||||||
|
when "--ri-system" then RI::Paths::SYSDIR
|
||||||
|
else fail opt
|
||||||
|
end
|
||||||
setup_generator(generators)
|
setup_generator(generators)
|
||||||
|
|
||||||
when "--tab-width"
|
when "--tab-width"
|
||||||
|
|
Loading…
Add table
Reference in a new issue