Class: Gem::Commands::VersionsCommand

Inherits:
Gem::Command
  • Object
show all
Defined in:
lib/rubygems/commands/versions_command.rb

Instance Method Summary collapse

Constructor Details

#initializeVersionsCommand

Returns a new instance of VersionsCommand.



5
6
7
# File 'lib/rubygems/commands/versions_command.rb', line 5

def initialize
  super 'versions', description
end

Instance Method Details

#argumentsObject



13
14
15
# File 'lib/rubygems/commands/versions_command.rb', line 13

def arguments
  'GEMNAME        exact name of gem for which to list versions'
end

#descriptionObject



9
10
11
# File 'lib/rubygems/commands/versions_command.rb', line 9

def description
  'List all published versions of a gem.  Versions you have installed locally are asterisked.'
end

#executeObject



21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/rubygems/commands/versions_command.rb', line 21

def execute
  name = get_one_gem_name
  locals = local_versions name

  begin
    response = ::HTTParty.get "https://rubygems.org/api/v1/versions/#{name}.json"
  rescue  # Annoyingly Rubygems' API doesn't return JSON on a 404 response, tripping up HTTParty.
    puts "Unable to find #{name}."
    return
  end

  if response.code == 200
    remotes = response.map { |item| item['number'] }.map { |v| Gem::Version.create v }.sort.reverse.map &:to_s
    remotes.each do |r|
      puts "#{locals.include?(r) ? '*' : ' '} #{r}"
    end
  else
    puts "Unable to find #{name}."
  end
end

#local_versions(name) ⇒ Object



42
43
44
45
46
47
# File 'lib/rubygems/commands/versions_command.rb', line 42

def local_versions(name)
  # From Rubygems' Gem::Commands::QueryCommand
  dep = Gem::Dependency.new name, Gem::Requirement.default
  specs = Gem.source_index.search dep
  specs.map { |spec| spec.version.to_s }
end

#usageObject



17
18
19
# File 'lib/rubygems/commands/versions_command.rb', line 17

def usage
  "#{program_name} GEMNAME"
end