Repository URL to install this package:
|
Version:
0.7.2 ▾
|
class FileMagic
module Version
MAJOR = 0
MINOR = 7
TINY = 2
class << self
# Returns array representation.
def to_a
[MAJOR, MINOR, TINY]
end
# Short-cut for version string.
def to_s
to_a.join('.')
end
end
end
VERSION = Version.to_s
end