Sha256: 445c5a84d1472cc7dd4e2e2a382c36a4ba1274beaac6582b2c2c67b433dab551
Contents?: true
Size: 777 Bytes
Versions: 1
Compression:
Stored size: 777 Bytes
Contents
require 'rubygems/command' require 'rubygems/local_remote_options' require 'rubygems/spec_fetcher' 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 dep = Gem::Dependency.new local.name, ">= #{local.version}" remotes = Gem::SpecFetcher.fetcher.fetch dep remote = remotes.last.first say "#{local.name} (#{local.version} < #{remote.version})" end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
rubygems-update-1.2.0 | lib/rubygems/commands/outdated_command.rb |