Can someone please describe what is Bunder and what is its role?
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.
Bundler is a ruby gem which is used to Manage your application dependencies. It can be called gem management system.
When you are developing Rails project with multiple people, and those people have different version of gem installed in their PC, bundler is very helpful in this case. When you run
bundle installbundler will look for the specific gem version you are using in your project, if it doesn’t have the correct version, bundler will install that gem automatically, if it does, bundler will use the existing gem for your project. It makes all PC used to develop the project use the same version of ruby gems.