aboutsummaryrefslogtreecommitdiffstats
path: root/action_cable.gemspec
blob: 63ba751e9d4aba7f48d5160fb7d6df31c0cbade5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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