Sha256: b3c549292f284af525104f0f75d1f4eeeaeae66805d10c39dc1cfa5a4f3233b8
Contents?: true
Size: 369 Bytes
Versions: 1
Compression:
Stored size: 369 Bytes
Contents
module Encryptor # Contains information about this gem's version module Version MAJOR = 3 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.to_s # '1.0.2' def self.to_s [MAJOR, MINOR, PATCH].join('.') end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
encryptor-3.0.0 | lib/encryptor/version.rb |