Added command to display current version of homesick.

This commit is contained in:
Jeremy Cook
2014-01-05 14:27:52 -05:00
parent 5c5d204d15
commit 8dac49548c
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