Class: Version::NumericToken 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 consisting of only numbers.
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.
/[0-9]+/i.freeze
Instance Attribute Summary collapse
-
#value ⇒ Integer
readonly
private
Instance Method Summary collapse
-
#<=>(other) ⇒ Integer?
private
-
#initialize(value) ⇒ void
constructor
private
-
#numeric? ⇒ Boolean
private
Methods inherited from Token
create, from, #hash, #inspect, #null?, #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.
173 174 175 |
# File 'version.rb', line 173 def initialize(value) super(value.to_i) end |
Instance Attribute Details
#value ⇒ Integer (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.
170 171 172 |
# File 'version.rb', line 170 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.
178 179 180 181 182 183 184 185 186 187 188 189 |
# File 'version.rb', line 178 def <=>(other) return unless (other = Token.from(other)) case other when NumericToken value <=> other.value when StringToken 1 when NullToken -T.must(other <=> self) end end |
#numeric? ⇒ Boolean
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.
192 193 194 |
# File 'version.rb', line 192 def numeric? true end |