Class: Version::BetaToken Private
- Inherits:
-
CompositeToken
- Object
- Token
- StringToken
- CompositeToken
- Version::BetaToken
- Defined in:
- Library/Homebrew/version.rb
Overview
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
A token representing the part of a version designating it as a beta release.
Constant Summary collapse
- PATTERN =
This constant is part of a private API. You should avoid using this constant if possible, as it may be removed or be changed in the future.
/beta[0-9]*|b[0-9]+/i.freeze
Instance Attribute Summary
Attributes inherited from Token
Instance Method Summary collapse
- #<=>(other) ⇒ Object private
Methods inherited from CompositeToken
Methods inherited from StringToken
Methods inherited from Token
create, from, #hash, #initialize, #inspect, #numeric?, #to_f, #to_i, #to_s
Constructor Details
This class inherits a constructor from Version::StringToken
Instance Method Details
#<=>(other) ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
190 191 192 193 194 195 196 197 198 199 200 201 202 203 |
# File 'Library/Homebrew/version.rb', line 190 def <=>(other) return unless other = Token.from(other) case other when BetaToken rev <=> other.rev when AlphaToken 1 when PreToken, RCToken, PatchToken, PostToken -1 else super end end |