Sha256: 24a8075431cc82f118171e0e413f754ba7fecdcedeb5d7a169fa981008ffe434

Contents?: true

Size: 383 Bytes

Versions: 1

Compression:

Stored size: 383 Bytes

Contents

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

    # Returns a version string by joining <tt>MAJOR</tt>, <tt>MINOR</tt>, and <tt>PATCH</tt> with <tt>'.'</tt>
    #
    # Example
    #
    #   Interface::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
shuber-interface-0.0.4 lib/interface/version.rb