Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/gems/attr_encrypted/lib/attr_encrypted/version.rb')
-rw-r--r--vendor/gems/attr_encrypted/lib/attr_encrypted/version.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/gems/attr_encrypted/lib/attr_encrypted/version.rb b/vendor/gems/attr_encrypted/lib/attr_encrypted/version.rb
new file mode 100644
index 00000000000..d97f1532249
--- /dev/null
+++ b/vendor/gems/attr_encrypted/lib/attr_encrypted/version.rb
@@ -0,0 +1,19 @@
+# frozen_string_literal: true
+
+module AttrEncrypted
+ # Contains information about this gem's version
+ module Version
+ MAJOR = 3
+ MINOR = 2
+ PATCH = 4
+
+ # 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