Class: Gem::NameTuple

Inherits:
Object
  • Object
show all
Includes:
Comparable
Defined in:
lib/rubygems/name_tuple.rb

Overview

Represents a gem of name name at version of platform. These wrap the data returned from the indexes.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, version, platform = "ruby") ⇒ NameTuple

Returns a new instance of NameTuple.



9
10
11
12
13
14
15
16
17
18
# File 'lib/rubygems/name_tuple.rb', line 9

def initialize(name, version, platform="ruby")
  @name = name
  @version = version

  unless platform.is_a? Gem::Platform
    platform = "ruby" if !platform || platform.empty?
  end

  @platform = platform
end

Instance Attribute Details

#nameObject (readonly)

Returns the value of attribute name.



20
21
22
# File 'lib/rubygems/name_tuple.rb', line 20

def name
  @name
end

#platformObject (readonly)

Returns the value of attribute platform.



20
21
22
# File 'lib/rubygems/name_tuple.rb', line 20

def platform
  @platform
end

#versionObject (readonly)

Returns the value of attribute version.



20
21
22
# File 'lib/rubygems/name_tuple.rb', line 20

def version
  @version
end

Class Method Details

.from_list(list) ⇒ Object

Turn an array of [name, version, platform] into an array of NameTuple objects.



26
27
28
# File 'lib/rubygems/name_tuple.rb', line 26

def self.from_list(list)
  list.map {|t| new(*t) }
end

.nullObject

A null NameTuple, ie name=nil, version=0



41
42
43
# File 'lib/rubygems/name_tuple.rb', line 41

def self.null
  new nil, Gem::Version.new(0), nil
end

.to_basic(list) ⇒ Object

Turn an array of NameTuple objects back into an array of

name, version, platform

tuples.



34
35
36
# File 'lib/rubygems/name_tuple.rb', line 34

def self.to_basic(list)
  list.map(&:to_a)
end

Instance Method Details

#<=>(other) ⇒ Object



92
93
94
95
# File 'lib/rubygems/name_tuple.rb', line 92

def <=>(other)
  [@name, @version, Gem::Platform.sort_priority(@platform)] <=>
    [other.name, other.version, Gem::Platform.sort_priority(other.platform)]
end

#==(other) ⇒ Object Also known as: eql?

Compare with other. Supports another NameTuple or an Array in the [name, version, platform] format.



103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/rubygems/name_tuple.rb', line 103

def ==(other)
  case other
  when self.class
    @name == other.name &&
      @version == other.version &&
      @platform == other.platform
  when Array
    to_a == other
  else
    false
  end
end

#full_nameObject

Returns the full name (name-version) of this Gem. Platform information is included if it is not the default Ruby platform. This mimics the behavior of Gem::Specification#full_name.



50
51
52
53
54
55
56
57
# File 'lib/rubygems/name_tuple.rb', line 50

def full_name
  case @platform
  when nil, "ruby", ""
    "#{@name}-#{@version}"
  else
    "#{@name}-#{@version}-#{@platform}"
  end.dup.tap(&Gem::UNTAINT)
end

#hashObject



118
119
120
# File 'lib/rubygems/name_tuple.rb', line 118

def hash
  to_a.hash
end

#inspectObject Also known as: to_s

:nodoc:



86
87
88
# File 'lib/rubygems/name_tuple.rb', line 86

def inspect # :nodoc:
  "#<Gem::NameTuple #{@name}, #{@version}, #{@platform}>"
end

#match_platform?Boolean

Indicate if this NameTuple matches the current platform.

Returns:

  • (Boolean)


62
63
64
# File 'lib/rubygems/name_tuple.rb', line 62

def match_platform?
  Gem::Platform.match_gem? @platform, @name
end

#prerelease?Boolean

Indicate if this NameTuple is for a prerelease version.

Returns:

  • (Boolean)


68
69
70
# File 'lib/rubygems/name_tuple.rb', line 68

def prerelease?
  @version.prerelease?
end

#spec_nameObject

Return the name that the gemspec file would be



75
76
77
# File 'lib/rubygems/name_tuple.rb', line 75

def spec_name
  "#{full_name}.gemspec"
end

#to_aObject

Convert back to the [name, version, platform] tuple



82
83
84
# File 'lib/rubygems/name_tuple.rb', line 82

def to_a
  [@name, @version, @platform]
end