When I install a new gem, I see this message:
“INFO: gem install -y is now default and will be removed”
What does it mean? My quick Google search didn’t turn up anything useful.
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.
The
-yoption tellsgemto install dependencies when installing the named gem. This is now the default action, so you don’t need to worry about specifying the-yoption any more. Eventually, the developers ofgemwill remove the option-y.So in short, just use
gem installinstead, and ignore the-y.