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.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/action_cable.rb b/lib/action_cable.rb
index 7df2a8c5eb..993c260e49 100644
--- a/lib/action_cable.rb
+++ b/lib/action_cable.rb
@@ -1,12 +1,13 @@
-require 'cramp'
require 'active_support'
require 'active_support/json'
require 'active_support/concern'
require 'active_support/core_ext/hash/indifferent_access'
+require 'active_support/callbacks'
module ActionCable
VERSION = '0.0.1'
autoload :Channel, 'action_cable/channel'
+ autoload :Worker, 'action_cable/worker'
autoload :Server, 'action_cable/server'
end