Skip to content

henteko/gem_update_checker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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