我在所有Rails项目中都使用了很多宝石,但这不是项目’Gems的一部分,例如用于管理POW的粉末.
使用全局Gemfile管理这些是有意义的,但我看不到任何这样的例子.
我应该如何在项目gemfiles中管理我不想要的全局Gems?当我设置新机器等时,单点安装会很好.
解决方法
像往常一样制作Gemfile,并将其放在任何文件夹中.它不需要是项目文件夹.然后你可以这样做:
bundle install --system
这将在系统范围内的Gemfile中安装gem,如果您无权访问系统文件夹,则会询问root密码.
–system:
Installs the gems in the bundle to the system location. This overrides any prevIoUs remembered use of –path.
如果要以某种方式组织Gemfile,也可以命名它们,然后执行以下操作:
bundle install --system --gemfile Gemfile_name