actioncable 7.1.3.4 → 7.1.5.1
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 +25 -0
- data/lib/action_cable/channel/test_case.rb +3 -3
- data/lib/action_cable/gem_version.rb +2 -2
- data/lib/action_cable/test_helper.rb +3 -7
- data/lib/action_cable.rb +1 -1
- metadata +13 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: edd9d86e9fbca1d2b24d81d798d1a50eac2fe0f33f5b9a6b623c3a0e8d02ac7d
|
4
|
+
data.tar.gz: bd9c7fca8f92dd7e0b6a6dc30e8a2c8ba221baf08da2a1ca9b56ade8e27505f8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78049f1d0b8779d8202b3ce9ae6feee445b6200065c5eb78103a662d18a2015f890ff6662bb9df1bf5d8da34a03f7a5bb7af81709f13851b13894ba2432d3a1f
|
7
|
+
data.tar.gz: e403b191bafc0f75694adbb8727b7be7f17acb855314ddffe5a860a57c17a471c62ce7ebcb4526af815e3ffe98f24218197f2216533f0341063fe6f8ab664b9a
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,28 @@
|
|
1
|
+
## Rails 7.1.5.1 (December 10, 2024) ##
|
2
|
+
|
3
|
+
* No changes.
|
4
|
+
|
5
|
+
|
6
|
+
## Rails 7.1.5 (October 30, 2024) ##
|
7
|
+
|
8
|
+
* No changes.
|
9
|
+
|
10
|
+
|
11
|
+
## Rails 7.1.4.2 (October 23, 2024) ##
|
12
|
+
|
13
|
+
* No changes.
|
14
|
+
|
15
|
+
|
16
|
+
## Rails 7.1.4.1 (October 15, 2024) ##
|
17
|
+
|
18
|
+
* No changes.
|
19
|
+
|
20
|
+
|
21
|
+
## Rails 7.1.4 (August 22, 2024) ##
|
22
|
+
|
23
|
+
* No changes.
|
24
|
+
|
25
|
+
|
1
26
|
## Rails 7.1.3.4 (June 04, 2024) ##
|
2
27
|
|
3
28
|
* No changes.
|
@@ -140,11 +140,11 @@ module ActionCable
|
|
140
140
|
# ActionCable::Channel::TestCase will also automatically provide the following instance
|
141
141
|
# methods for use in the tests:
|
142
142
|
#
|
143
|
-
#
|
143
|
+
# connection::
|
144
144
|
# An ActionCable::Channel::ConnectionStub, representing the current HTTP connection.
|
145
|
-
#
|
145
|
+
# subscription::
|
146
146
|
# An instance of the current channel, created when you call +subscribe+.
|
147
|
-
#
|
147
|
+
# transmissions::
|
148
148
|
# A list of all messages that have been transmitted into the channel.
|
149
149
|
#
|
150
150
|
#
|
@@ -29,21 +29,17 @@ module ActionCable
|
|
29
29
|
# end
|
30
30
|
#
|
31
31
|
# If a block is passed, that block should cause the specified number of
|
32
|
-
# messages to be broadcasted.
|
32
|
+
# messages to be broadcasted.
|
33
33
|
#
|
34
34
|
# def test_broadcasts_again
|
35
|
-
#
|
35
|
+
# assert_broadcasts('messages', 1) do
|
36
36
|
# ActionCable.server.broadcast 'messages', { text: 'hello' }
|
37
37
|
# end
|
38
|
-
# assert_equal({ text: 'hello' }, message)
|
39
38
|
#
|
40
|
-
#
|
39
|
+
# assert_broadcasts('messages', 2) do
|
41
40
|
# ActionCable.server.broadcast 'messages', { text: 'hi' }
|
42
41
|
# ActionCable.server.broadcast 'messages', { text: 'how are you?' }
|
43
42
|
# end
|
44
|
-
# assert_equal 2, messages.length
|
45
|
-
# assert_equal({ text: 'hi' }, messages.first)
|
46
|
-
# assert_equal({ text: 'how are you?' }, messages.last)
|
47
43
|
# end
|
48
44
|
#
|
49
45
|
def assert_broadcasts(stream, number, &block)
|
data/lib/action_cable.rb
CHANGED
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: actioncable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 7.1.
|
4
|
+
version: 7.1.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pratik Naik
|
8
8
|
- David Heinemeier Hansson
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2024-
|
12
|
+
date: 2024-12-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|
@@ -17,28 +17,28 @@ dependencies:
|
|
17
17
|
requirements:
|
18
18
|
- - '='
|
19
19
|
- !ruby/object:Gem::Version
|
20
|
-
version: 7.1.
|
20
|
+
version: 7.1.5.1
|
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: 7.1.
|
27
|
+
version: 7.1.5.1
|
28
28
|
- !ruby/object:Gem::Dependency
|
29
29
|
name: actionpack
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|
31
31
|
requirements:
|
32
32
|
- - '='
|
33
33
|
- !ruby/object:Gem::Version
|
34
|
-
version: 7.1.
|
34
|
+
version: 7.1.5.1
|
35
35
|
type: :runtime
|
36
36
|
prerelease: false
|
37
37
|
version_requirements: !ruby/object:Gem::Requirement
|
38
38
|
requirements:
|
39
39
|
- - '='
|
40
40
|
- !ruby/object:Gem::Version
|
41
|
-
version: 7.1.
|
41
|
+
version: 7.1.5.1
|
42
42
|
- !ruby/object:Gem::Dependency
|
43
43
|
name: nio4r
|
44
44
|
requirement: !ruby/object:Gem::Requirement
|
@@ -154,12 +154,12 @@ licenses:
|
|
154
154
|
- MIT
|
155
155
|
metadata:
|
156
156
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
157
|
-
changelog_uri: https://github.com/rails/rails/blob/v7.1.
|
158
|
-
documentation_uri: https://api.rubyonrails.org/v7.1.
|
157
|
+
changelog_uri: https://github.com/rails/rails/blob/v7.1.5.1/actioncable/CHANGELOG.md
|
158
|
+
documentation_uri: https://api.rubyonrails.org/v7.1.5.1/
|
159
159
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
160
|
-
source_code_uri: https://github.com/rails/rails/tree/v7.1.
|
160
|
+
source_code_uri: https://github.com/rails/rails/tree/v7.1.5.1/actioncable
|
161
161
|
rubygems_mfa_required: 'true'
|
162
|
-
post_install_message:
|
162
|
+
post_install_message:
|
163
163
|
rdoc_options: []
|
164
164
|
require_paths:
|
165
165
|
- lib
|
@@ -174,8 +174,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
174
174
|
- !ruby/object:Gem::Version
|
175
175
|
version: '0'
|
176
176
|
requirements: []
|
177
|
-
rubygems_version: 3.
|
178
|
-
signing_key:
|
177
|
+
rubygems_version: 3.5.22
|
178
|
+
signing_key:
|
179
179
|
specification_version: 4
|
180
180
|
summary: WebSocket framework for Rails.
|
181
181
|
test_files: []
|