Sha256: 08268ee8eb40c795ac57a0c66a8dd575a6cfe50e35fa420dc3a2828faaa15842

Contents?: true

Size: 369 Bytes

Versions: 1

Compression:

Stored size: 369 Bytes

Contents

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

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
encryptor-1.3.0 lib/encryptor/version.rb