lib/alula/plugins/version.rb in alula-plugins-0.4.4 vs lib/alula/plugins/version.rb in alula-plugins-0.4.11a

- old
+ new

@@ -1,5 +1,12 @@ module Alula module Plugins - VERSION = File.read(File.join(File.dirname(__FILE__), %w{.. .. .. VERSION})).strip + module VERSION + MAJOR = 0 + MINOR = 0 + PATCH = 1 + PRE = nil + + STRING = [MAJOR, MINOR, PATCH, PRE].compact.join('.') + end end end