Files
gosick/lib/homesick/version.rb
2019-01-19 11:50:20 -05:00

12 lines
255 B
Ruby

module Homesick
# A representation of Homesick's version number in constants, including a
# String of the entire version number
module Version
MAJOR = 1
MINOR = 1
PATCH = 6
STRING = [MAJOR, MINOR, PATCH].compact.join('.')
end
end