Class: Version::StringToken Private
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
A token string.
Direct Known Subclasses
Constant Summary collapse
- PATTERN =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
/[a-z]+/i.freeze
Instance Attribute Summary
Attributes inherited from Token
Instance Method Summary collapse
- #<=>(other) ⇒ Object private
-
#initialize(value) ⇒ StringToken
constructor
private
A new instance of StringToken.
Methods inherited from Token
create, from, #hash, #inspect, #numeric?, #to_f, #to_i, #to_s
Constructor Details
#initialize(value) ⇒ StringToken
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of StringToken.
115 116 117 118 119 |
# File 'Library/Homebrew/version.rb', line 115 def initialize(value) super @value = value.to_s end |
Instance Method Details
#<=>(other) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
121 122 123 124 125 126 127 128 129 130 |
# File 'Library/Homebrew/version.rb', line 121 def <=>(other) return unless other = Token.from(other) case other when StringToken value <=> other.value when NumericToken, NullToken -Integer(other <=> self) end end |