diff options
author | Mike Perham <mperham@gmail.com> | 2016-01-05 14:31:16 -0800 |
---|---|---|
committer | Mike Perham <mperham@gmail.com> | 2016-01-05 14:31:16 -0800 |
commit | 547713b4c91e5c232ac3b2a8288b72001c6dfc46 (patch) | |
tree | 3785f9bff88bf77c9ca5134972d7d1d980ac0751 /actioncable/actioncable.gemspec | |
parent | b7b508aa7908efb1c6ef6667e3087f4f6a4b508f (diff) | |
download | rails-547713b4c91e5c232ac3b2a8288b72001c6dfc46.tar.gz rails-547713b4c91e5c232ac3b2a8288b72001c6dfc46.tar.bz2 rails-547713b4c91e5c232ac3b2a8288b72001c6dfc46.zip |
Move async execution from celluloid to concurrent-ruby
This removes 8 runtime gem dependencies from Rails:
```
Using hitimes 1.2.3
Using timers 4.1.1
Using celluloid-essentials 0.20.5
Using celluloid-extras 0.20.5
Using celluloid-fsm 0.20.5
Using celluloid-pool 0.20.5
Using celluloid-supervision 0.20.5
Using celluloid 0.17.2
```
Diffstat (limited to 'actioncable/actioncable.gemspec')
-rw-r--r-- | actioncable/actioncable.gemspec | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actioncable/actioncable.gemspec b/actioncable/actioncable.gemspec index 74c21bd24d..b6e529e879 100644 --- a/actioncable/actioncable.gemspec +++ b/actioncable/actioncable.gemspec @@ -23,7 +23,7 @@ Gem::Specification.new do |s| s.add_dependency 'coffee-rails', '~> 4.1.0' s.add_dependency 'faye-websocket', '~> 0.10.0' s.add_dependency 'websocket-driver', '~> 0.6.1' - s.add_dependency 'celluloid', '~> 0.17.2' + s.add_dependency 'concurrent-ruby', '~> 1.0.0' s.add_dependency 'em-hiredis', '~> 0.3.0' s.add_dependency 'redis', '~> 3.0' |