调用时正在运行什么命令bundle
?它只是bundle install
在引擎盖下调用吗?
问问题
50 次
1 回答
1
Just running bundle
calls the bundle script with it's last parameter-set.
Suppose, in your project, you initially did bundle install
and then changed your Gemfile. To update the gems, you need not repeat bundle install
again (though, you still can), you can simply run:
bundle
Similarly, if you initially used bundle install --binstubs
(with binstubs flag), using bundle
later in the project, will trigger the former command again.
Good luck. :)
于 2012-05-17T20:21:24.873 回答