In my GEM file i have:
gem 'shoulda'
But I would like to use the latest version. How can I do it ?
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.
This will use the latest version available as a gem. If a new version of shoulda was released since you wrote it in Gemfile, you will have to use
bundle update shoulda, so it will get updated (according to the version specified in your Gemfile, which in your case means the latest available).You can also set it so it use the git repository as source, and then you’ll truly have the latest version. I suggest you read gembundler manual for more on this topic