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
|
|
|
|
locals = Gem::SourceIndex.from_installed_gems
|
|
|
|
|
|
|
|
locals.outdated.sort.each do |name|
|
|
|
|
local = locals.search(/^#{name}$/).last
|
2008-06-17 18:04:18 -04:00
|
|
|
|
|
|
|
dep = Gem::Dependency.new local.name, ">= #{local.version}"
|
|
|
|
remotes = Gem::SpecFetcher.fetcher.fetch dep
|
2007-11-10 02:48:56 -05:00
|
|
|
remote = remotes.last.first
|
2008-06-17 18:04:18 -04:00
|
|
|
|
2007-11-10 02:48:56 -05:00
|
|
|
say "#{local.name} (#{local.version} < #{remote.version})"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|