1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/action_cable.gemspec

23 lines
726 B
Ruby
Raw Normal View History

2015-01-14 11:29:31 -05:00
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = 'action_cable'
2015-06-26 14:37:51 -04:00
s.version = '0.1.0'
2015-01-14 11:29:31 -05:00
s.summary = 'Framework for websockets.'
s.description = 'Action Cable is a framework for realtime communication over websockets.'
2015-07-07 13:03:49 -04:00
s.author = ['Pratik Naik', 'David Heinemeier Hansson']
s.email = ['pratiknaik@gmail.com', 'david@heinemeierhansson.com']
2015-01-14 11:29:31 -05:00
s.homepage = 'http://basecamp.com'
2015-02-16 11:15:22 -05:00
s.add_dependency('activesupport', '>= 4.2.0')
2015-02-05 09:10:56 -05:00
s.add_dependency('faye-websocket', '~> 0.9.2')
s.add_dependency('celluloid', '~> 0.16.0')
2015-04-04 01:26:14 -04:00
s.add_dependency('em-hiredis', '~> 0.3.0')
s.add_dependency('redis', '~> 3.0')
2015-01-14 11:29:31 -05:00
s.files = Dir['README', 'lib/**/*']
s.has_rdoc = false
s.require_path = 'lib'
end