Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there a way to get notifications for new gems with Bundler?

Tags:

ruby

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?

like image 553
TK. Avatar asked Dec 22 '22 18:12

TK.


2 Answers

While I don't think there's a way to directly monitor your Gemfile, RubyGems' website lets you subscribe to multiple gems if you create an account and log in. Then you could subscribe to the RSS feed (assuming you use an RSS reader) and know every time a new version comes out.

like image 71
Dylan Markow Avatar answered Mar 08 '23 12:03

Dylan Markow


The command bundle outdated will tell you which gems can updated in your bundle. For more information on how to use the command take a look at the help command bundle --help outdated

More documentation on the command: http://gembundler.com/v1.1/bundle_outdated.html

like image 43
Shaun McDonald Avatar answered Mar 08 '23 10:03

Shaun McDonald