module Sigimera::VERSION

Module that encapsulates the version number.

Constants

EXTRA

The extra string marks the version as beta, alpha, rcX, …

MAJOR

The major version number that changes only if incompatibility with the previous version was introduced.

MINOR

The minor version number indicates that new features were added.

STRING

Concatenates the version to a point separated string

TINY

The tiny number stands for bug fixes.

Public Class Methods

to_a() click to toggle source

@return [Array(Integer, Integer, Integer)]

# File lib/sigimera/version.rb, line 35
def self.to_a()
    [MAJOR, MINOR, TINY]
end
to_s() click to toggle source

@return [String]

# File lib/sigimera/version.rb, line 24
def self.to_s()
    STRING
end
to_str() click to toggle source

@return [String]

# File lib/sigimera/version.rb, line 30
def self.to_str()
    STRING
end