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
Instance Attribute Summary collapse
- #value ⇒ Integer readonly private
Instance Method Summary collapse
- #initialize(value) ⇒ void constructor private
- #numeric? ⇒ Boolean private
Methods inherited from Token
#blank?, create, from, #null?, #to_f, #to_i, #to_str
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.
178 179 180 |
# File 'version.rb', line 178 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.
175 176 177 |
# File 'version.rb', line 175 def value @value end |
Instance Method Details
#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.
197 198 199 |
# File 'version.rb', line 197 def numeric? true end |