Sha256: cffe7bf13ac1d99ae21037353b1c33280e6ff478de6bab0cd1ead21f6cf336f6
Contents?: true
Size: 376 Bytes
Versions: 2
Compression:
Stored size: 376 Bytes
Contents
module AttrEncrypted # Contains information about this gem's version module Version MAJOR = 1 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
2 entries across 2 versions & 2 rubygems
Version | Path |
---|---|
honkster-attr_encrypted-1.2.0 | lib/attr_encrypted/version.rb |
attr_encrypted-1.2.0 | lib/attr_encrypted/version.rb |