Sha256: c5661276c22f335200adfcf39151a90e477c83148589d209e41e01d9c5a89841

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