Added command to display current version of homesick.

This commit is contained in:
Jeremy Cook
2014-01-05 14:27:52 -05:00
parent ab46cf7b2f
commit df8f6b1cb0
4 changed files with 29 additions and 1 deletions

10
lib/homesick/version.rb Normal file
View File

@@ -0,0 +1,10 @@
# -*- encoding : utf-8 -*-
class Homesick
module Version
MAJOR = 0
MINOR = 9
PATCH = 8
STRING = "#{MAJOR}.#{MINOR}.#{PATCH}"
end
end