Module: IMAPGet::Version

Defined in:
lib/imapget/version.rb

Constant Summary collapse

MAJOR =
0
MINOR =
2
TINY =
0

Class Method Summary collapse

Class Method Details

.to_aObject

Returns array representation.


12
13
14
# File 'lib/imapget/version.rb', line 12

def to_a
  [MAJOR, MINOR, TINY]
end

.to_sObject

Short-cut for version string.


17
18
19
# File 'lib/imapget/version.rb', line 17

def to_s
  to_a.join('.')
end