aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_cable.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/action_cable.rb')
-rw-r--r--lib/action_cable.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/action_cable.rb b/lib/action_cable.rb
index 0681b8bdde..3352453491 100644
--- a/lib/action_cable.rb
+++ b/lib/action_cable.rb
@@ -7,10 +7,12 @@ require 'active_support'
require 'active_support/json'
require 'active_support/concern'
require 'active_support/core_ext/hash/indifferent_access'
+require 'active_support/core_ext/module/delegation'
require 'active_support/callbacks'
require 'faye/websocket'
require 'celluloid'
+require 'em-hiredis'
require 'action_cable/engine' if defined?(Rails)
@@ -20,4 +22,7 @@ module ActionCable
autoload :Channel, 'action_cable/channel'
autoload :Worker, 'action_cable/worker'
autoload :Server, 'action_cable/server'
+ autoload :Connection, 'action_cable/connection'
+ autoload :RemoteConnection, 'action_cable/remote_connection'
+ autoload :RemoteConnections, 'action_cable/remote_connections'
end