Class: Version::StringToken Private

Inherits:
Token show all
Defined in:
version.rb

Overview

This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.

A token string.

Direct Known Subclasses

CompositeToken

Constant Summary collapse

PATTERN =

This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.

/[a-z]+/i.freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Token

create, from, #hash, #inspect, #null?, #numeric?, #to_f, #to_i, #to_s

Constructor Details

#initialize(value) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:



150
151
152
# File 'version.rb', line 150

def initialize(value)
  super(value.to_s)
end

Instance Attribute Details

#valueString (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



147
148
149
# File 'version.rb', line 147

def value
  @value
end

Instance Method Details

#<=>(other) ⇒ Integer?

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

  • other (T.untyped)

Returns:

  • (Integer, nil)


155
156
157
158
159
160
161
162
163
164
# File 'version.rb', line 155

def <=>(other)
  return unless (other = Token.from(other))

  case other
  when StringToken
    value <=> other.value
  when NumericToken, NullToken
    -T.must(other <=> self)
  end
end