2007-11-10 02:48:56 -05:00
|
|
|
require 'rubygems/command'
|
|
|
|
require 'rubygems/local_remote_options'
|
2008-06-17 18:04:18 -04:00
|
|
|
require 'rubygems/spec_fetcher'
|
2007-11-10 02:48:56 -05:00
|
|
|
require 'rubygems/version_option'
|
|
|
|
|
|
|
|
class Gem::Commands::OutdatedCommand < Gem::Command
|
|
|
|
|
|
|
|
include Gem::LocalRemoteOptions
|
|
|
|
include Gem::VersionOption
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
super 'outdated', 'Display all gems that need updates'
|
|
|
|
|
|
|
|
add_local_remote_options
|
|
|
|
add_platform_option
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute
|
2011-05-31 23:45:05 -04:00
|
|
|
Gem::Specification.outdated.sort.each do |name|
|
|
|
|
local = Gem::Specification.find_all_by_name(name).max
|
2011-03-09 17:32:29 -05:00
|
|
|
dep = Gem::Dependency.new local.name, ">= #{local.version}"
|
2008-06-17 18:04:18 -04:00
|
|
|
remotes = Gem::SpecFetcher.fetcher.fetch dep
|
|
|
|
|
2011-03-09 17:32:29 -05:00
|
|
|
next if remotes.empty?
|
|
|
|
|
|
|
|
remote = remotes.last.first
|
2007-11-10 02:48:56 -05:00
|
|
|
say "#{local.name} (#{local.version} < #{remote.version})"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|