如何确保某些 RVM 管理的可执行文件始终可用?
如果我安装一个作为 Rubygem 分发的可执行命令,并且在 RVM 管理的环境下执行此操作,那么当我使用 cd 进出目录时,这些可执行文件就会从我的 PATH 中消失。 .rvmrc 用于切换 Ruby 环境的文件。
如何确保某些 Rubygem 可执行文件始终可用,而不是在我的每一个 rvm 环境中安装 gem?
If I install an executable command that is distributed as a Rubygem, and I do it under an RVM-managed environment, these executables disappear from my PATH if I cd
in and out of directories with a .rvmrc
file that switches the Ruby environment.
How can I ensure that certain Rubygem executables are always available, short of installing the gem in every single one of my rvm environments?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用包装器: https://rvm.io/integration/cron/
获取“全局”要点:
现在你可以在任何 ruby 中使用 gist 命令
use wrappers: https://rvm.io/integration/cron/
to get "global" gist:
now you can use gist command in any ruby
您可以将 gem 安装到默认或全局 gemset 中。
You can install the gem into the default or global gemset.