aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_cable/channel.rb
diff options
context:
space:
mode:
authorLachlan Sylvester <lachlan.sylvester@publicisfrontfoot.com.au>2015-07-22 11:03:47 +1000
committerLachlan Sylvester <lachlan.sylvester@publicisfrontfoot.com.au>2015-07-28 17:31:37 +1000
commit5954fd1e0aa907e07ffff932aedc51109d4ce56d (patch)
tree76fc4b396065d92d6b62b0f3ce74b122d97901b1 /lib/action_cable/channel.rb
parent6ee8bb9310f78de85e6b89c8cac33493b0582383 (diff)
downloadrails-5954fd1e0aa907e07ffff932aedc51109d4ce56d.tar.gz
rails-5954fd1e0aa907e07ffff932aedc51109d4ce56d.tar.bz2
rails-5954fd1e0aa907e07ffff932aedc51109d4ce56d.zip
add broadcast_to and stream_for methods as per #26
Diffstat (limited to 'lib/action_cable/channel.rb')
-rw-r--r--lib/action_cable/channel.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/action_cable/channel.rb b/lib/action_cable/channel.rb
index 9e4d3d3f93..3b973ba0a7 100644
--- a/lib/action_cable/channel.rb
+++ b/lib/action_cable/channel.rb
@@ -1,7 +1,9 @@
module ActionCable
module Channel
autoload :Base, 'action_cable/channel/base'
+ autoload :Broadcasting, 'action_cable/channel/broadcasting'
autoload :Callbacks, 'action_cable/channel/callbacks'
+ autoload :Naming, 'action_cable/channel/naming'
autoload :PeriodicTimers, 'action_cable/channel/periodic_timers'
autoload :Streams, 'action_cable/channel/streams'
end