Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法通过安装gem,bundle install所以它们不会安装在 ruby 文件夹中,而是安装在项目的文件夹中?(我将使用 .gitignore )
bundle install
有没有办法只对一些宝石这样做?
您可以使用以下命令指定安装路径--path:
--path
bundle install --path='./gems/'
这是一个记住的选项,因此您只需要在第一次指定它。