module Inforouter class Version MAJOR = 0 MINOR = 3 PATCH = 0 PRE = nil class << self # @return [String] def to_s [MAJOR, MINOR, PATCH, PRE].compact.join('.') end end end end