module BELParser::Version

Captures the semantic version of the library.

Constants

PATCH
STRING

The frozen version {String}. See {Object#freeze}.

VERSION_NUMBERS

The frozen {Array} of {Fixnum version numbers}. See {Object#freeze}.

Public Class Methods

to_a() click to toggle source

Return the frozen, semantic version number {Array}. @return [frozen Array] the semantic version numbers

# File lib/bel_parser/version.rb, line 28
def to_a
  VERSION_NUMBERS
end
to_s() click to toggle source

Return the frozen, semantic version {String}. @return [frozen String] the semantic version

# File lib/bel_parser/version.rb, line 21
def to_s
  STRING
end
Also aliased as: to_str
to_str()
Alias for: to_s