actioncable 7.1.3.4 → 7.1.5.2
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 +30 -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 +10 -13
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a9f8969a0ec80db84e8ab081b53217dd68baeccf10acfe0b8b563ca141540c3a
|
4
|
+
data.tar.gz: b07345daf752dd0878124b042791ae54c781a1997dcc88fe1b0d66c9ec0d7ef7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f5c46163a001f3049f0677d46fbb79d50432a1d459a0a911b1fb8e7ce2ebc37185afa0f08279308164ed29026b8e4fed8dcc474f2e15ce41f76bf7a7e6aed6d
|
7
|
+
data.tar.gz: 4ef470878b2578aff6162e27458aab65f266eee0e7238fcdee33759c13e9e590bef10b4d80950d53fd542884bc69eb741f7691d34819a7a2199777efefc520c0
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,33 @@
|
|
1
|
+
## Rails 7.1.5.2 (August 13, 2025) ##
|
2
|
+
|
3
|
+
* No changes.
|
4
|
+
|
5
|
+
|
6
|
+
## Rails 7.1.5.1 (December 10, 2024) ##
|
7
|
+
|
8
|
+
* No changes.
|
9
|
+
|
10
|
+
|
11
|
+
## Rails 7.1.5 (October 30, 2024) ##
|
12
|
+
|
13
|
+
* No changes.
|
14
|
+
|
15
|
+
|
16
|
+
## Rails 7.1.4.2 (October 23, 2024) ##
|
17
|
+
|
18
|
+
* No changes.
|
19
|
+
|
20
|
+
|
21
|
+
## Rails 7.1.4.1 (October 15, 2024) ##
|
22
|
+
|
23
|
+
* No changes.
|
24
|
+
|
25
|
+
|
26
|
+
## Rails 7.1.4 (August 22, 2024) ##
|
27
|
+
|
28
|
+
* No changes.
|
29
|
+
|
30
|
+
|
1
31
|
## Rails 7.1.3.4 (June 04, 2024) ##
|
2
32
|
|
3
33
|
* 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,14 @@
|
|
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.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pratik Naik
|
8
8
|
- David Heinemeier Hansson
|
9
|
-
autorequire:
|
10
9
|
bindir: bin
|
11
10
|
cert_chain: []
|
12
|
-
date:
|
11
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
13
12
|
dependencies:
|
14
13
|
- !ruby/object:Gem::Dependency
|
15
14
|
name: activesupport
|
@@ -17,28 +16,28 @@ dependencies:
|
|
17
16
|
requirements:
|
18
17
|
- - '='
|
19
18
|
- !ruby/object:Gem::Version
|
20
|
-
version: 7.1.
|
19
|
+
version: 7.1.5.2
|
21
20
|
type: :runtime
|
22
21
|
prerelease: false
|
23
22
|
version_requirements: !ruby/object:Gem::Requirement
|
24
23
|
requirements:
|
25
24
|
- - '='
|
26
25
|
- !ruby/object:Gem::Version
|
27
|
-
version: 7.1.
|
26
|
+
version: 7.1.5.2
|
28
27
|
- !ruby/object:Gem::Dependency
|
29
28
|
name: actionpack
|
30
29
|
requirement: !ruby/object:Gem::Requirement
|
31
30
|
requirements:
|
32
31
|
- - '='
|
33
32
|
- !ruby/object:Gem::Version
|
34
|
-
version: 7.1.
|
33
|
+
version: 7.1.5.2
|
35
34
|
type: :runtime
|
36
35
|
prerelease: false
|
37
36
|
version_requirements: !ruby/object:Gem::Requirement
|
38
37
|
requirements:
|
39
38
|
- - '='
|
40
39
|
- !ruby/object:Gem::Version
|
41
|
-
version: 7.1.
|
40
|
+
version: 7.1.5.2
|
42
41
|
- !ruby/object:Gem::Dependency
|
43
42
|
name: nio4r
|
44
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -154,12 +153,11 @@ licenses:
|
|
154
153
|
- MIT
|
155
154
|
metadata:
|
156
155
|
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.
|
156
|
+
changelog_uri: https://github.com/rails/rails/blob/v7.1.5.2/actioncable/CHANGELOG.md
|
157
|
+
documentation_uri: https://api.rubyonrails.org/v7.1.5.2/
|
159
158
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
160
|
-
source_code_uri: https://github.com/rails/rails/tree/v7.1.
|
159
|
+
source_code_uri: https://github.com/rails/rails/tree/v7.1.5.2/actioncable
|
161
160
|
rubygems_mfa_required: 'true'
|
162
|
-
post_install_message:
|
163
161
|
rdoc_options: []
|
164
162
|
require_paths:
|
165
163
|
- lib
|
@@ -174,8 +172,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
174
172
|
- !ruby/object:Gem::Version
|
175
173
|
version: '0'
|
176
174
|
requirements: []
|
177
|
-
rubygems_version: 3.
|
178
|
-
signing_key:
|
175
|
+
rubygems_version: 3.6.9
|
179
176
|
specification_version: 4
|
180
177
|
summary: WebSocket framework for Rails.
|
181
178
|
test_files: []
|