我通常不需要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
关于ruby-on-rails - 之后如何安装gem的ri和rdoc文件?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/18544900/