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