Sha256: 368d5257389198322fd73684e7c9cd2198997c394c14271a270a50b8ad701ba6
Contents?: true
Size: 408 Bytes
Versions: 1
Compression:
Stored size: 408 Bytes
Contents
# frozen_string_literal: true module AttrEncrypted # Contains information about this gem's version module Version MAJOR = 4 MINOR = 0 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_encrypted-4.0.0 | lib/attr_encrypted/version.rb |