diff options
author | Matthew Draper <matthew@trebex.net> | 2017-08-20 01:07:05 +0930 |
---|---|---|
committer | Matthew Draper <matthew@trebex.net> | 2017-08-20 01:07:05 +0930 |
commit | 1da7fa87288efdc89aa01d7ef71998e770b81671 (patch) | |
tree | c69718bf7a5f5134505dfafbfc112c7c59e6c968 /actioncable/lib/action_cable | |
parent | 0e7a5661dc6153a3726759588cd99cdf5e002c75 (diff) | |
download | rails-1da7fa87288efdc89aa01d7ef71998e770b81671.tar.gz rails-1da7fa87288efdc89aa01d7ef71998e770b81671.tar.bz2 rails-1da7fa87288efdc89aa01d7ef71998e770b81671.zip |
Attributes are protected, not private, to avoid the warning
Diffstat (limited to 'actioncable/lib/action_cable')
-rw-r--r-- | actioncable/lib/action_cable/remote_connections.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/actioncable/lib/action_cable/remote_connections.rb b/actioncable/lib/action_cable/remote_connections.rb index a92b5e90b4..a07a517092 100644 --- a/actioncable/lib/action_cable/remote_connections.rb +++ b/actioncable/lib/action_cable/remote_connections.rb @@ -51,9 +51,10 @@ module ActionCable server.connection_identifiers end - private + protected attr_reader :server + private def set_identifier_instance_vars(ids) raise InvalidIdentifiersError unless valid_identifiers?(ids) ids.each { |k, v| instance_variable_set("@#{k}", v) } |