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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 64895c6447df06af809371d7ba71c6c4cbd0408760b2ba70dd86d10be099214e
4
- data.tar.gz: 897d7f9508615894e134aa32324843ab02034a833b4d31d913f862ef8a155a3d
3
+ metadata.gz: 6d8a5869e532577a273e312f83e5f61eb576c6d873758a0b96588a0aafb903ba
4
+ data.tar.gz: 8f945cd61299c9bee1f2bd8d4d3b4310dd8ccd99e309ee84473265c4d7b48dd9
5
5
  SHA512:
6
- metadata.gz: da41b6c7511d67f111d9fb0c041d94b3edc197c0c8b84e121c13a6f086b30a5530a65de23cd857e07c7d4ec1d68ee35e752fde44d1228c1ae4f4e0a981ed90a5
7
- data.tar.gz: 77e8bfd9b4b105bc87e4d7a392b8c6b319afa46a6ea080ccaec9b6ecbd002416be1856252d8bf6cd69a15c5df5712784030158ee1010b24a8dfe1a878aecf304
6
+ metadata.gz: ce5561230f04527527d20e945face070adf1171727bc454e2dcf4fe603ad9cb1eec9f91b62068b5db989633341f4333b80db3b97e96e10c9af7d3320e2f0f898
7
+ data.tar.gz: b4ff356e41e4cb04d93a2af3a9742c85cab968fb4726ef2e9d5ed859af2b5cf4fb3fec61f83ab8f5d604dd72744948af947952afbd4a175c8ed2ea0802c0d3c4
@@ -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))
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- cable_ready (4.4.2)
4
+ cable_ready (4.4.3)
5
5
  rails (>= 5.2)
6
6
 
7
7
  GEM
@@ -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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CableReady
4
- VERSION = "4.4.2"
4
+ VERSION = "4.4.3"
5
5
  end
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cable_ready",
3
- "version": "4.4.1",
3
+ "version": "4.4.2",
4
4
  "description": "CableReady helps you create great real-time user experiences by making it simple to trigger client-side DOM changes from server-side Ruby.",
5
5
  "keywords": [
6
6
  "ruby",
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.2
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-30 00:00:00.000000000 Z
11
+ date: 2020-12-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails