cable_ready 4.4.2 → 4.4.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +14 -2
- data/Gemfile.lock +1 -1
- data/lib/cable_ready/channel.rb +2 -2
- data/lib/cable_ready/version.rb +1 -1
- data/package.json +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6d8a5869e532577a273e312f83e5f61eb576c6d873758a0b96588a0aafb903ba
|
4
|
+
data.tar.gz: 8f945cd61299c9bee1f2bd8d4d3b4310dd8ccd99e309ee84473265c4d7b48dd9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce5561230f04527527d20e945face070adf1171727bc454e2dcf4fe603ad9cb1eec9f91b62068b5db989633341f4333b80db3b97e96e10c9af7d3320e2f0f898
|
7
|
+
data.tar.gz: b4ff356e41e4cb04d93a2af3a9742c85cab968fb4726ef2e9d5ed859af2b5cf4fb3fec61f83ab8f5d604dd72744948af947952afbd4a175c8ed2ea0802c0d3c4
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [Unreleased](https://github.com/hopsoft/cable_ready/tree/HEAD)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.4.2...HEAD)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- Fix bug related to channel calling broadcast on the singleton [\#82](https://github.com/hopsoft/cable_ready/pull/82) ([hopsoft](https://github.com/hopsoft))
|
10
|
+
|
11
|
+
## [v4.4.2](https://github.com/hopsoft/cable_ready/tree/v4.4.2) (2020-11-30)
|
12
|
+
|
13
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.4.1...v4.4.2)
|
14
|
+
|
3
15
|
## [v4.4.1](https://github.com/hopsoft/cable_ready/tree/v4.4.1) (2020-11-28)
|
4
16
|
|
5
17
|
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.4.0...v4.4.1)
|
@@ -129,8 +141,6 @@
|
|
129
141
|
- Make morph emit after event [\#48](https://github.com/hopsoft/cable_ready/pull/48) ([julianrubisch](https://github.com/julianrubisch))
|
130
142
|
- Customize operations via initializer [\#47](https://github.com/hopsoft/cable_ready/pull/47) ([leastbad](https://github.com/leastbad))
|
131
143
|
- Correct method 'outerHtml' to 'outer\_html' in documentation [\#39](https://github.com/hopsoft/cable_ready/pull/39) ([pskarlas](https://github.com/pskarlas))
|
132
|
-
- Add setStyles [\#37](https://github.com/hopsoft/cable_ready/pull/37) ([excid3](https://github.com/excid3))
|
133
|
-
- Fix typo in method name outerHTML -\> outer\_html [\#35](https://github.com/hopsoft/cable_ready/pull/35) ([back2war](https://github.com/back2war))
|
134
144
|
|
135
145
|
## [v4.2.0](https://github.com/hopsoft/cable_ready/tree/v4.2.0) (2020-06-02)
|
136
146
|
|
@@ -165,6 +175,7 @@
|
|
165
175
|
|
166
176
|
**Merged pull requests:**
|
167
177
|
|
178
|
+
- Fix typo in method name outerHTML -\> outer\_html [\#35](https://github.com/hopsoft/cable_ready/pull/35) ([back2war](https://github.com/back2war))
|
168
179
|
- Add funding file [\#31](https://github.com/hopsoft/cable_ready/pull/31) ([andrewmcodes](https://github.com/andrewmcodes))
|
169
180
|
- update README and package.json [\#30](https://github.com/hopsoft/cable_ready/pull/30) ([andrewmcodes](https://github.com/andrewmcodes))
|
170
181
|
|
@@ -174,6 +185,7 @@
|
|
174
185
|
|
175
186
|
**Merged pull requests:**
|
176
187
|
|
188
|
+
- Add setStyles [\#37](https://github.com/hopsoft/cable_ready/pull/37) ([excid3](https://github.com/excid3))
|
177
189
|
- Bump acorn from 7.1.0 to 7.1.1 in /javascript [\#29](https://github.com/hopsoft/cable_ready/pull/29) ([dependabot[bot]](https://github.com/apps/dependabot))
|
178
190
|
- Set cookie support [\#28](https://github.com/hopsoft/cable_ready/pull/28) ([hopsoft](https://github.com/hopsoft))
|
179
191
|
- README.md: Fix typo [\#27](https://github.com/hopsoft/cable_ready/pull/27) ([henrik](https://github.com/henrik))
|
data/Gemfile.lock
CHANGED
data/lib/cable_ready/channel.rb
CHANGED
@@ -28,11 +28,11 @@ module CableReady
|
|
28
28
|
end
|
29
29
|
|
30
30
|
def broadcast(clear = true)
|
31
|
-
CableReady::Channels.instance.broadcast(identifier, clear)
|
31
|
+
CableReady::Channels.instance.broadcast(identifier, clear: clear)
|
32
32
|
end
|
33
33
|
|
34
34
|
def broadcast_to(model, clear = true)
|
35
|
-
CableReady::Channels.instance.broadcast_to(model, identifier, clear)
|
35
|
+
CableReady::Channels.instance.broadcast_to(model, identifier, clear: clear)
|
36
36
|
end
|
37
37
|
|
38
38
|
private
|
data/lib/cable_ready/version.rb
CHANGED
data/package.json
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cable_ready
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.4.
|
4
|
+
version: 4.4.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Nathan Hopkins
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-12-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rails
|