I found BUNDLE_DISABLE_SHARED_GEMS: '1', in .bundle/config. What does it mean?
I found BUNDLE_DISABLE_SHARED_GEMS: ‘1’ , in .bundle/config . What does it mean?
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 takes some settings from the
~/.bundle/configfile — not from the shell env.When set to true (default), the install of all gems will be to
BUNDLE_PATH, regardless of whether those gems are installed in your system.Bundler will not install gems already in system gems by default, so this is especially useful if you’re trying to package up an application with all dependencies unpacked.