Version information for Amagalite
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
# File lib/amalgalite/version.rb, line 22 22: def self.to_s 23: to_a.join(".") 24: end
[Validate]