Files
gosick/lib/homesick/version.rb
2014-01-16 00:22:13 -05:00

13 lines
270 B
Ruby

# -*- encoding : utf-8 -*-
class Homesick
# A representation of Homesick's version number in constants, including a
# String of the entire version number
module Version
MAJOR = 1
MINOR = 0
PATCH = 0
STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
end
end