What is the command to download all the gems corresponding to an application
Using Rails 2.3.5
I would like to download all the gems corresponding a new application I cloned.
I can't remember t开发者_如何学Gohe command.
Try this to install all gems specified in environment.rb
:
rake gems:install
You can always use this to see all tasks
rake -T
精彩评论