我通常不需要ri和rdoc,所以我这样写~/.gemrc
。
install: --no-ri --no-rdoc
update: --no-ri --no-rdoc
我想在以后有时间的时候安装它们。之后如何为已安装的 gem 安装 ri 和 rdoc 文件?
我通常不需要ri和rdoc,所以我这样写~/.gemrc
。
install: --no-ri --no-rdoc
update: --no-ri --no-rdoc
我想在以后有时间的时候安装它们。之后如何为已安装的 gem 安装 ri 和 rdoc 文件?
# See the relevant help.
gem help rdoc
# Generate rdoc and ri for the "foo" gem.
gem rdoc --ri foo
# Generate rdoc for all installed gems.
gem rdoc --all
根据RubyGems 命令参考的第 10 章,您可以使用gem rdoc
rdoc 来安装。
这是摘录...
Usage: gem rdoc [args] [options]
Options:
--all Generate RDoc documentation for all installed gems
-v, --version VERSION Specify version of gem to rdoc
Common Options:
--source URL Use URL as the remote source for gems
-p, --[no-]http-proxy [URL] Use HTTP proxy for remote operations
-h, --help Get help on this command
--config-file FILE Use this config file instead of default
--backtrace Show stack backtrace on errors
--debug Turn on Ruby debugging
Arguments:
GEMNAME The gem to generate RDoc for (unless --all)
Summary:
Generates RDoc for pre-installed gems
Defaults:
--version '> 0.0.0'