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
#<=>, create, from, #hash, #initialize, #inspect, #null?, #numeric?, #to_f, #to_i, #to_s
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.
200 201 202 |
# File 'version.rb', line 200 def rev value[/[0-9]+/].to_i end |