module SubDiff # Contains information about this gem's version module Version MAJOR = 0 MINOR = 0 PATCH = 0 # Returns a version string by joining MAJOR, MINOR, and PATCH with '.' # # Example # # puts Version # '1.0.2' def self.to_s [MAJOR, MINOR, PATCH].join('.') end end end