When setting up a new Rails project (version >= 3) I would like to prevent version confusion for future team mates by including the rvm “bundle install” in the current git project. Are there any recommended best practices for doing this?
Share
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.
Rails 3 is integrated with Bundler – versions of Gems you use are saved into
Gemfile.lockfile and they will be available for everyone else using your project.bundle installwill give your teammates the same versions of Gems that you have installed, so if I understand your question correctly you don’t have to do anything above what Rails already gives you.