Sha256: 8feb4314c9ffc1ec88683fd42a477ab78e8216a03f9f8a946a966f87d28d1afe

Contents?: true

Size: 406 Bytes

Versions: 1

Compression:

Stored size: 406 Bytes

Contents

# (c) 2017 Ribose Inc.
#

module AttrMasker
  # Contains information about this gem's version
  module Version
    MAJOR = 0
    MINOR = 2
    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
attr_masker-0.2.1 lib/attr_masker/version.rb