aboutsummaryrefslogtreecommitdiffstats
path: root/action_cable.gemspec
diff options
context:
space:
mode:
authorPratik Naik <pratiknaik@gmail.com>2015-01-14 21:59:31 +0530
committerPratik Naik <pratiknaik@gmail.com>2015-01-14 21:59:47 +0530
commitdb568553d172e6ebdc3bc0aae3839d4a91299b42 (patch)
treec3c24d67395a2d0e4224697c8809e2200d2e62ce /action_cable.gemspec
downloadrails-db568553d172e6ebdc3bc0aae3839d4a91299b42.tar.gz
rails-db568553d172e6ebdc3bc0aae3839d4a91299b42.tar.bz2
rails-db568553d172e6ebdc3bc0aae3839d4a91299b42.zip
Action Cable take#1
Diffstat (limited to 'action_cable.gemspec')
-rw-r--r--action_cable.gemspec19
1 files changed, 19 insertions, 0 deletions
diff --git a/action_cable.gemspec b/action_cable.gemspec
new file mode 100644
index 0000000000..63ba751e9d
--- /dev/null
+++ b/action_cable.gemspec
@@ -0,0 +1,19 @@
+Gem::Specification.new do |s|
+ s.platform = Gem::Platform::RUBY
+ s.name = 'action_cable'
+ s.version = '0.0.1'
+ s.summary = 'Framework for websockets.'
+ s.description = 'Action Cable is a framework for realtime communication over websockets.'
+
+ s.author = ['Pratik Naik']
+ s.email = ['pratiknaik@gmail.com']
+ s.homepage = 'http://basecamp.com'
+
+ s.add_dependency('activesupport', '~> 4.2.0')
+ s.add_dependency('cramp', '~> 0.15.4')
+
+ s.files = Dir['README', 'lib/**/*']
+ s.has_rdoc = false
+
+ s.require_path = 'lib'
+end