stimulus_reflex 3.5.0.pre1 → 3.5.0.pre2
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of stimulus_reflex might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +34 -21
- data/Gemfile.lock +76 -73
- data/README.md +4 -4
- data/app/channels/stimulus_reflex/channel.rb +2 -6
- data/lib/generators/stimulus_reflex/templates/app/reflexes/application_reflex.rb.tt +11 -4
- data/lib/generators/stimulus_reflex/templates/config/initializers/stimulus_reflex.rb +10 -0
- data/lib/stimulus_reflex.rb +1 -0
- data/lib/stimulus_reflex/broadcasters/selector_broadcaster.rb +17 -14
- data/lib/stimulus_reflex/broadcasters/update.rb +23 -0
- data/lib/stimulus_reflex/configuration.rb +2 -1
- data/lib/stimulus_reflex/element.rb +19 -2
- data/lib/stimulus_reflex/utils/sanity_checker.rb +75 -67
- data/lib/stimulus_reflex/version.rb +1 -1
- data/lib/tasks/stimulus_reflex/install.rake +49 -12
- data/package.json +58 -0
- data/stimulus_reflex.gemspec +42 -0
- data/test/test_helper.rb +18 -0
- data/test/tmp/app/reflexes/application_reflex.rb +10 -3
- data/test/tmp/app/reflexes/demo_reflex.rb +1 -0
- data/yarn.lock +4680 -0
- metadata +21 -16
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 83e2bc40ea2d2f8edb1e3b4aa6ca0a9ac72a1ef9aa16d55ef117ff90af37ee36
|
4
|
+
data.tar.gz: 3b7d7f4bd6b4696420f4c581468cb0d62c6ac82fa5fa5762920182932d8dbeed
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe9f56ae6a2423d27d244004d6098305434f40d8062c23024a650fc4796800491328dd954f69ba2f977f8c24208ab3d812b7c7144ae4d762c2bd4411a7df8f3a
|
7
|
+
data.tar.gz: 90e5126b4caec44b433e54232ed0ea7e79341ed311e7d75a66cab57aa067920f682ff210a1a2600d27a0f9bedc22c9ae5447a2dc8e9dbc55990d5a24ea88b802
|
data/CHANGELOG.md
CHANGED
@@ -2,12 +2,33 @@
|
|
2
2
|
|
3
3
|
## [Unreleased](https://github.com/stimulusreflex/stimulus_reflex/tree/HEAD)
|
4
4
|
|
5
|
-
[Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.5.0.
|
5
|
+
[Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.5.0.pre1...HEAD)
|
6
|
+
|
7
|
+
**Closed issues:**
|
8
|
+
|
9
|
+
- Calling Reflex with data-action and data-reflex-dataset='combined' send combined dataset with event.currentTarget only [\#525](https://github.com/stimulusreflex/stimulus_reflex/issues/525)
|
10
|
+
- HAML code with form tag connect controller twice [\#520](https://github.com/stimulusreflex/stimulus_reflex/issues/520)
|
11
|
+
- Web Components Breaking In Stimulus Reflex Morph [\#511](https://github.com/stimulusreflex/stimulus_reflex/issues/511)
|
12
|
+
|
13
|
+
**Merged pull requests:**
|
14
|
+
|
15
|
+
- Fix two minor typos [\#526](https://github.com/stimulusreflex/stimulus_reflex/pull/526) ([julianrubisch](https://github.com/julianrubisch))
|
16
|
+
- chore: add sideEffects false to make Webpack happy [\#523](https://github.com/stimulusreflex/stimulus_reflex/pull/523) ([ParamagicDev](https://github.com/ParamagicDev))
|
17
|
+
- Add localization example to ApplicationReflex template [\#521](https://github.com/stimulusreflex/stimulus_reflex/pull/521) ([erlingur](https://github.com/erlingur))
|
18
|
+
- refactor stream\_name [\#519](https://github.com/stimulusreflex/stimulus_reflex/pull/519) ([leastbad](https://github.com/leastbad))
|
19
|
+
|
20
|
+
## [v3.5.0.pre1](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.5.0.pre1) (2021-06-02)
|
21
|
+
|
22
|
+
[Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.5.0.pre0...v3.5.0.pre1)
|
6
23
|
|
7
24
|
**Fixed bugs:**
|
8
25
|
|
9
26
|
- handle operations that have string-defined selector argument [\#509](https://github.com/stimulusreflex/stimulus_reflex/pull/509) ([leastbad](https://github.com/leastbad))
|
10
27
|
|
28
|
+
**Closed issues:**
|
29
|
+
|
30
|
+
- How to \(better\) use Stimulus Reflex with Cypress? [\#512](https://github.com/stimulusreflex/stimulus_reflex/issues/512)
|
31
|
+
|
11
32
|
**Merged pull requests:**
|
12
33
|
|
13
34
|
- Update reflexes.js [\#515](https://github.com/stimulusreflex/stimulus_reflex/pull/515) ([julianrubisch](https://github.com/julianrubisch))
|
@@ -104,7 +125,6 @@
|
|
104
125
|
- Extract RequestParameters class [\#451](https://github.com/stimulusreflex/stimulus_reflex/pull/451) ([julianrubisch](https://github.com/julianrubisch))
|
105
126
|
- run changelog action not on every single push to master [\#450](https://github.com/stimulusreflex/stimulus_reflex/pull/450) ([marcoroth](https://github.com/marcoroth))
|
106
127
|
- Extract method invocation policy [\#448](https://github.com/stimulusreflex/stimulus_reflex/pull/448) ([julianrubisch](https://github.com/julianrubisch))
|
107
|
-
- remove unnecessary gate [\#439](https://github.com/stimulusreflex/stimulus_reflex/pull/439) ([leastbad](https://github.com/leastbad))
|
108
128
|
|
109
129
|
## [v3.4.1](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.4.1) (2021-01-26)
|
110
130
|
|
@@ -117,7 +137,6 @@
|
|
117
137
|
**Fixed bugs:**
|
118
138
|
|
119
139
|
- life-cycle callbacks return correct element reference [\#431](https://github.com/stimulusreflex/stimulus_reflex/pull/431) ([leastbad](https://github.com/leastbad))
|
120
|
-
- encode form data for chars like '&' and '=' [\#418](https://github.com/stimulusreflex/stimulus_reflex/pull/418) ([RolandStuder](https://github.com/RolandStuder))
|
121
140
|
- Bug fix: Updating changelog generator to push to master, not main [\#416](https://github.com/stimulusreflex/stimulus_reflex/pull/416) ([MikeRogers0](https://github.com/MikeRogers0))
|
122
141
|
- Prefix dom\_id with hash/pound [\#410](https://github.com/stimulusreflex/stimulus_reflex/pull/410) ([hopsoft](https://github.com/hopsoft))
|
123
142
|
|
@@ -131,6 +150,7 @@
|
|
131
150
|
|
132
151
|
**Merged pull requests:**
|
133
152
|
|
153
|
+
- remove unnecessary gate [\#439](https://github.com/stimulusreflex/stimulus_reflex/pull/439) ([leastbad](https://github.com/leastbad))
|
134
154
|
- Extract callbacks to module [\#427](https://github.com/stimulusreflex/stimulus_reflex/pull/427) ([julianrubisch](https://github.com/julianrubisch))
|
135
155
|
- Fixes bug where multiple inputs with the same name lost element value [\#426](https://github.com/stimulusreflex/stimulus_reflex/pull/426) ([jonsgreen](https://github.com/jonsgreen))
|
136
156
|
- Add general policy for CoC enforcement [\#424](https://github.com/stimulusreflex/stimulus_reflex/pull/424) ([hopsoft](https://github.com/hopsoft))
|
@@ -155,9 +175,11 @@
|
|
155
175
|
**Implemented enhancements:**
|
156
176
|
|
157
177
|
- Allow StimulusReflex to process Rack middlewares [\#399](https://github.com/stimulusreflex/stimulus_reflex/pull/399) ([marcoroth](https://github.com/marcoroth))
|
178
|
+
- Support for Stimulus 2 [\#398](https://github.com/stimulusreflex/stimulus_reflex/pull/398) ([marcoroth](https://github.com/marcoroth))
|
158
179
|
|
159
180
|
**Fixed bugs:**
|
160
181
|
|
182
|
+
- encode form data for chars like '&' and '=' [\#418](https://github.com/stimulusreflex/stimulus_reflex/pull/418) ([RolandStuder](https://github.com/RolandStuder))
|
161
183
|
- fix up install task [\#401](https://github.com/stimulusreflex/stimulus_reflex/pull/401) ([leastbad](https://github.com/leastbad))
|
162
184
|
- Fix multiple broadcasts from within the same reflex [\#400](https://github.com/stimulusreflex/stimulus_reflex/pull/400) ([hopsoft](https://github.com/hopsoft))
|
163
185
|
|
@@ -189,10 +211,6 @@
|
|
189
211
|
|
190
212
|
[Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v3.4.0.pre6...v3.4.0.pre7)
|
191
213
|
|
192
|
-
**Implemented enhancements:**
|
193
|
-
|
194
|
-
- Support for Stimulus 2 [\#398](https://github.com/stimulusreflex/stimulus_reflex/pull/398) ([marcoroth](https://github.com/marcoroth))
|
195
|
-
|
196
214
|
**Closed issues:**
|
197
215
|
|
198
216
|
- Multiple reflex submissions can lead to unexpected behaviour. [\#391](https://github.com/stimulusreflex/stimulus_reflex/issues/391)
|
@@ -358,7 +376,6 @@
|
|
358
376
|
|
359
377
|
**Merged pull requests:**
|
360
378
|
|
361
|
-
- fixes and tweaks to client logging subsystem [\#313](https://github.com/stimulusreflex/stimulus_reflex/pull/313) ([leastbad](https://github.com/leastbad))
|
362
379
|
- add ready event after setupDeclarativeReflexes [\#312](https://github.com/stimulusreflex/stimulus_reflex/pull/312) ([leastbad](https://github.com/leastbad))
|
363
380
|
- Refactor sanity checks on boot [\#311](https://github.com/stimulusreflex/stimulus_reflex/pull/311) ([excid3](https://github.com/excid3))
|
364
381
|
|
@@ -378,6 +395,7 @@
|
|
378
395
|
|
379
396
|
**Merged pull requests:**
|
380
397
|
|
398
|
+
- fixes and tweaks to client logging subsystem [\#313](https://github.com/stimulusreflex/stimulus_reflex/pull/313) ([leastbad](https://github.com/leastbad))
|
381
399
|
- Support IE11 msCrypto \(\#308\) [\#310](https://github.com/stimulusreflex/stimulus_reflex/pull/310) ([chooselife22](https://github.com/chooselife22))
|
382
400
|
- Print warning and exit if caching is disabled or npm/gem versions are mismatched [\#309](https://github.com/stimulusreflex/stimulus_reflex/pull/309) ([excid3](https://github.com/excid3))
|
383
401
|
- ActionCable connectivity events [\#307](https://github.com/stimulusreflex/stimulus_reflex/pull/307) ([leastbad](https://github.com/leastbad))
|
@@ -478,6 +496,7 @@
|
|
478
496
|
**Fixed bugs:**
|
479
497
|
|
480
498
|
- Limit MutationObserver mutations [\#256](https://github.com/stimulusreflex/stimulus_reflex/pull/256) ([jasoncharnes](https://github.com/jasoncharnes))
|
499
|
+
- Add more smarts to \_\_perform [\#235](https://github.com/stimulusreflex/stimulus_reflex/pull/235) ([hopsoft](https://github.com/hopsoft))
|
481
500
|
|
482
501
|
**Closed issues:**
|
483
502
|
|
@@ -506,7 +525,6 @@
|
|
506
525
|
- Revert "Add instructions for pulling the user id out of session storage" [\#239](https://github.com/stimulusreflex/stimulus_reflex/pull/239) ([leastbad](https://github.com/leastbad))
|
507
526
|
- Add instructions for pulling the user id out of session storage [\#238](https://github.com/stimulusreflex/stimulus_reflex/pull/238) ([mtomov](https://github.com/mtomov))
|
508
527
|
- adds params documentation [\#230](https://github.com/stimulusreflex/stimulus_reflex/pull/230) ([RolandStuder](https://github.com/RolandStuder))
|
509
|
-
- Fix calling wrong controller lifecycle methods [\#226](https://github.com/stimulusreflex/stimulus_reflex/pull/226) ([davidalejandroaguilar](https://github.com/davidalejandroaguilar))
|
510
528
|
- Allow to pass reflex action names to reflex generator [\#224](https://github.com/stimulusreflex/stimulus_reflex/pull/224) ([marcoroth](https://github.com/marcoroth))
|
511
529
|
|
512
530
|
## [v3.2.3](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.2.3) (2020-06-15)
|
@@ -515,7 +533,6 @@
|
|
515
533
|
|
516
534
|
**Fixed bugs:**
|
517
535
|
|
518
|
-
- Add more smarts to \_\_perform [\#235](https://github.com/stimulusreflex/stimulus_reflex/pull/235) ([hopsoft](https://github.com/hopsoft))
|
519
536
|
- \_\_perform had a bug where it was only ever calling the first event [\#234](https://github.com/stimulusreflex/stimulus_reflex/pull/234) ([leastbad](https://github.com/leastbad))
|
520
537
|
- merges insteads of overwrites params for reflex actions with form data [\#231](https://github.com/stimulusreflex/stimulus_reflex/pull/231) ([RolandStuder](https://github.com/RolandStuder))
|
521
538
|
|
@@ -526,6 +543,7 @@
|
|
526
543
|
**Merged pull requests:**
|
527
544
|
|
528
545
|
- Fix typos in the documentation [\#228](https://github.com/stimulusreflex/stimulus_reflex/pull/228) ([dlt](https://github.com/dlt))
|
546
|
+
- Always commit session [\#222](https://github.com/stimulusreflex/stimulus_reflex/pull/222) ([hopsoft](https://github.com/hopsoft))
|
529
547
|
|
530
548
|
## [v3.2.2](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.2.2) (2020-06-06)
|
531
549
|
|
@@ -546,6 +564,7 @@
|
|
546
564
|
|
547
565
|
**Merged pull requests:**
|
548
566
|
|
567
|
+
- Fix calling wrong controller lifecycle methods [\#226](https://github.com/stimulusreflex/stimulus_reflex/pull/226) ([davidalejandroaguilar](https://github.com/davidalejandroaguilar))
|
549
568
|
- Always commit session [\#222](https://github.com/stimulusreflex/stimulus_reflex/pull/222) ([hopsoft](https://github.com/hopsoft))
|
550
569
|
|
551
570
|
## [v3.2.2.pre0](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.2.2.pre0) (2020-05-27)
|
@@ -637,7 +656,6 @@
|
|
637
656
|
|
638
657
|
- Some housekeeping [\#189](https://github.com/stimulusreflex/stimulus_reflex/pull/189) ([hopsoft](https://github.com/hopsoft))
|
639
658
|
- Allow to call stimulate without a reflex target [\#188](https://github.com/stimulusreflex/stimulus_reflex/pull/188) ([marcoroth](https://github.com/marcoroth))
|
640
|
-
- prettier-standard: include all js files in the project [\#177](https://github.com/stimulusreflex/stimulus_reflex/pull/177) ([marcoroth](https://github.com/marcoroth))
|
641
659
|
- Fix bug in super documentation [\#174](https://github.com/stimulusreflex/stimulus_reflex/pull/174) ([silva96](https://github.com/silva96))
|
642
660
|
|
643
661
|
## [v3.1.4](https://github.com/stimulusreflex/stimulus_reflex/tree/v3.1.4) (2020-04-27)
|
@@ -653,6 +671,7 @@
|
|
653
671
|
- Possible bug when about to perform cableready operations [\#166](https://github.com/stimulusreflex/stimulus_reflex/issues/166)
|
654
672
|
- Reflex not binding to ajax loaded content [\#161](https://github.com/stimulusreflex/stimulus_reflex/issues/161)
|
655
673
|
- Input field values sometimes remain [\#159](https://github.com/stimulusreflex/stimulus_reflex/issues/159)
|
674
|
+
- remove changelog rake task [\#150](https://github.com/stimulusreflex/stimulus_reflex/pull/150) ([andrewmcodes](https://github.com/andrewmcodes))
|
656
675
|
|
657
676
|
**Closed issues:**
|
658
677
|
|
@@ -664,6 +683,7 @@
|
|
664
683
|
|
665
684
|
**Merged pull requests:**
|
666
685
|
|
686
|
+
- prettier-standard: include all js files in the project [\#177](https://github.com/stimulusreflex/stimulus_reflex/pull/177) ([marcoroth](https://github.com/marcoroth))
|
667
687
|
- Remove implicit permanent for text inputs [\#176](https://github.com/stimulusreflex/stimulus_reflex/pull/176) ([hopsoft](https://github.com/hopsoft))
|
668
688
|
- Support devise authenticated routes [\#172](https://github.com/stimulusreflex/stimulus_reflex/pull/172) ([db0sch](https://github.com/db0sch))
|
669
689
|
- setupDeclarativeReflexes export with UJS support [\#169](https://github.com/stimulusreflex/stimulus_reflex/pull/169) ([leastbad](https://github.com/leastbad))
|
@@ -701,7 +721,6 @@
|
|
701
721
|
**Fixed bugs:**
|
702
722
|
|
703
723
|
- Cannot read property 'removeEventListener' of undefined after updating to 3.1.0 [\#151](https://github.com/stimulusreflex/stimulus_reflex/issues/151)
|
704
|
-
- remove changelog rake task [\#150](https://github.com/stimulusreflex/stimulus_reflex/pull/150) ([andrewmcodes](https://github.com/andrewmcodes))
|
705
724
|
|
706
725
|
**Closed issues:**
|
707
726
|
|
@@ -783,10 +802,6 @@
|
|
783
802
|
|
784
803
|
[Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.2.0...v2.2.1)
|
785
804
|
|
786
|
-
**Fixed bugs:**
|
787
|
-
|
788
|
-
- Cleanup and fixes around lifecycle dispatch [\#121](https://github.com/stimulusreflex/stimulus_reflex/pull/121) ([hopsoft](https://github.com/hopsoft))
|
789
|
-
|
790
805
|
## [v2.2.0](https://github.com/stimulusreflex/stimulus_reflex/tree/v2.2.0) (2020-02-28)
|
791
806
|
|
792
807
|
[Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.1.9...v2.2.0)
|
@@ -808,10 +823,6 @@
|
|
808
823
|
|
809
824
|
[Full Changelog](https://github.com/stimulusreflex/stimulus_reflex/compare/v2.1.7...v2.1.8)
|
810
825
|
|
811
|
-
**Implemented enhancements:**
|
812
|
-
|
813
|
-
- More defense in the received handler [\#107](https://github.com/stimulusreflex/stimulus_reflex/pull/107) ([hopsoft](https://github.com/hopsoft))
|
814
|
-
|
815
826
|
**Fixed bugs:**
|
816
827
|
|
817
828
|
- Fix bug related to trailing slash in URL path [\#111](https://github.com/stimulusreflex/stimulus_reflex/pull/111) ([hopsoft](https://github.com/hopsoft))
|
@@ -854,6 +865,7 @@
|
|
854
865
|
|
855
866
|
**Fixed bugs:**
|
856
867
|
|
868
|
+
- Cleanup and fixes around lifecycle dispatch [\#121](https://github.com/stimulusreflex/stimulus_reflex/pull/121) ([hopsoft](https://github.com/hopsoft))
|
857
869
|
- Use application.js as fallback file path [\#82](https://github.com/stimulusreflex/stimulus_reflex/pull/82) ([julianrubisch](https://github.com/julianrubisch))
|
858
870
|
|
859
871
|
**Closed issues:**
|
@@ -869,6 +881,7 @@
|
|
869
881
|
|
870
882
|
**Implemented enhancements:**
|
871
883
|
|
884
|
+
- More defense in the received handler [\#107](https://github.com/stimulusreflex/stimulus_reflex/pull/107) ([hopsoft](https://github.com/hopsoft))
|
872
885
|
- Add CodeFund sponsorship [\#75](https://github.com/stimulusreflex/stimulus_reflex/pull/75) ([coderberry](https://github.com/coderberry))
|
873
886
|
|
874
887
|
**Fixed bugs:**
|
@@ -986,6 +999,7 @@
|
|
986
999
|
|
987
1000
|
**Implemented enhancements:**
|
988
1001
|
|
1002
|
+
- Implicitly send DOM attributes to reflex methods [\#21](https://github.com/stimulusreflex/stimulus_reflex/pull/21) ([hopsoft](https://github.com/hopsoft))
|
989
1003
|
- Add Ruby magic comment [\#18](https://github.com/stimulusreflex/stimulus_reflex/pull/18) ([dixpac](https://github.com/dixpac))
|
990
1004
|
- Add GitHub Actions for Linters [\#17](https://github.com/stimulusreflex/stimulus_reflex/pull/17) ([andrewmcodes](https://github.com/andrewmcodes))
|
991
1005
|
|
@@ -1047,7 +1061,6 @@
|
|
1047
1061
|
|
1048
1062
|
**Implemented enhancements:**
|
1049
1063
|
|
1050
|
-
- Implicitly send DOM attributes to reflex methods [\#21](https://github.com/stimulusreflex/stimulus_reflex/pull/21) ([hopsoft](https://github.com/hopsoft))
|
1051
1064
|
- Explicit opt-in for ActionCable connection [\#6](https://github.com/stimulusreflex/stimulus_reflex/pull/6) ([hopsoft](https://github.com/hopsoft))
|
1052
1065
|
|
1053
1066
|
## [v0.1.12](https://github.com/stimulusreflex/stimulus_reflex/tree/v0.1.12) (2018-11-03)
|
data/Gemfile.lock
CHANGED
@@ -1,8 +1,8 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
stimulus_reflex (3.5.0.
|
5
|
-
cable_ready (= 5.0.0.
|
4
|
+
stimulus_reflex (3.5.0.pre2)
|
5
|
+
cable_ready (= 5.0.0.pre2)
|
6
6
|
nokogiri
|
7
7
|
rack
|
8
8
|
rails (>= 5.2)
|
@@ -11,60 +11,60 @@ PATH
|
|
11
11
|
GEM
|
12
12
|
remote: https://rubygems.org/
|
13
13
|
specs:
|
14
|
-
actioncable (6.1.
|
15
|
-
actionpack (= 6.1.
|
16
|
-
activesupport (= 6.1.
|
14
|
+
actioncable (6.1.4)
|
15
|
+
actionpack (= 6.1.4)
|
16
|
+
activesupport (= 6.1.4)
|
17
17
|
nio4r (~> 2.0)
|
18
18
|
websocket-driver (>= 0.6.1)
|
19
|
-
actionmailbox (6.1.
|
20
|
-
actionpack (= 6.1.
|
21
|
-
activejob (= 6.1.
|
22
|
-
activerecord (= 6.1.
|
23
|
-
activestorage (= 6.1.
|
24
|
-
activesupport (= 6.1.
|
19
|
+
actionmailbox (6.1.4)
|
20
|
+
actionpack (= 6.1.4)
|
21
|
+
activejob (= 6.1.4)
|
22
|
+
activerecord (= 6.1.4)
|
23
|
+
activestorage (= 6.1.4)
|
24
|
+
activesupport (= 6.1.4)
|
25
25
|
mail (>= 2.7.1)
|
26
|
-
actionmailer (6.1.
|
27
|
-
actionpack (= 6.1.
|
28
|
-
actionview (= 6.1.
|
29
|
-
activejob (= 6.1.
|
30
|
-
activesupport (= 6.1.
|
26
|
+
actionmailer (6.1.4)
|
27
|
+
actionpack (= 6.1.4)
|
28
|
+
actionview (= 6.1.4)
|
29
|
+
activejob (= 6.1.4)
|
30
|
+
activesupport (= 6.1.4)
|
31
31
|
mail (~> 2.5, >= 2.5.4)
|
32
32
|
rails-dom-testing (~> 2.0)
|
33
|
-
actionpack (6.1.
|
34
|
-
actionview (= 6.1.
|
35
|
-
activesupport (= 6.1.
|
33
|
+
actionpack (6.1.4)
|
34
|
+
actionview (= 6.1.4)
|
35
|
+
activesupport (= 6.1.4)
|
36
36
|
rack (~> 2.0, >= 2.0.9)
|
37
37
|
rack-test (>= 0.6.3)
|
38
38
|
rails-dom-testing (~> 2.0)
|
39
39
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
40
|
-
actiontext (6.1.
|
41
|
-
actionpack (= 6.1.
|
42
|
-
activerecord (= 6.1.
|
43
|
-
activestorage (= 6.1.
|
44
|
-
activesupport (= 6.1.
|
40
|
+
actiontext (6.1.4)
|
41
|
+
actionpack (= 6.1.4)
|
42
|
+
activerecord (= 6.1.4)
|
43
|
+
activestorage (= 6.1.4)
|
44
|
+
activesupport (= 6.1.4)
|
45
45
|
nokogiri (>= 1.8.5)
|
46
|
-
actionview (6.1.
|
47
|
-
activesupport (= 6.1.
|
46
|
+
actionview (6.1.4)
|
47
|
+
activesupport (= 6.1.4)
|
48
48
|
builder (~> 3.1)
|
49
49
|
erubi (~> 1.4)
|
50
50
|
rails-dom-testing (~> 2.0)
|
51
51
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
52
|
-
activejob (6.1.
|
53
|
-
activesupport (= 6.1.
|
52
|
+
activejob (6.1.4)
|
53
|
+
activesupport (= 6.1.4)
|
54
54
|
globalid (>= 0.3.6)
|
55
|
-
activemodel (6.1.
|
56
|
-
activesupport (= 6.1.
|
57
|
-
activerecord (6.1.
|
58
|
-
activemodel (= 6.1.
|
59
|
-
activesupport (= 6.1.
|
60
|
-
activestorage (6.1.
|
61
|
-
actionpack (= 6.1.
|
62
|
-
activejob (= 6.1.
|
63
|
-
activerecord (= 6.1.
|
64
|
-
activesupport (= 6.1.
|
55
|
+
activemodel (6.1.4)
|
56
|
+
activesupport (= 6.1.4)
|
57
|
+
activerecord (6.1.4)
|
58
|
+
activemodel (= 6.1.4)
|
59
|
+
activesupport (= 6.1.4)
|
60
|
+
activestorage (6.1.4)
|
61
|
+
actionpack (= 6.1.4)
|
62
|
+
activejob (= 6.1.4)
|
63
|
+
activerecord (= 6.1.4)
|
64
|
+
activesupport (= 6.1.4)
|
65
65
|
marcel (~> 1.0.0)
|
66
|
-
mini_mime (
|
67
|
-
activesupport (6.1.
|
66
|
+
mini_mime (>= 1.1.0)
|
67
|
+
activesupport (6.1.4)
|
68
68
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
69
69
|
i18n (>= 1.6, < 2)
|
70
70
|
minitest (>= 5.1)
|
@@ -72,31 +72,33 @@ GEM
|
|
72
72
|
zeitwerk (~> 2.3)
|
73
73
|
ast (2.4.2)
|
74
74
|
builder (3.2.4)
|
75
|
-
cable_ready (5.0.0.
|
75
|
+
cable_ready (5.0.0.pre2)
|
76
76
|
rails (>= 5.2)
|
77
77
|
thread-local (>= 1.1.0)
|
78
78
|
coderay (1.1.3)
|
79
|
-
concurrent-ruby (1.1.
|
79
|
+
concurrent-ruby (1.1.9)
|
80
80
|
crass (1.0.6)
|
81
81
|
erubi (1.10.0)
|
82
82
|
globalid (0.4.2)
|
83
83
|
activesupport (>= 4.2.0)
|
84
84
|
i18n (1.8.10)
|
85
85
|
concurrent-ruby (~> 1.0)
|
86
|
-
loofah (2.
|
86
|
+
loofah (2.10.0)
|
87
87
|
crass (~> 1.0.2)
|
88
88
|
nokogiri (>= 1.5.9)
|
89
89
|
mail (2.7.1)
|
90
90
|
mini_mime (>= 0.1.1)
|
91
91
|
marcel (1.0.1)
|
92
92
|
method_source (0.9.2)
|
93
|
-
mini_mime (1.0
|
93
|
+
mini_mime (1.1.0)
|
94
94
|
minitest (5.14.4)
|
95
95
|
nio4r (2.5.7)
|
96
|
-
nokogiri (1.11.
|
96
|
+
nokogiri (1.11.7-arm64-darwin)
|
97
|
+
racc (~> 1.4)
|
98
|
+
nokogiri (1.11.7-x86_64-linux)
|
97
99
|
racc (~> 1.4)
|
98
100
|
parallel (1.20.1)
|
99
|
-
parser (3.0.
|
101
|
+
parser (3.0.2.0)
|
100
102
|
ast (~> 2.4.1)
|
101
103
|
pry (0.12.2)
|
102
104
|
coderay (~> 1.1.0)
|
@@ -107,49 +109,49 @@ GEM
|
|
107
109
|
rack (2.2.3)
|
108
110
|
rack-test (1.1.0)
|
109
111
|
rack (>= 1.0, < 3)
|
110
|
-
rails (6.1.
|
111
|
-
actioncable (= 6.1.
|
112
|
-
actionmailbox (= 6.1.
|
113
|
-
actionmailer (= 6.1.
|
114
|
-
actionpack (= 6.1.
|
115
|
-
actiontext (= 6.1.
|
116
|
-
actionview (= 6.1.
|
117
|
-
activejob (= 6.1.
|
118
|
-
activemodel (= 6.1.
|
119
|
-
activerecord (= 6.1.
|
120
|
-
activestorage (= 6.1.
|
121
|
-
activesupport (= 6.1.
|
112
|
+
rails (6.1.4)
|
113
|
+
actioncable (= 6.1.4)
|
114
|
+
actionmailbox (= 6.1.4)
|
115
|
+
actionmailer (= 6.1.4)
|
116
|
+
actionpack (= 6.1.4)
|
117
|
+
actiontext (= 6.1.4)
|
118
|
+
actionview (= 6.1.4)
|
119
|
+
activejob (= 6.1.4)
|
120
|
+
activemodel (= 6.1.4)
|
121
|
+
activerecord (= 6.1.4)
|
122
|
+
activestorage (= 6.1.4)
|
123
|
+
activesupport (= 6.1.4)
|
122
124
|
bundler (>= 1.15.0)
|
123
|
-
railties (= 6.1.
|
125
|
+
railties (= 6.1.4)
|
124
126
|
sprockets-rails (>= 2.0.0)
|
125
127
|
rails-dom-testing (2.0.3)
|
126
128
|
activesupport (>= 4.2.0)
|
127
129
|
nokogiri (>= 1.6)
|
128
130
|
rails-html-sanitizer (1.3.0)
|
129
131
|
loofah (~> 2.3)
|
130
|
-
railties (6.1.
|
131
|
-
actionpack (= 6.1.
|
132
|
-
activesupport (= 6.1.
|
132
|
+
railties (6.1.4)
|
133
|
+
actionpack (= 6.1.4)
|
134
|
+
activesupport (= 6.1.4)
|
133
135
|
method_source
|
134
|
-
rake (>= 0.
|
136
|
+
rake (>= 0.13)
|
135
137
|
thor (~> 1.0)
|
136
138
|
rainbow (3.0.0)
|
137
|
-
rake (13.0.
|
138
|
-
redis (4.
|
139
|
+
rake (13.0.6)
|
140
|
+
redis (4.3.1)
|
139
141
|
regexp_parser (2.1.1)
|
140
142
|
rexml (3.2.5)
|
141
|
-
rubocop (1.
|
143
|
+
rubocop (1.18.3)
|
142
144
|
parallel (~> 1.10)
|
143
145
|
parser (>= 3.0.0.0)
|
144
146
|
rainbow (>= 2.2.2, < 4.0)
|
145
147
|
regexp_parser (>= 1.8, < 3.0)
|
146
148
|
rexml
|
147
|
-
rubocop-ast (>= 1.
|
149
|
+
rubocop-ast (>= 1.7.0, < 2.0)
|
148
150
|
ruby-progressbar (~> 1.7)
|
149
151
|
unicode-display_width (>= 1.4.0, < 3.0)
|
150
|
-
rubocop-ast (1.
|
152
|
+
rubocop-ast (1.8.0)
|
151
153
|
parser (>= 3.0.1.1)
|
152
|
-
rubocop-performance (1.11.
|
154
|
+
rubocop-performance (1.11.4)
|
153
155
|
rubocop (>= 1.7.0, < 2.0)
|
154
156
|
rubocop-ast (>= 0.4.0)
|
155
157
|
ruby-progressbar (1.11.0)
|
@@ -160,9 +162,9 @@ GEM
|
|
160
162
|
actionpack (>= 4.0)
|
161
163
|
activesupport (>= 4.0)
|
162
164
|
sprockets (>= 3.0.0)
|
163
|
-
standard (1.1.
|
164
|
-
rubocop (= 1.
|
165
|
-
rubocop-performance (= 1.11.
|
165
|
+
standard (1.1.5)
|
166
|
+
rubocop (= 1.18.3)
|
167
|
+
rubocop-performance (= 1.11.4)
|
166
168
|
standardrb (1.0.0)
|
167
169
|
standard
|
168
170
|
thor (1.1.0)
|
@@ -170,12 +172,13 @@ GEM
|
|
170
172
|
tzinfo (2.0.4)
|
171
173
|
concurrent-ruby (~> 1.0)
|
172
174
|
unicode-display_width (2.0.0)
|
173
|
-
websocket-driver (0.7.
|
175
|
+
websocket-driver (0.7.5)
|
174
176
|
websocket-extensions (>= 0.1.0)
|
175
177
|
websocket-extensions (0.1.5)
|
176
178
|
zeitwerk (2.4.2)
|
177
179
|
|
178
180
|
PLATFORMS
|
181
|
+
arm64-darwin-20
|
179
182
|
x86_64-linux
|
180
183
|
|
181
184
|
DEPENDENCIES
|