Everytime I create a new rails project I have to run bundle install at the end. I know for a fact that not everybody need to do this.
Do you know any way I can avoid this step? It does take some time to complete…
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
bundle installprepares a fixed set of gems for your application, which has all the dependencies and versions resolved. It stores the result in a file calledGemfile.lock.You have to update the
Gemfile.lockafter modifyingGemfile, in this case you have to create it withbundle installafter generating the app.You don’t have to run
bundle installonly if you’re not using Bundler, which is only possible with Rails 2.3.