类 Gem::Commands::OutdatedCommand

公共类方法

new() 点击切换源代码
调用父类方法 Gem::Command::new
# File rubygems/commands/outdated_command.rb, line 12
def initialize
  super "outdated", "Display all gems that need updates"

  add_local_remote_options
  add_platform_option
end

公共实例方法

execute() 点击切换源代码
# File rubygems/commands/outdated_command.rb, line 28
def execute
  Gem::Specification.outdated_and_latest_version.each do |spec, remote_version|
    say "#{spec.name} (#{spec.version} < #{remote_version})"
  end
end