Sha256: 37cc23ecc94e524eab33eaddaf62c4f8590c2f05ffc9633fc2981ef77a6a0ee9

Contents?: true

Size: 230 Bytes

Versions: 1

Compression:

Stored size: 230 Bytes

Contents

module Inforouter
  class Version
    MAJOR = 0
    MINOR = 2
    PATCH = 0
    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
inforouter-0.2.0 lib/inforouter/version.rb