No commit activity in last 3 years
No release in over 3 years
Check gem update.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.10
~> 10.0
~> 3.3.0
~> 1.21.0
 Project Readme

GemUpdateChecker

Build Status Gem Version

This gem is gem update check.

Installation

Add this line to your application's Gemfile:

gem 'gem_update_checker'

And then execute:

$ bundle

Or install it yourself as:

$ gem install gem_update_checker

Usage

require 'gem_update_checker'

gem_name = 'your_gem_name'
current_version = '0.0.1'
checker = GemUpdateChecker::Client.new(gem_name, current_version)

if checker.update_available
  puts "#{gem_name} #{checker.latest_version} is available"
  puts "please run gem update #{gem_name}"
end

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/henteko/gem_update_checker.

License

MIT