Class: Version::StringToken Private
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
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
-
#value ⇒ String
readonly
private
Instance Method Summary collapse
-
#<=>(other) ⇒ Integer?
private
-
#initialize(value) ⇒ void
constructor
private
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.
148 149 150 |
# File 'version.rb', line 148 def initialize(value) super(value.to_s) end |
Instance Attribute Details
#value ⇒ String (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.
145 146 147 |
# File 'version.rb', line 145 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.
153 154 155 156 157 158 159 160 161 162 |
# File 'version.rb', line 153 def <=>(other) return unless (other = Token.from(other)) case other when StringToken value <=> other.value when NumericToken, NullToken -T.must(other <=> self) end end |