I’m using Bundler for the gem dependency management.
Is there a way to get a notification when a new gem of a gem specified in Gemfile available?
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.
According to “Can bundler show me which gems in Gemfile have newer versions (eg. dry-run of bundle update)” topic – there is no direct way to do it.
As a workaround if you use version controll just invoke
bundler updateprint diff ofGemfile.lock(against version from repo) and revert it back.Update Jun 2012: as of bundler 1.1 there is new command option
bundle outdated– it prints nicely what are installed and latest versions of gems:Thanks Shaun.