actioncable 6.0.2.2 → 6.0.3.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 +10 -0
- data/README.md +1 -1
- data/lib/action_cable/connection/test_case.rb +1 -1
- data/lib/action_cable/gem_version.rb +2 -2
- data/lib/action_cable/server/worker.rb +0 -1
- metadata +11 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6bb993157d915eaea16491d853a4c75c8a18575061f1f90c233de2442d677962
|
|
4
|
+
data.tar.gz: d43559d007ec5daefd96282a1698c3f79a4cbab7722b2df79c120c9f00c04661
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 65a7989249d2592482b68b2ac53ee066df957c4fbf0ac3aff6201a96742c60933bd1e72e9acb0d0f40c7786db039c9ab6f7a26d6d80a0c51ef949623c6b8a3e4
|
|
7
|
+
data.tar.gz: 0115a6fa90e5c06e887d3a9f00a3cfeeac7888b462867fa62a825c0ade85f83b7cc26c631e7777a983b1ee56d5c21b0cc07f6b1d72f4f8de3a88073ff016cd5b
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -21,4 +21,4 @@ Bug reports for the Ruby on Rails project can be filed here:
|
|
|
21
21
|
|
|
22
22
|
Feature requests should be discussed on the rails-core mailing list here:
|
|
23
23
|
|
|
24
|
-
* https://
|
|
24
|
+
* https://discuss.rubyonrails.org/c/rubyonrails-core
|
|
@@ -185,7 +185,7 @@ module ActionCable
|
|
|
185
185
|
|
|
186
186
|
connection = self.class.connection_class.allocate
|
|
187
187
|
connection.singleton_class.include(TestConnection)
|
|
188
|
-
connection.send(:initialize, build_test_request(path, request_params))
|
|
188
|
+
connection.send(:initialize, build_test_request(path, **request_params))
|
|
189
189
|
connection.connect if connection.respond_to?(:connect)
|
|
190
190
|
|
|
191
191
|
# Only set instance variable if connected successfully
|
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: 6.0.
|
|
4
|
+
version: 6.0.3.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: 2020-
|
|
12
|
+
date: 2020-05-01 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: 6.0.
|
|
20
|
+
version: 6.0.3.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: 6.0.
|
|
27
|
+
version: 6.0.3.rc1
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: nio4r
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -126,10 +126,10 @@ licenses:
|
|
|
126
126
|
- MIT
|
|
127
127
|
metadata:
|
|
128
128
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
|
129
|
-
changelog_uri: https://github.com/rails/rails/blob/v6.0.
|
|
130
|
-
documentation_uri: https://api.rubyonrails.org/v6.0.
|
|
131
|
-
mailing_list_uri: https://
|
|
132
|
-
source_code_uri: https://github.com/rails/rails/tree/v6.0.
|
|
129
|
+
changelog_uri: https://github.com/rails/rails/blob/v6.0.3.rc1/actioncable/CHANGELOG.md
|
|
130
|
+
documentation_uri: https://api.rubyonrails.org/v6.0.3.rc1/
|
|
131
|
+
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
|
132
|
+
source_code_uri: https://github.com/rails/rails/tree/v6.0.3.rc1/actioncable
|
|
133
133
|
post_install_message:
|
|
134
134
|
rdoc_options: []
|
|
135
135
|
require_paths:
|
|
@@ -141,11 +141,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
141
141
|
version: 2.5.0
|
|
142
142
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
143
|
requirements:
|
|
144
|
-
- - "
|
|
144
|
+
- - ">"
|
|
145
145
|
- !ruby/object:Gem::Version
|
|
146
|
-
version:
|
|
146
|
+
version: 1.3.1
|
|
147
147
|
requirements: []
|
|
148
|
-
rubygems_version: 3.
|
|
148
|
+
rubygems_version: 3.1.2
|
|
149
149
|
signing_key:
|
|
150
150
|
specification_version: 4
|
|
151
151
|
summary: WebSocket framework for Rails.
|