aboutsummaryrefslogtreecommitdiffstats
path: root/lib/action_cable/channel.rb
diff options
context:
space:
mode:
authorKasper Timm Hansen <kaspth@gmail.com>2015-07-29 21:57:20 +0200
committerKasper Timm Hansen <kaspth@gmail.com>2015-07-29 21:57:20 +0200
commitae61460cb2ebcc25528686d896c136522690f083 (patch)
tree65036480d3fddc27f0bfafd17d10eb1e27debc91 /lib/action_cable/channel.rb
parent437ed97f7611cb34c6f47d27df25053f988a228f (diff)
parent5954fd1e0aa907e07ffff932aedc51109d4ce56d (diff)
downloadrails-ae61460cb2ebcc25528686d896c136522690f083.tar.gz
rails-ae61460cb2ebcc25528686d896c136522690f083.tar.bz2
rails-ae61460cb2ebcc25528686d896c136522690f083.zip
Merge pull request #34 from lsylvester/add-broadcast_to-and-stream_for-methods-to-channel
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