Module: Rabal::Version

Defined in:
lib/rabal/version.rb

Constant Summary collapse

MAJOR =
0
MINOR =
3
BUILD =
3
STRING =
Version.to_s

Class Method Summary collapse

Class Method Details

.to_aObject



9
10
11
# File 'lib/rabal/version.rb', line 9

def to_a
  [MAJOR, MINOR, BUILD]
end

.to_sObject



13
14
15
# File 'lib/rabal/version.rb', line 13

def to_s
  to_a.join(".")
end