module Alf module Sequel module Version MAJOR = 0 MINOR = 15 TINY = 0 def self.to_s [ MAJOR, MINOR, TINY ].join('.') end end VERSION = Version.to_s end end