Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Tools for monitoring when new gem versions are released?

Does anyone know of any tools to monitor and alert me when new versions of gems named in my Gemfile are released?

It could be as simple as a rake task that reports my current version and the latest version, or as fancy as a background process that logs messages to the console whenever new versions are available.

like image 992
Jarrod Carlson Avatar asked May 29 '12 23:05

Jarrod Carlson


2 Answers

Bundler 1.1 introduced the command

bundle outdated

But, as you mentioned, for those with v 1.0, the bundle-outdated gem exists.

like image 55
Nick Colgan Avatar answered Sep 20 '22 16:09

Nick Colgan


I'm using this site: bundle watcher

You just upload your gem file or link to it, and then you are notified via RSS when an update is available.

like image 39
Pierre Avatar answered Sep 19 '22 16:09

Pierre