Sha256: bb3c9392a75f0d3e3ecd0f5f13002c758a46ea372913414d5063f5bc2887b1c0

Contents?: true

Size: 408 Bytes

Versions: 1

Compression:

Stored size: 408 Bytes

Contents

# frozen_string_literal: true

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

    # 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
powerhome-attr_encrypted-1.1.0 lib/attr_encrypted/version.rb