将 --no-rdoc 和 --no-ri 与捆绑器一起使用

发布于 2024-12-06 09:12:41 字数 180 浏览 0 评论 0原文

当使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

月下凄凉 2024-12-13 09:12:41

Bundler 不包括 rdoc 和 ri。您无需执行任何操作。

Bundler doesn't include rdoc and ri. There is nothing you need to do.

甚是思念 2024-12-13 09:12:41

创建一个文件 ~/.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 from bundle install)

假扮的天使 2024-12-13 09:12:41

请参阅 https://stackoverflow.com/a/7662245/109618 以获得更好的 ~/.gemrc:

install: --no-rdoc --no-ri 
update:  --no-rdoc --no-ri

See https://stackoverflow.com/a/7662245/109618 for a better ~/.gemrc:

install: --no-rdoc --no-ri 
update:  --no-rdoc --no-ri
著墨染雨君画夕 2024-12-13 09:12:41

~/.gemrc 的最新设置是

gem: --no-document

但正如所指出的,这已经是 bundler 的默认设置。

The up-to-date setting for ~/.gemrc is

gem: --no-document

But as pointed out, this is already bundler's default.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文