# frozen_string_literal: true module Version MAJOR = 1 MINOR = 0 PATCH = 27 def self.to_s [MAJOR, MINOR, PATCH].compact.join('.') end end