Module Amalgalite::Version
In: lib/amalgalite/version.rb

Version information for Amagalite

Methods

to_a   to_s  

Constants

MAJOR = 0
MINOR = 4
BUILD = 0
STRING = Version.to_s.freeze   Version string constant

Public Class methods

return the Version as an array of MAJOR, MINOR, BUILD

[Source]

    # File lib/amalgalite/version.rb, line 17
17:     def self.to_a 
18:       [MAJOR, MINOR, BUILD]
19:     end

return the Version as a dotted String MAJOR.MINOR.BUILD

[Source]

    # File lib/amalgalite/version.rb, line 22
22:     def self.to_s
23:       to_a.join(".")
24:     end

[Validate]