lib/attr_encrypted/version.rb in attr_encrypted-1.2.0 vs lib/attr_encrypted/version.rb in attr_encrypted-1.2.1

- old
+ new

@@ -1,17 +1,17 @@ module AttrEncrypted # Contains information about this gem's version module Version MAJOR = 1 MINOR = 2 - PATCH = 0 + PATCH = 1 # 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 \ No newline at end of file +end