How do I view a list of all the gems in a given gemset? And is it possible to use multiple gemsets at a time or only one?
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.
You can call
gem listand it will display all the gems in your current gemset. You can only use one gemset at a time, but there is a hierarchy of gemsets. You can create aglobalgemset with (for example)rakeandpryin it, and then any gemset you create (using the same version of ruby, of course) will inherit those gems into it.