将 --no-rdoc 和 --no-ri 与捆绑器一起使用
当使用 gem install gem_name
时,我可以传递 --no-rdoc
和 --no-ri
开关来跳过生成 RDoc/RI 文档安装时宝石。
是否有类似的方法可以使用 bundle install
来执行此操作?
When using gem install gem_name
I can pass --no-rdoc
and --no-ri
switches to skip generating RDoc/RI documentation for the gem on install.
Is there a similar way to do this with bundle install
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
Bundler 不包括 rdoc 和 ri。您无需执行任何操作。
Bundler doesn't include rdoc and ri. There is nothing you need to do.
创建一个文件
~/.gemrc
并将其放入其中:gem: --no-rdoc --no-ri
这应该使它在您运行
时应用>gem
命令。 (甚至来自捆绑安装
)Make a file
~/.gemrc
and put this in it:gem: --no-rdoc --no-ri
That should make it apply whenever you run the
gem
command. (Even frombundle install
)请参阅 https://stackoverflow.com/a/7662245/109618 以获得更好的
~/.gemrc:
See https://stackoverflow.com/a/7662245/109618 for a better
~/.gemrc
:~/.gemrc
的最新设置是但正如所指出的,这已经是
bundler
的默认设置。The up-to-date setting for
~/.gemrc
isBut as pointed out, this is already
bundler
's default.