Class: Version::AlphaToken Private

Inherits:
CompositeToken show all
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 representing the part of a version designating it as an alpha release.

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.

/alpha[0-9]*|a[0-9]+/i.freeze

Instance Attribute Summary

Attributes inherited from StringToken

#value

Attributes inherited from Token

#value

Instance Method Summary collapse

Methods inherited from CompositeToken

#rev

Methods inherited from StringToken

#initialize

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

#<=>(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.

Parameters:

  • other (T.untyped)

Returns:

  • (Integer, nil)


210
211
212
213
214
215
216
217
218
219
220
221
# File 'version.rb', line 210

def <=>(other)
  return unless (other = Token.from(other))

  case other
  when AlphaToken
    rev <=> other.rev
  when BetaToken, RCToken, PreToken, PatchToken, PostToken
    -1
  else
    super
  end
end