aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/test/test_helper.rb
diff options
context:
space:
mode:
authorMike Perham <mperham@gmail.com>2016-01-05 14:31:16 -0800
committerMike Perham <mperham@gmail.com>2016-01-05 14:31:16 -0800
commit547713b4c91e5c232ac3b2a8288b72001c6dfc46 (patch)
tree3785f9bff88bf77c9ca5134972d7d1d980ac0751 /actioncable/test/test_helper.rb
parentb7b508aa7908efb1c6ef6667e3087f4f6a4b508f (diff)
downloadrails-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/test/test_helper.rb')
-rw-r--r--actioncable/test/test_helper.rb5
1 files changed, 0 insertions, 5 deletions
diff --git a/actioncable/test/test_helper.rb b/actioncable/test/test_helper.rb
index 12dcd98402..325305939f 100644
--- a/actioncable/test/test_helper.rb
+++ b/actioncable/test/test_helper.rb
@@ -14,11 +14,6 @@ require 'rack/mock'
# Require all the stubs and models
Dir[File.dirname(__FILE__) + '/stubs/*.rb'].each {|file| require file }
-$CELLULOID_DEBUG = false
-$CELLULOID_TEST = false
-require 'celluloid'
-Celluloid.logger = Logger.new(StringIO.new)
-
require 'faye/websocket'
class << Faye::WebSocket
remove_method :ensure_reactor_running