Sha256: f9fc52fa97d53faf810814028f5b571d0869a22822ab4ee4a8e5afe4453a0688
Contents?: true
Size: 377 Bytes
Versions: 1
Compression:
Stored size: 377 Bytes
Contents
module AttrEncrypted # Contains information about this gem's version module Version MAJOR = 1 MINOR = 3 PATCH = 2 # 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_encrypted-1.3.2 | lib/attr_encrypted/version.rb |