Class: Version::CompositeToken Private
- Inherits:
-
StringToken
- Object
- Token
- StringToken
- Version::CompositeToken
- 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 consisting of an alphabetic and a numeric part.
Direct Known Subclasses
AlphaToken, BetaToken, PatchToken, PostToken, PreToken, RCToken
Constant Summary
Constants inherited from StringToken
Instance Attribute Summary
Attributes inherited from StringToken
Attributes inherited from Token
Instance Method Summary collapse
- #rev ⇒ Integer private
Methods inherited from StringToken
Methods inherited from Token
#blank?, create, from, #initialize, #null?, #numeric?, #to_f, #to_i, #to_str
Constructor Details
This class inherits a constructor from Version::StringToken
Instance Method Details
#rev ⇒ 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.
205 206 207 |
# File 'version.rb', line 205 def rev value[/[0-9]+/].to_i end |