Sha256: bf6e87b1ef794152827e968610495f68c0c6b48462757c04dcebab25b9eeee31

Contents?: true

Size: 370 Bytes

Versions: 1

Compression:

Stored size: 370 Bytes

Contents

module Defined
  # Contains information about this gem's version
  module Version
    MAJOR = 0
    MINOR = 0
    PATCH = 1

    # Returns a version string by joining <tt>MAJOR</tt>, <tt>MINOR</tt>, and <tt>PATCH</tt> with <tt>'.'</tt>
    #
    # Example
    #
    #   Version.string # '1.0.2'
    def self.string
      [MAJOR, MINOR, PATCH].join('.')
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
defined-0.0.1 lib/defined/version.rb