mirror of https://github.com/rails/rails
Support Rails 5
This commit is contained in:
parent
6e1b5877de
commit
144a381c5e
|
@ -1,8 +1,8 @@
|
||||||
PATH
|
PATH
|
||||||
remote: .
|
remote: .
|
||||||
specs:
|
specs:
|
||||||
action_cable (0.0.1)
|
action_cable (0.0.2)
|
||||||
activesupport (~> 4.2.0)
|
activesupport (>= 4.2.0)
|
||||||
celluloid (~> 0.16.0)
|
celluloid (~> 0.16.0)
|
||||||
faye-websocket (~> 0.9.2)
|
faye-websocket (~> 0.9.2)
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ GEM
|
||||||
tzinfo (~> 1.1)
|
tzinfo (~> 1.1)
|
||||||
celluloid (0.16.0)
|
celluloid (0.16.0)
|
||||||
timers (~> 4.0.0)
|
timers (~> 4.0.0)
|
||||||
eventmachine (1.0.4)
|
eventmachine (1.0.7)
|
||||||
faye-websocket (0.9.2)
|
faye-websocket (0.9.2)
|
||||||
eventmachine (>= 0.12.0)
|
eventmachine (>= 0.12.0)
|
||||||
websocket-driver (>= 0.5.1)
|
websocket-driver (>= 0.5.1)
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
Gem::Specification.new do |s|
|
Gem::Specification.new do |s|
|
||||||
s.platform = Gem::Platform::RUBY
|
s.platform = Gem::Platform::RUBY
|
||||||
s.name = 'action_cable'
|
s.name = 'action_cable'
|
||||||
s.version = '0.0.1'
|
s.version = '0.0.2'
|
||||||
s.summary = 'Framework for websockets.'
|
s.summary = 'Framework for websockets.'
|
||||||
s.description = 'Action Cable is a framework for realtime communication over websockets.'
|
s.description = 'Action Cable is a framework for realtime communication over websockets.'
|
||||||
|
|
||||||
|
@ -9,7 +9,7 @@ Gem::Specification.new do |s|
|
||||||
s.email = ['pratiknaik@gmail.com']
|
s.email = ['pratiknaik@gmail.com']
|
||||||
s.homepage = 'http://basecamp.com'
|
s.homepage = 'http://basecamp.com'
|
||||||
|
|
||||||
s.add_dependency('activesupport', '~> 4.2.0')
|
s.add_dependency('activesupport', '>= 4.2.0')
|
||||||
s.add_dependency('faye-websocket', '~> 0.9.2')
|
s.add_dependency('faye-websocket', '~> 0.9.2')
|
||||||
s.add_dependency('celluloid', '~> 0.16.0')
|
s.add_dependency('celluloid', '~> 0.16.0')
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue