Class: Version::NumericToken Private

Inherits:
Token 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 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

Instance Method Summary collapse

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.

Parameters:



179
180
181
# File 'version.rb', line 179

def initialize(value)
  super(value.to_i)
end

Instance Attribute Details

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

Returns:

  • (Integer)


176
177
178
# File 'version.rb', line 176

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.

Returns:

  • (Boolean)


198
199
200
# File 'version.rb', line 198

def numeric?
  true
end