actioncable 5.2.0 → 5.2.1.rc1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/action_cable/channel/broadcasting.rb +1 -1
- data/lib/action_cable/channel/callbacks.rb +1 -1
- data/lib/action_cable/channel/naming.rb +1 -1
- data/lib/action_cable/connection/identification.rb +1 -1
- data/lib/action_cable/gem_version.rb +2 -2
- metadata +9 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1cd1b6fc02c35aa5b95cb95dba169f8440e267935405cf3dff8fb87e6637d060
|
|
4
|
+
data.tar.gz: d4a1044aca638c235da857243d8db6d698b1f42bf8cb6898ef78932ae715afe3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 82b8a50c902c1202d70e45eae623d9830ec63f4d0ca58ceba29ab9644a75011993ccf25112c8a3218765f354409103590d9360b76cbfed11d5f4933782c4dfe7
|
|
7
|
+
data.tar.gz: 26d74115375abed9ebf10bda516466693c5d005bc412bf34b7755ebdec671f982d2cd3e2832f9b37167433299f75b2a00ba16d1481f3477c296bd59ef77afed7
|
data/CHANGELOG.md
CHANGED
|
@@ -9,7 +9,7 @@ module ActionCable
|
|
|
9
9
|
|
|
10
10
|
delegate :broadcasting_for, to: :class
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
module ClassMethods
|
|
13
13
|
# Broadcast a hash to a unique broadcasting for this <tt>model</tt> in this channel.
|
|
14
14
|
def broadcast_to(model, message)
|
|
15
15
|
ActionCable.server.broadcast(broadcasting_for([ channel_name, model ]), message)
|
|
@@ -5,7 +5,7 @@ module ActionCable
|
|
|
5
5
|
module Naming
|
|
6
6
|
extend ActiveSupport::Concern
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
module ClassMethods
|
|
9
9
|
# Returns the name of the channel, underscored, without the <tt>Channel</tt> ending.
|
|
10
10
|
# If the channel is in a namespace, then the namespaces are represented by single
|
|
11
11
|
# colon separators in the channel name.
|
|
@@ -11,7 +11,7 @@ module ActionCable
|
|
|
11
11
|
class_attribute :identifiers, default: Set.new
|
|
12
12
|
end
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
module ClassMethods
|
|
15
15
|
# Mark a key as being a connection identifier index that can then be used to find the specific connection again later.
|
|
16
16
|
# Common identifiers are current_user and current_account, but could be anything, really.
|
|
17
17
|
#
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: actioncable
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.2.
|
|
4
|
+
version: 5.2.1.rc1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Pratik Naik
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2018-
|
|
12
|
+
date: 2018-07-30 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: actionpack
|
|
@@ -17,14 +17,14 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - '='
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 5.2.
|
|
20
|
+
version: 5.2.1.rc1
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - '='
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 5.2.
|
|
27
|
+
version: 5.2.1.rc1
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: nio4r
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -118,8 +118,8 @@ homepage: http://rubyonrails.org
|
|
|
118
118
|
licenses:
|
|
119
119
|
- MIT
|
|
120
120
|
metadata:
|
|
121
|
-
source_code_uri: https://github.com/rails/rails/tree/v5.2.
|
|
122
|
-
changelog_uri: https://github.com/rails/rails/blob/v5.2.
|
|
121
|
+
source_code_uri: https://github.com/rails/rails/tree/v5.2.1.rc1/actioncable
|
|
122
|
+
changelog_uri: https://github.com/rails/rails/blob/v5.2.1.rc1/actioncable/CHANGELOG.md
|
|
123
123
|
post_install_message:
|
|
124
124
|
rdoc_options: []
|
|
125
125
|
require_paths:
|
|
@@ -131,12 +131,12 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
131
131
|
version: 2.2.2
|
|
132
132
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
133
133
|
requirements:
|
|
134
|
-
- - "
|
|
134
|
+
- - ">"
|
|
135
135
|
- !ruby/object:Gem::Version
|
|
136
|
-
version:
|
|
136
|
+
version: 1.3.1
|
|
137
137
|
requirements: []
|
|
138
138
|
rubyforge_project:
|
|
139
|
-
rubygems_version: 2.7.
|
|
139
|
+
rubygems_version: 2.7.3
|
|
140
140
|
signing_key:
|
|
141
141
|
specification_version: 4
|
|
142
142
|
summary: WebSocket framework for Rails.
|