aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCraig Sheen <craig_sheen@hotmail.com>2015-07-27 08:23:39 +0100
committerCraig Sheen <craig_sheen@hotmail.com>2015-07-27 08:23:39 +0100
commit00ba651f40de5ae57cf9b433ba0c6b7150d71a56 (patch)
tree180269128ef19e962cf32f61680515ab41cbd99a
parentf94531a5e91184dee5d82a03949926a33a78556b (diff)
downloadrails-00ba651f40de5ae57cf9b433ba0c6b7150d71a56.tar.gz
rails-00ba651f40de5ae57cf9b433ba0c6b7150d71a56.tar.bz2
rails-00ba651f40de5ae57cf9b433ba0c6b7150d71a56.zip
Move VERSION constant to version file and use this in the gemspec
-rw-r--r--actioncable.gemspec5
-rw-r--r--lib/action_cable.rb2
-rw-r--r--lib/action_cable/version.rb3
3 files changed, 7 insertions, 3 deletions
diff --git a/actioncable.gemspec b/actioncable.gemspec
index e3aaa21fe7..02350186db 100644
--- a/actioncable.gemspec
+++ b/actioncable.gemspec
@@ -1,6 +1,9 @@
+$:.push File.expand_path("../lib", __FILE__)
+require 'action_cable/version'
+
Gem::Specification.new do |s|
s.name = 'actioncable'
- s.version = '0.1.0'
+ s.version = ActionCable::VERSION
s.summary = 'Websockets framework for Rails.'
s.description = 'Structure many real-time application concerns into channels over a single websockets connection.'
s.license = 'MIT'
diff --git a/lib/action_cable.rb b/lib/action_cable.rb
index 968adafc25..62cb9bcf8a 100644
--- a/lib/action_cable.rb
+++ b/lib/action_cable.rb
@@ -18,8 +18,6 @@ require 'redis'
require 'action_cable/engine' if defined?(Rails)
module ActionCable
- VERSION = '0.0.3'
-
autoload :Server, 'action_cable/server'
autoload :Connection, 'action_cable/connection'
autoload :Channel, 'action_cable/channel'
diff --git a/lib/action_cable/version.rb b/lib/action_cable/version.rb
new file mode 100644
index 0000000000..4947029dcc
--- /dev/null
+++ b/lib/action_cable/version.rb
@@ -0,0 +1,3 @@
+module ActionCable
+ VERSION = '0.0.3'
+end \ No newline at end of file