# File rubygems/commands/outdated_command.rb, line 12definitializesuper'outdated', 'Display all gems that need updates'add_local_remote_optionsadd_platform_optionend
Public Instance Methods
execute()click to toggle source
# File rubygems/commands/outdated_command.rb, line 28defexecuteGem::Specification.outdated_and_latest_version.eachdo|spec, remote_version|say"#{spec.name} (#{spec.version} < #{remote_version})"endend