cable_ready 4.3.0.pre2 → 4.4.0.pre3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +333 -0
- data/Gemfile.lock +105 -75
- data/README.md +6 -3
- data/Rakefile +6 -0
- data/bin/standardize +2 -1
- data/cable_ready.gemspec +6 -2
- data/lib/cable_ready/channel.rb +14 -5
- data/lib/cable_ready/channels.rb +27 -15
- data/lib/cable_ready/version.rb +1 -1
- data/package.json +36 -0
- data/tags +40 -26
- data/yarn.lock +2552 -0
- metadata +36 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2a833955cf21a426b40df8ef5beb2dae7bead6f3453fa5ec7a42d6e3c4beed72
|
4
|
+
data.tar.gz: 2b6127b78508063c572b5da7a97b44acde16004cac3a4b991c1bd36a6179a43a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 60c2079789ba82ae87a39e32a8310975112ef83f18f4dccf01c478d5fd250922fc57848ea0d67860013d5ac1e0a84ac60b194cd83046bca241c28663ff0caa48
|
7
|
+
data.tar.gz: be3c28a26a62bbafd395baf681459f7d388a5e37afa659aff96c16c4a1b62256c225efe3d6e5e6fa4b560532758ed480ceec2ced9a45b57e961aaf95cdffebcc
|
data/CHANGELOG.md
ADDED
@@ -0,0 +1,333 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## [Unreleased](https://github.com/hopsoft/cable_ready/tree/HEAD)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.4.0.pre2...HEAD)
|
6
|
+
|
7
|
+
**Closed issues:**
|
8
|
+
|
9
|
+
- CableReady detected an error in insertAdjacentHtml. Object doesn't support this action - IE11 only [\#76](https://github.com/hopsoft/cable_ready/issues/76)
|
10
|
+
- shouldMorph doesn't work well with some form elements [\#70](https://github.com/hopsoft/cable_ready/issues/70)
|
11
|
+
- Operations go missing before broadcasting [\#64](https://github.com/hopsoft/cable_ready/issues/64)
|
12
|
+
|
13
|
+
**Merged pull requests:**
|
14
|
+
|
15
|
+
- method chaining [\#78](https://github.com/hopsoft/cable_ready/pull/78) ([leastbad](https://github.com/leastbad))
|
16
|
+
- jquery support [\#75](https://github.com/hopsoft/cable_ready/pull/75) ([leastbad](https://github.com/leastbad))
|
17
|
+
- Removed isEqualNode comparison [\#71](https://github.com/hopsoft/cable_ready/pull/71) ([adank92](https://github.com/adank92))
|
18
|
+
|
19
|
+
# Changelog
|
20
|
+
|
21
|
+
## [v4.4.0.pre2](https://github.com/hopsoft/cable_ready/tree/v4.4.0.pre2) (2020-11-02)
|
22
|
+
|
23
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.4.0.pre1...v4.4.0.pre2)
|
24
|
+
|
25
|
+
**Merged pull requests:**
|
26
|
+
|
27
|
+
- use CustomEvent to get IE11 working [\#74](https://github.com/hopsoft/cable_ready/pull/74) ([existentialmutt](https://github.com/existentialmutt))
|
28
|
+
|
29
|
+
## [v4.4.0.pre1](https://github.com/hopsoft/cable_ready/tree/v4.4.0.pre1) (2020-09-25)
|
30
|
+
|
31
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.4.0.pre0...v4.4.0.pre1)
|
32
|
+
|
33
|
+
**Merged pull requests:**
|
34
|
+
|
35
|
+
- Add support for pushState [\#73](https://github.com/hopsoft/cable_ready/pull/73) ([hopsoft](https://github.com/hopsoft))
|
36
|
+
- Bump actionview from 6.0.3.2 to 6.0.3.3 [\#72](https://github.com/hopsoft/cable_ready/pull/72) ([dependabot[bot]](https://github.com/apps/dependabot))
|
37
|
+
- set\_focus operation [\#69](https://github.com/hopsoft/cable_ready/pull/69) ([leastbad](https://github.com/leastbad))
|
38
|
+
|
39
|
+
## [v4.4.0.pre0](https://github.com/hopsoft/cable_ready/tree/v4.4.0.pre0) (2020-09-02)
|
40
|
+
|
41
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.3.0...v4.4.0.pre0)
|
42
|
+
|
43
|
+
**Implemented enhancements:**
|
44
|
+
|
45
|
+
- Add a shared mutex to avoid concurrency issues in Channels [\#65](https://github.com/hopsoft/cable_ready/pull/65) ([barrywoolgar](https://github.com/barrywoolgar))
|
46
|
+
|
47
|
+
**Closed issues:**
|
48
|
+
|
49
|
+
- Using morph with a document fragment appears to do a full replace instead of a morph [\#67](https://github.com/hopsoft/cable_ready/issues/67)
|
50
|
+
- documentation: Mention cable.yml adapter configuration [\#66](https://github.com/hopsoft/cable_ready/issues/66)
|
51
|
+
|
52
|
+
**Merged pull requests:**
|
53
|
+
|
54
|
+
- Provide an async perform method [\#63](https://github.com/hopsoft/cable_ready/pull/63) ([julianrubisch](https://github.com/julianrubisch))
|
55
|
+
- Add braces to hash parameter to remove warning [\#61](https://github.com/hopsoft/cable_ready/pull/61) ([dabit](https://github.com/dabit))
|
56
|
+
- only pass inner html if childrenOnly is false [\#58](https://github.com/hopsoft/cable_ready/pull/58) ([joshleblanc](https://github.com/joshleblanc))
|
57
|
+
|
58
|
+
## [v4.3.0](https://github.com/hopsoft/cable_ready/tree/v4.3.0) (2020-07-02)
|
59
|
+
|
60
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.3.0.pre2...v4.3.0)
|
61
|
+
|
62
|
+
## [v4.3.0.pre2](https://github.com/hopsoft/cable_ready/tree/v4.3.0.pre2) (2020-06-27)
|
63
|
+
|
64
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.3.0-pre1...v4.3.0.pre2)
|
65
|
+
|
66
|
+
**Implemented enhancements:**
|
67
|
+
|
68
|
+
- Notifications [\#55](https://github.com/hopsoft/cable_ready/pull/55) ([leastbad](https://github.com/leastbad))
|
69
|
+
|
70
|
+
**Closed issues:**
|
71
|
+
|
72
|
+
- current\_user concerns? [\#54](https://github.com/hopsoft/cable_ready/issues/54)
|
73
|
+
- Update documentation [\#52](https://github.com/hopsoft/cable_ready/issues/52)
|
74
|
+
|
75
|
+
**Merged pull requests:**
|
76
|
+
|
77
|
+
- Bump rack from 2.2.2 to 2.2.3 [\#57](https://github.com/hopsoft/cable_ready/pull/57) ([dependabot[bot]](https://github.com/apps/dependabot))
|
78
|
+
- Bump actionpack from 6.0.3.1 to 6.0.3.2 [\#56](https://github.com/hopsoft/cable_ready/pull/56) ([dependabot[bot]](https://github.com/apps/dependabot))
|
79
|
+
|
80
|
+
## [v4.3.0-pre1](https://github.com/hopsoft/cable_ready/tree/v4.3.0-pre1) (2020-06-15)
|
81
|
+
|
82
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.3.0.pre1...v4.3.0-pre1)
|
83
|
+
|
84
|
+
## [v4.3.0.pre1](https://github.com/hopsoft/cable_ready/tree/v4.3.0.pre1) (2020-06-15)
|
85
|
+
|
86
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.3.0.pre0...v4.3.0.pre1)
|
87
|
+
|
88
|
+
**Merged pull requests:**
|
89
|
+
|
90
|
+
- text\_content is missing from 4.3.0.pre0 [\#53](https://github.com/hopsoft/cable_ready/pull/53) ([leastbad](https://github.com/leastbad))
|
91
|
+
|
92
|
+
## [v4.3.0.pre0](https://github.com/hopsoft/cable_ready/tree/v4.3.0.pre0) (2020-06-13)
|
93
|
+
|
94
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.2.0...v4.3.0.pre0)
|
95
|
+
|
96
|
+
**Implemented enhancements:**
|
97
|
+
|
98
|
+
- Make DOMOperations extendable [\#44](https://github.com/hopsoft/cable_ready/pull/44) ([n-rodriguez](https://github.com/n-rodriguez))
|
99
|
+
- broadcast\_to method [\#38](https://github.com/hopsoft/cable_ready/pull/38) ([leastbad](https://github.com/leastbad))
|
100
|
+
|
101
|
+
**Closed issues:**
|
102
|
+
|
103
|
+
- Make JS DOMOperations extendable [\#43](https://github.com/hopsoft/cable_ready/issues/43)
|
104
|
+
|
105
|
+
**Merged pull requests:**
|
106
|
+
|
107
|
+
- Dom id signature fix [\#51](https://github.com/hopsoft/cable_ready/pull/51) ([leastbad](https://github.com/leastbad))
|
108
|
+
- add dom\_id helper [\#50](https://github.com/hopsoft/cable_ready/pull/50) ([leastbad](https://github.com/leastbad))
|
109
|
+
- Support for multiple CSS classes. [\#49](https://github.com/hopsoft/cable_ready/pull/49) ([sarriagada](https://github.com/sarriagada))
|
110
|
+
- Make morph emit after event [\#48](https://github.com/hopsoft/cable_ready/pull/48) ([julianrubisch](https://github.com/julianrubisch))
|
111
|
+
- Customize operations via initializer [\#47](https://github.com/hopsoft/cable_ready/pull/47) ([leastbad](https://github.com/leastbad))
|
112
|
+
- Correct method 'outerHtml' to 'outer\_html' in documentation [\#39](https://github.com/hopsoft/cable_ready/pull/39) ([pskarlas](https://github.com/pskarlas))
|
113
|
+
- Add setStyles [\#37](https://github.com/hopsoft/cable_ready/pull/37) ([excid3](https://github.com/excid3))
|
114
|
+
- Fix typo in method name outerHTML -\> outer\_html [\#35](https://github.com/hopsoft/cable_ready/pull/35) ([back2war](https://github.com/back2war))
|
115
|
+
|
116
|
+
## [v4.2.0](https://github.com/hopsoft/cable_ready/tree/v4.2.0) (2020-06-02)
|
117
|
+
|
118
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.1.2...v4.2.0)
|
119
|
+
|
120
|
+
**Closed issues:**
|
121
|
+
|
122
|
+
- Question: Would you consider this intended behaviour? [\#41](https://github.com/hopsoft/cable_ready/issues/41)
|
123
|
+
|
124
|
+
**Merged pull requests:**
|
125
|
+
|
126
|
+
- after-outer-html emitted from new element [\#46](https://github.com/hopsoft/cable_ready/pull/46) ([leastbad](https://github.com/leastbad))
|
127
|
+
- Fix `outer\_html` notation [\#45](https://github.com/hopsoft/cable_ready/pull/45) ([julianrubisch](https://github.com/julianrubisch))
|
128
|
+
- Print out the selector for easier debugging perform errors [\#36](https://github.com/hopsoft/cable_ready/pull/36) ([excid3](https://github.com/excid3))
|
129
|
+
- add set\_property method to library [\#34](https://github.com/hopsoft/cable_ready/pull/34) ([leastbad](https://github.com/leastbad))
|
130
|
+
|
131
|
+
## [v4.1.2](https://github.com/hopsoft/cable_ready/tree/v4.1.2) (2020-04-27)
|
132
|
+
|
133
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.1.1...v4.1.2)
|
134
|
+
|
135
|
+
**Fixed bugs:**
|
136
|
+
|
137
|
+
- Ensure the active text input retains its value and focus after DOM mutations [\#33](https://github.com/hopsoft/cable_ready/pull/33) ([hopsoft](https://github.com/hopsoft))
|
138
|
+
|
139
|
+
## [v4.1.1](https://github.com/hopsoft/cable_ready/tree/v4.1.1) (2020-04-20)
|
140
|
+
|
141
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.1.0...v4.1.1)
|
142
|
+
|
143
|
+
**Implemented enhancements:**
|
144
|
+
|
145
|
+
- add set\_style method to library [\#32](https://github.com/hopsoft/cable_ready/pull/32) ([leastbad](https://github.com/leastbad))
|
146
|
+
|
147
|
+
**Merged pull requests:**
|
148
|
+
|
149
|
+
- Add funding file [\#31](https://github.com/hopsoft/cable_ready/pull/31) ([andrewmcodes](https://github.com/andrewmcodes))
|
150
|
+
- update README and package.json [\#30](https://github.com/hopsoft/cable_ready/pull/30) ([andrewmcodes](https://github.com/andrewmcodes))
|
151
|
+
|
152
|
+
## [v4.1.0](https://github.com/hopsoft/cable_ready/tree/v4.1.0) (2020-04-05)
|
153
|
+
|
154
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.0.9...v4.1.0)
|
155
|
+
|
156
|
+
**Merged pull requests:**
|
157
|
+
|
158
|
+
- 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))
|
159
|
+
- Set cookie support [\#28](https://github.com/hopsoft/cable_ready/pull/28) ([hopsoft](https://github.com/hopsoft))
|
160
|
+
- README.md: Fix typo [\#27](https://github.com/hopsoft/cable_ready/pull/27) ([henrik](https://github.com/henrik))
|
161
|
+
- Update event-dispatch.md [\#25](https://github.com/hopsoft/cable_ready/pull/25) ([leastbad](https://github.com/leastbad))
|
162
|
+
- Fix typo on Remove Css Class methods [\#24](https://github.com/hopsoft/cable_ready/pull/24) ([darkrubyist](https://github.com/darkrubyist))
|
163
|
+
|
164
|
+
## [v4.0.9](https://github.com/hopsoft/cable_ready/tree/v4.0.9) (2020-01-27)
|
165
|
+
|
166
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.0.8...v4.0.9)
|
167
|
+
|
168
|
+
**Merged pull requests:**
|
169
|
+
|
170
|
+
- Add support to ignore missing DOM elements via options parameter [\#23](https://github.com/hopsoft/cable_ready/pull/23) ([leastbad](https://github.com/leastbad))
|
171
|
+
- fix sporadic error - undefined method \<\< for nil, when adding operation [\#21](https://github.com/hopsoft/cable_ready/pull/21) ([szTheory](https://github.com/szTheory))
|
172
|
+
|
173
|
+
## [v4.0.8](https://github.com/hopsoft/cable_ready/tree/v4.0.8) (2019-11-04)
|
174
|
+
|
175
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.0.7...v4.0.8)
|
176
|
+
|
177
|
+
**Merged pull requests:**
|
178
|
+
|
179
|
+
- Simplify logic to make it more understandable [\#20](https://github.com/hopsoft/cable_ready/pull/20) ([hopsoft](https://github.com/hopsoft))
|
180
|
+
|
181
|
+
## [v4.0.7](https://github.com/hopsoft/cable_ready/tree/v4.0.7) (2019-10-05)
|
182
|
+
|
183
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.0.6...v4.0.7)
|
184
|
+
|
185
|
+
**Merged pull requests:**
|
186
|
+
|
187
|
+
- Add gh actions [\#17](https://github.com/hopsoft/cable_ready/pull/17) ([andrewmcodes](https://github.com/andrewmcodes))
|
188
|
+
- Add Gitbook integration [\#16](https://github.com/hopsoft/cable_ready/pull/16) ([andrewmcodes](https://github.com/andrewmcodes))
|
189
|
+
|
190
|
+
## [v4.0.6](https://github.com/hopsoft/cable_ready/tree/v4.0.6) (2019-10-03)
|
191
|
+
|
192
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.0.5...v4.0.6)
|
193
|
+
|
194
|
+
**Implemented enhancements:**
|
195
|
+
|
196
|
+
- Add support for redirect/visit [\#10](https://github.com/hopsoft/cable_ready/issues/10)
|
197
|
+
|
198
|
+
**Merged pull requests:**
|
199
|
+
|
200
|
+
- Update to format with prettier-standard [\#15](https://github.com/hopsoft/cable_ready/pull/15) ([hopsoft](https://github.com/hopsoft))
|
201
|
+
- Add support for permanent nodes [\#14](https://github.com/hopsoft/cable_ready/pull/14) ([andreaslillebo](https://github.com/andreaslillebo))
|
202
|
+
|
203
|
+
## [v4.0.5](https://github.com/hopsoft/cable_ready/tree/v4.0.5) (2019-09-20)
|
204
|
+
|
205
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.0.4...v4.0.5)
|
206
|
+
|
207
|
+
**Merged pull requests:**
|
208
|
+
|
209
|
+
- Hopsoft/bubble [\#13](https://github.com/hopsoft/cable_ready/pull/13) ([hopsoft](https://github.com/hopsoft))
|
210
|
+
|
211
|
+
## [v4.0.4](https://github.com/hopsoft/cable_ready/tree/v4.0.4) (2019-09-19)
|
212
|
+
|
213
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.0.3...v4.0.4)
|
214
|
+
|
215
|
+
**Merged pull requests:**
|
216
|
+
|
217
|
+
- Refactor how events are managed [\#12](https://github.com/hopsoft/cable_ready/pull/12) ([hopsoft](https://github.com/hopsoft))
|
218
|
+
- Added support for XPath selectors [\#11](https://github.com/hopsoft/cable_ready/pull/11) ([leastbad](https://github.com/leastbad))
|
219
|
+
|
220
|
+
## [v4.0.3](https://github.com/hopsoft/cable_ready/tree/v4.0.3) (2019-08-17)
|
221
|
+
|
222
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.0.2...v4.0.3)
|
223
|
+
|
224
|
+
## [v4.0.2](https://github.com/hopsoft/cable_ready/tree/v4.0.2) (2019-08-10)
|
225
|
+
|
226
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.0.1...v4.0.2)
|
227
|
+
|
228
|
+
## [v4.0.1](https://github.com/hopsoft/cable_ready/tree/v4.0.1) (2019-08-10)
|
229
|
+
|
230
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v4.0.0...v4.0.1)
|
231
|
+
|
232
|
+
**Merged pull requests:**
|
233
|
+
|
234
|
+
- Merge JavaScript NPM package into this repo [\#9](https://github.com/hopsoft/cable_ready/pull/9) ([hopsoft](https://github.com/hopsoft))
|
235
|
+
|
236
|
+
## [v4.0.0](https://github.com/hopsoft/cable_ready/tree/v4.0.0) (2019-08-09)
|
237
|
+
|
238
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v3.0.1...v4.0.0)
|
239
|
+
|
240
|
+
## [v3.0.1](https://github.com/hopsoft/cable_ready/tree/v3.0.1) (2019-05-13)
|
241
|
+
|
242
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v3.0.0...v3.0.1)
|
243
|
+
|
244
|
+
## [v3.0.0](https://github.com/hopsoft/cable_ready/tree/v3.0.0) (2019-03-25)
|
245
|
+
|
246
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v2.0.8...v3.0.0)
|
247
|
+
|
248
|
+
**Merged pull requests:**
|
249
|
+
|
250
|
+
- Use outerHTML instead of replace [\#8](https://github.com/hopsoft/cable_ready/pull/8) ([hopsoft](https://github.com/hopsoft))
|
251
|
+
|
252
|
+
## [v2.0.8](https://github.com/hopsoft/cable_ready/tree/v2.0.8) (2018-11-25)
|
253
|
+
|
254
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v2.0.7...v2.0.8)
|
255
|
+
|
256
|
+
**Merged pull requests:**
|
257
|
+
|
258
|
+
- Dispatch before/after events for DOM activity [\#7](https://github.com/hopsoft/cable_ready/pull/7) ([hopsoft](https://github.com/hopsoft))
|
259
|
+
|
260
|
+
## [v2.0.7](https://github.com/hopsoft/cable_ready/tree/v2.0.7) (2018-10-26)
|
261
|
+
|
262
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v2.0.6...v2.0.7)
|
263
|
+
|
264
|
+
## [v2.0.6](https://github.com/hopsoft/cable_ready/tree/v2.0.6) (2018-10-20)
|
265
|
+
|
266
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v2.0.5...v2.0.6)
|
267
|
+
|
268
|
+
## [v2.0.5](https://github.com/hopsoft/cable_ready/tree/v2.0.5) (2018-10-08)
|
269
|
+
|
270
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v2.0.4...v2.0.5)
|
271
|
+
|
272
|
+
**Merged pull requests:**
|
273
|
+
|
274
|
+
- Support morph option for childrenOnly [\#6](https://github.com/hopsoft/cable_ready/pull/6) ([hopsoft](https://github.com/hopsoft))
|
275
|
+
|
276
|
+
## [v2.0.4](https://github.com/hopsoft/cable_ready/tree/v2.0.4) (2017-11-09)
|
277
|
+
|
278
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v2.0.3...v2.0.4)
|
279
|
+
|
280
|
+
## [v2.0.3](https://github.com/hopsoft/cable_ready/tree/v2.0.3) (2017-11-06)
|
281
|
+
|
282
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v2.0.2...v2.0.3)
|
283
|
+
|
284
|
+
**Merged pull requests:**
|
285
|
+
|
286
|
+
- Compress HTML [\#5](https://github.com/hopsoft/cable_ready/pull/5) ([hopsoft](https://github.com/hopsoft))
|
287
|
+
|
288
|
+
## [v2.0.2](https://github.com/hopsoft/cable_ready/tree/v2.0.2) (2017-11-03)
|
289
|
+
|
290
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v2.0.1...v2.0.2)
|
291
|
+
|
292
|
+
**Merged pull requests:**
|
293
|
+
|
294
|
+
- Make morph a first class operation [\#4](https://github.com/hopsoft/cable_ready/pull/4) ([hopsoft](https://github.com/hopsoft))
|
295
|
+
|
296
|
+
## [v2.0.1](https://github.com/hopsoft/cable_ready/tree/v2.0.1) (2017-10-15)
|
297
|
+
|
298
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v2.0.0...v2.0.1)
|
299
|
+
|
300
|
+
## [v2.0.0](https://github.com/hopsoft/cable_ready/tree/v2.0.0) (2017-10-14)
|
301
|
+
|
302
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v1.1.0...v2.0.0)
|
303
|
+
|
304
|
+
**Merged pull requests:**
|
305
|
+
|
306
|
+
- Improved programmatic interface [\#3](https://github.com/hopsoft/cable_ready/pull/3) ([hopsoft](https://github.com/hopsoft))
|
307
|
+
|
308
|
+
## [v1.1.0](https://github.com/hopsoft/cable_ready/tree/v1.1.0) (2017-09-24)
|
309
|
+
|
310
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v1.0.0...v1.1.0)
|
311
|
+
|
312
|
+
**Closed issues:**
|
313
|
+
|
314
|
+
- FINISH IT!!! [\#1](https://github.com/hopsoft/cable_ready/issues/1)
|
315
|
+
|
316
|
+
**Merged pull requests:**
|
317
|
+
|
318
|
+
- Support more DOM operations/mutations [\#2](https://github.com/hopsoft/cable_ready/pull/2) ([hopsoft](https://github.com/hopsoft))
|
319
|
+
|
320
|
+
## [v1.0.0](https://github.com/hopsoft/cable_ready/tree/v1.0.0) (2017-09-20)
|
321
|
+
|
322
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/v0.1.0...v1.0.0)
|
323
|
+
|
324
|
+
## [v0.1.0](https://github.com/hopsoft/cable_ready/tree/v0.1.0) (2017-05-19)
|
325
|
+
|
326
|
+
[Full Changelog](https://github.com/hopsoft/cable_ready/compare/e62800f06e2f436fc66de2b9840313ba1de349bc...v0.1.0)
|
327
|
+
|
328
|
+
|
329
|
+
|
330
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
331
|
+
|
332
|
+
|
333
|
+
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
|
data/Gemfile.lock
CHANGED
@@ -1,80 +1,96 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
cable_ready (4.
|
4
|
+
cable_ready (4.4.0.pre3)
|
5
5
|
rails (>= 5.2)
|
6
6
|
|
7
7
|
GEM
|
8
8
|
remote: https://rubygems.org/
|
9
9
|
specs:
|
10
|
-
actioncable (6.0.3.
|
11
|
-
actionpack (= 6.0.3.
|
10
|
+
actioncable (6.0.3.4)
|
11
|
+
actionpack (= 6.0.3.4)
|
12
12
|
nio4r (~> 2.0)
|
13
13
|
websocket-driver (>= 0.6.1)
|
14
|
-
actionmailbox (6.0.3.
|
15
|
-
actionpack (= 6.0.3.
|
16
|
-
activejob (= 6.0.3.
|
17
|
-
activerecord (= 6.0.3.
|
18
|
-
activestorage (= 6.0.3.
|
19
|
-
activesupport (= 6.0.3.
|
14
|
+
actionmailbox (6.0.3.4)
|
15
|
+
actionpack (= 6.0.3.4)
|
16
|
+
activejob (= 6.0.3.4)
|
17
|
+
activerecord (= 6.0.3.4)
|
18
|
+
activestorage (= 6.0.3.4)
|
19
|
+
activesupport (= 6.0.3.4)
|
20
20
|
mail (>= 2.7.1)
|
21
|
-
actionmailer (6.0.3.
|
22
|
-
actionpack (= 6.0.3.
|
23
|
-
actionview (= 6.0.3.
|
24
|
-
activejob (= 6.0.3.
|
21
|
+
actionmailer (6.0.3.4)
|
22
|
+
actionpack (= 6.0.3.4)
|
23
|
+
actionview (= 6.0.3.4)
|
24
|
+
activejob (= 6.0.3.4)
|
25
25
|
mail (~> 2.5, >= 2.5.4)
|
26
26
|
rails-dom-testing (~> 2.0)
|
27
|
-
actionpack (6.0.3.
|
28
|
-
actionview (= 6.0.3.
|
29
|
-
activesupport (= 6.0.3.
|
27
|
+
actionpack (6.0.3.4)
|
28
|
+
actionview (= 6.0.3.4)
|
29
|
+
activesupport (= 6.0.3.4)
|
30
30
|
rack (~> 2.0, >= 2.0.8)
|
31
31
|
rack-test (>= 0.6.3)
|
32
32
|
rails-dom-testing (~> 2.0)
|
33
33
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
34
|
-
actiontext (6.0.3.
|
35
|
-
actionpack (= 6.0.3.
|
36
|
-
activerecord (= 6.0.3.
|
37
|
-
activestorage (= 6.0.3.
|
38
|
-
activesupport (= 6.0.3.
|
34
|
+
actiontext (6.0.3.4)
|
35
|
+
actionpack (= 6.0.3.4)
|
36
|
+
activerecord (= 6.0.3.4)
|
37
|
+
activestorage (= 6.0.3.4)
|
38
|
+
activesupport (= 6.0.3.4)
|
39
39
|
nokogiri (>= 1.8.5)
|
40
|
-
actionview (6.0.3.
|
41
|
-
activesupport (= 6.0.3.
|
40
|
+
actionview (6.0.3.4)
|
41
|
+
activesupport (= 6.0.3.4)
|
42
42
|
builder (~> 3.1)
|
43
43
|
erubi (~> 1.4)
|
44
44
|
rails-dom-testing (~> 2.0)
|
45
45
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
46
|
-
activejob (6.0.3.
|
47
|
-
activesupport (= 6.0.3.
|
46
|
+
activejob (6.0.3.4)
|
47
|
+
activesupport (= 6.0.3.4)
|
48
48
|
globalid (>= 0.3.6)
|
49
|
-
activemodel (6.0.3.
|
50
|
-
activesupport (= 6.0.3.
|
51
|
-
activerecord (6.0.3.
|
52
|
-
activemodel (= 6.0.3.
|
53
|
-
activesupport (= 6.0.3.
|
54
|
-
activestorage (6.0.3.
|
55
|
-
actionpack (= 6.0.3.
|
56
|
-
activejob (= 6.0.3.
|
57
|
-
activerecord (= 6.0.3.
|
49
|
+
activemodel (6.0.3.4)
|
50
|
+
activesupport (= 6.0.3.4)
|
51
|
+
activerecord (6.0.3.4)
|
52
|
+
activemodel (= 6.0.3.4)
|
53
|
+
activesupport (= 6.0.3.4)
|
54
|
+
activestorage (6.0.3.4)
|
55
|
+
actionpack (= 6.0.3.4)
|
56
|
+
activejob (= 6.0.3.4)
|
57
|
+
activerecord (= 6.0.3.4)
|
58
58
|
marcel (~> 0.3.1)
|
59
|
-
activesupport (6.0.3.
|
59
|
+
activesupport (6.0.3.4)
|
60
60
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
61
61
|
i18n (>= 0.7, < 2)
|
62
62
|
minitest (~> 5.1)
|
63
63
|
tzinfo (~> 1.1)
|
64
64
|
zeitwerk (~> 2.2, >= 2.2.2)
|
65
|
+
addressable (2.7.0)
|
66
|
+
public_suffix (>= 2.0.2, < 5.0)
|
65
67
|
ast (2.4.1)
|
66
68
|
builder (3.2.4)
|
67
69
|
coderay (1.1.3)
|
68
|
-
concurrent-ruby (1.1.
|
70
|
+
concurrent-ruby (1.1.7)
|
69
71
|
crass (1.0.6)
|
70
72
|
erubi (1.9.0)
|
73
|
+
faraday (1.1.0)
|
74
|
+
multipart-post (>= 1.2, < 3)
|
75
|
+
ruby2_keywords
|
76
|
+
faraday-http-cache (2.2.0)
|
77
|
+
faraday (>= 0.8)
|
78
|
+
github_changelog_generator (1.15.2)
|
79
|
+
activesupport
|
80
|
+
faraday-http-cache
|
81
|
+
multi_json
|
82
|
+
octokit (~> 4.6)
|
83
|
+
rainbow (>= 2.2.1)
|
84
|
+
rake (>= 10.0)
|
85
|
+
retriable (~> 3.0)
|
71
86
|
globalid (0.4.2)
|
72
87
|
activesupport (>= 4.2.0)
|
73
|
-
i18n (1.8.
|
88
|
+
i18n (1.8.5)
|
74
89
|
concurrent-ruby (~> 1.0)
|
75
|
-
loofah (2.
|
90
|
+
loofah (2.7.0)
|
76
91
|
crass (~> 1.0.2)
|
77
92
|
nokogiri (>= 1.5.9)
|
93
|
+
magic_frozen_string_literal (1.2.0)
|
78
94
|
mail (2.7.1)
|
79
95
|
mini_mime (>= 0.1.1)
|
80
96
|
marcel (0.3.3)
|
@@ -83,92 +99,106 @@ GEM
|
|
83
99
|
mimemagic (0.3.5)
|
84
100
|
mini_mime (1.0.2)
|
85
101
|
mini_portile2 (2.4.0)
|
86
|
-
minitest (5.14.
|
87
|
-
|
88
|
-
|
102
|
+
minitest (5.14.2)
|
103
|
+
multi_json (1.15.0)
|
104
|
+
multipart-post (2.1.1)
|
105
|
+
nio4r (2.5.4)
|
106
|
+
nokogiri (1.10.10)
|
89
107
|
mini_portile2 (~> 2.4.0)
|
90
|
-
|
91
|
-
|
108
|
+
octokit (4.19.0)
|
109
|
+
faraday (>= 0.9)
|
110
|
+
sawyer (~> 0.8.0, >= 0.5.3)
|
111
|
+
parallel (1.20.0)
|
112
|
+
parser (2.7.2.0)
|
92
113
|
ast (~> 2.4.1)
|
93
114
|
pry (0.12.2)
|
94
115
|
coderay (~> 1.1.0)
|
95
116
|
method_source (~> 0.9.0)
|
96
117
|
pry-nav (0.3.0)
|
97
118
|
pry (>= 0.9.10, < 0.13.0)
|
119
|
+
public_suffix (4.0.6)
|
98
120
|
rack (2.2.3)
|
99
121
|
rack-test (1.1.0)
|
100
122
|
rack (>= 1.0, < 3)
|
101
|
-
rails (6.0.3.
|
102
|
-
actioncable (= 6.0.3.
|
103
|
-
actionmailbox (= 6.0.3.
|
104
|
-
actionmailer (= 6.0.3.
|
105
|
-
actionpack (= 6.0.3.
|
106
|
-
actiontext (= 6.0.3.
|
107
|
-
actionview (= 6.0.3.
|
108
|
-
activejob (= 6.0.3.
|
109
|
-
activemodel (= 6.0.3.
|
110
|
-
activerecord (= 6.0.3.
|
111
|
-
activestorage (= 6.0.3.
|
112
|
-
activesupport (= 6.0.3.
|
123
|
+
rails (6.0.3.4)
|
124
|
+
actioncable (= 6.0.3.4)
|
125
|
+
actionmailbox (= 6.0.3.4)
|
126
|
+
actionmailer (= 6.0.3.4)
|
127
|
+
actionpack (= 6.0.3.4)
|
128
|
+
actiontext (= 6.0.3.4)
|
129
|
+
actionview (= 6.0.3.4)
|
130
|
+
activejob (= 6.0.3.4)
|
131
|
+
activemodel (= 6.0.3.4)
|
132
|
+
activerecord (= 6.0.3.4)
|
133
|
+
activestorage (= 6.0.3.4)
|
134
|
+
activesupport (= 6.0.3.4)
|
113
135
|
bundler (>= 1.3.0)
|
114
|
-
railties (= 6.0.3.
|
136
|
+
railties (= 6.0.3.4)
|
115
137
|
sprockets-rails (>= 2.0.0)
|
116
138
|
rails-dom-testing (2.0.3)
|
117
139
|
activesupport (>= 4.2.0)
|
118
140
|
nokogiri (>= 1.6)
|
119
141
|
rails-html-sanitizer (1.3.0)
|
120
142
|
loofah (~> 2.3)
|
121
|
-
railties (6.0.3.
|
122
|
-
actionpack (= 6.0.3.
|
123
|
-
activesupport (= 6.0.3.
|
143
|
+
railties (6.0.3.4)
|
144
|
+
actionpack (= 6.0.3.4)
|
145
|
+
activesupport (= 6.0.3.4)
|
124
146
|
method_source
|
125
147
|
rake (>= 0.8.7)
|
126
148
|
thor (>= 0.20.3, < 2.0)
|
127
149
|
rainbow (3.0.0)
|
128
150
|
rake (13.0.1)
|
129
|
-
regexp_parser (1.
|
151
|
+
regexp_parser (1.8.2)
|
152
|
+
retriable (3.1.2)
|
130
153
|
rexml (3.2.4)
|
131
|
-
rubocop (
|
154
|
+
rubocop (1.2.0)
|
132
155
|
parallel (~> 1.10)
|
133
|
-
parser (>= 2.7.
|
156
|
+
parser (>= 2.7.1.5)
|
134
157
|
rainbow (>= 2.2.2, < 4.0)
|
135
|
-
regexp_parser (>= 1.
|
158
|
+
regexp_parser (>= 1.8)
|
136
159
|
rexml
|
137
|
-
rubocop-ast (>=
|
160
|
+
rubocop-ast (>= 1.0.1)
|
138
161
|
ruby-progressbar (~> 1.7)
|
139
162
|
unicode-display_width (>= 1.4.0, < 2.0)
|
140
|
-
rubocop-ast (
|
141
|
-
parser (>= 2.7.
|
142
|
-
rubocop-performance (1.
|
143
|
-
rubocop (>= 0.
|
163
|
+
rubocop-ast (1.1.1)
|
164
|
+
parser (>= 2.7.1.5)
|
165
|
+
rubocop-performance (1.8.1)
|
166
|
+
rubocop (>= 0.87.0)
|
167
|
+
rubocop-ast (>= 0.4.0)
|
144
168
|
ruby-progressbar (1.10.1)
|
169
|
+
ruby2_keywords (0.0.2)
|
170
|
+
sawyer (0.8.2)
|
171
|
+
addressable (>= 2.3.5)
|
172
|
+
faraday (> 0.8, < 2.0)
|
145
173
|
sprockets (4.0.2)
|
146
174
|
concurrent-ruby (~> 1.0)
|
147
175
|
rack (> 1, < 3)
|
148
|
-
sprockets-rails (3.2.
|
176
|
+
sprockets-rails (3.2.2)
|
149
177
|
actionpack (>= 4.0)
|
150
178
|
activesupport (>= 4.0)
|
151
179
|
sprockets (>= 3.0.0)
|
152
|
-
standard (0.
|
153
|
-
rubocop (
|
154
|
-
rubocop-performance (
|
180
|
+
standard (0.9.0)
|
181
|
+
rubocop (= 1.2.0)
|
182
|
+
rubocop-performance (= 1.8.1)
|
155
183
|
standardrb (1.0.0)
|
156
184
|
standard
|
157
185
|
thor (1.0.1)
|
158
186
|
thread_safe (0.3.6)
|
159
|
-
tzinfo (1.2.
|
187
|
+
tzinfo (1.2.8)
|
160
188
|
thread_safe (~> 0.1)
|
161
189
|
unicode-display_width (1.7.0)
|
162
|
-
websocket-driver (0.7.
|
190
|
+
websocket-driver (0.7.3)
|
163
191
|
websocket-extensions (>= 0.1.0)
|
164
192
|
websocket-extensions (0.1.5)
|
165
|
-
zeitwerk (2.
|
193
|
+
zeitwerk (2.4.1)
|
166
194
|
|
167
195
|
PLATFORMS
|
168
196
|
ruby
|
169
197
|
|
170
198
|
DEPENDENCIES
|
171
199
|
cable_ready!
|
200
|
+
github_changelog_generator
|
201
|
+
magic_frozen_string_literal
|
172
202
|
pry
|
173
203
|
pry-nav
|
174
204
|
rake
|