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.
我已经使用 Rails 3 有一段时间了,从来没有遇到过运行bundle和bundle install安装 gem之间区别的答案Gemfile。
bundle
bundle install
Gemfile
这两个命令有什么区别吗?
No. install只是该bundle命令的默认选项。但是,不要在您的 Gemfile 中运行任何一个,只需指定gem "fubar"那里 - 捆绑器知道如何读取和处理该文件。
install
gem "fubar"