aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/lib/action_cable/connection/subscriptions.rb
diff options
context:
space:
mode:
authorRafael França <rafaelmfranca@gmail.com>2016-02-22 22:55:39 -0300
committerRafael França <rafaelmfranca@gmail.com>2016-02-22 22:55:39 -0300
commitd3f0aa36c388310fbbbcab6295548dc18e385d0f (patch)
treeb2a343ab2e99b11c279a6f47d355f381bd191689 /actioncable/lib/action_cable/connection/subscriptions.rb
parentb86bf3929c0cbbee2bd9b4bd0f6460bd7ba99e7b (diff)
parent05088b6299a39f4eb9b1da95b05d2e14e3c90c8e (diff)
downloadrails-d3f0aa36c388310fbbbcab6295548dc18e385d0f.tar.gz
rails-d3f0aa36c388310fbbbcab6295548dc18e385d0f.tar.bz2
rails-d3f0aa36c388310fbbbcab6295548dc18e385d0f.zip
Merge pull request #23668 from maclover7/cable-docs
Full Action Cable documentation read through
Diffstat (limited to 'actioncable/lib/action_cable/connection/subscriptions.rb')
-rw-r--r--actioncable/lib/action_cable/connection/subscriptions.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actioncable/lib/action_cable/connection/subscriptions.rb b/actioncable/lib/action_cable/connection/subscriptions.rb
index 24934e12f2..3742f248d1 100644
--- a/actioncable/lib/action_cable/connection/subscriptions.rb
+++ b/actioncable/lib/action_cable/connection/subscriptions.rb
@@ -3,8 +3,8 @@ require 'active_support/core_ext/hash/indifferent_access'
module ActionCable
module Connection
# Collection class for all the channel subscriptions established on a given connection. Responsible for routing incoming commands that arrive on
- # the connection to the proper channel. Should not be used directly by the user.
- class Subscriptions
+ # the connection to the proper channel.
+ class Subscriptions # :nodoc:
def initialize(connection)
@connection = connection
@subscriptions = {}