Sha256: fcd8a1d51f9d289b4a26f7fedaa6b2cd81ff42cdcddd1eabc283b3a25cd1f16d

Contents?: true

Size: 230 Bytes

Versions: 1

Compression:

Stored size: 230 Bytes

Contents

module TheCity
  class Version
    MAJOR = 0
    MINOR = 0
    PATCH = 7
    PRE = nil

    class << self

      # @return [String]
      def to_s
        [MAJOR, MINOR, PATCH, PRE].compact.join('.')
      end

    end

  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
thecity-0.0.7 lib/the_city/version.rb