module Toolbox::GemSpecification

Extends the functionality of a Gem::Specification to be able to retrieve the latest version of gems currently on your system.

Usage

Gem::Specification.latest_versions.each do |spec|
  puts "#{spec.name} (#{spec.version})"
end