I learned Rails using just the rake command like rake db:migrate; however, I just read that use should be using the bundle exec rake ... instead of just plain rake and now I am confused about which to use. So should you be using bundle exec rake instead of just plain rake or is it just a preference thing? Any insight would be much appreciated! Thanks!
|
|
|||
|
|
|
That means it uses the gems specified in your Gemfile. Much of the time, running Using It basically standardizes the environment under which the program is run. This helps avoid version hell and makes life much easier. See http://gembundler.com/v1.3/man/bundle-exec.1.html for more info. |
|||||
|