Sha256: a1e4958436b9abbf9a4db6a00d7858033594a996663a2c5bc0fe1f5873849c2c
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 = 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.2.0 | lib/attr_masker/version.rb |