Class Methods
::
lib/rubygems/commands/outdated_command.rb
View on GitHub
# File tmp/rubies/ruby-3.2.0/lib/rubygems/commands/outdated_command.rb, line 11
def initialize
super "outdated", "Display all gems that need updates"
add_local_remote_options
add_platform_option
end
No documentation available
Instance Methods
#
lib/rubygems/commands/outdated_command.rb
View on GitHub
# File tmp/rubies/ruby-3.2.0/lib/rubygems/commands/outdated_command.rb, line 27
def execute
Gem::Specification.outdated_and_latest_version.each do |spec, remote_version|
say "#{spec.name} (#{spec.version} < #{remote_version})"
end
end
No documentation available