# (c) 2017 Ribose Inc. # module AttrMasker # Contains information about this gem's version module Version MAJOR = 0 MINOR = 2 PATCH = 1 # Returns a version string by joining MAJOR, MINOR, and # PATCH with '.' # # Example # # Version.string # '1.0.2' def self.string [MAJOR, MINOR, PATCH].join(".") end end end