aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/gem_version.rb
diff options
context:
space:
mode:
Diffstat (limited to 'activesupport/lib/active_support/gem_version.rb')
-rw-r--r--activesupport/lib/active_support/gem_version.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/gem_version.rb b/activesupport/lib/active_support/gem_version.rb
new file mode 100644
index 0000000000..83a3bf7a5d
--- /dev/null
+++ b/activesupport/lib/active_support/gem_version.rb
@@ -0,0 +1,15 @@
+module ActiveSupport
+ # Returns the version of the currently loaded ActiveSupport as a <tt>Gem::Version</tt>
+ def self.gem_version
+ Gem::Version.new VERSION::STRING
+ end
+
+ module VERSION
+ MAJOR = 4
+ MINOR = 2
+ TINY = 0
+ PRE = "alpha"
+
+ STRING = [MAJOR, MINOR, TINY, PRE].compact.join(".")
+ end
+end