Sha256: 415d324ccd0f604c578c8e125705bb81d438a332ad9ecddbe2449e6086b779de

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 = 1
    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.1.1 lib/attr_masker/version.rb