-
Notifications
You must be signed in to change notification settings - Fork 4
/
rails_build_82655_actionpack-2-dot-7.log (1).txt
3983 lines (2526 loc) · 176 KB
/
rails_build_82655_actionpack-2-dot-7.log (1).txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
~~~ Running global environment hook
[90m$[0m etc/buildkite-agent/hooks/environment
~~~ :llama: Setting up elastic stack environment (v4.3.3)
export DOCKER_VERSION=18.09.2
export BUILDKITE_STACK_NAME=buildkite
export BUILDKITE_STACK_VERSION=v4.3.3
export BUILDKITE_AGENTS_PER_INSTANCE=1
export BUILDKITE_SECRETS_BUCKET=buildkite-managedsecretsbucket-1rrdrhvvhfy4e
export AWS_DEFAULT_REGION=us-east-1
export AWS_REGION=us-east-1
export PLUGINS_ENABLED="secrets ecr docker-login"
export BUILDKITE_ECR_POLICY=poweruser
Checking docker
CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES
Checking disk space
Disk space free: 49G
Inodes free: 25M
Configuring built-in plugins
Secrets plugin enabled
ECR plugin enabled
Docker-login plugin enabled
~~~ Downloading secrets from :s3: buildkite-managedsecretsbucket-1rrdrhvvhfy4e
Checking rails/private_ssh_key
Checking rails/id_rsa_github
Checking private_ssh_key
Checking id_rsa_github
Downloading env file from env
Evaluating 384 bytes of env
Fixing permissions for 'buildkite-i-082595c4a6a306c37-1/rails/rails'...
[90m# BUILDKITE_STACK_VERSION changed[0m
[90m# PLUGINS_ENABLED changed[0m
[90m# BUILDKITE_STACK_NAME changed[0m
[90m# BUILDKITE_ECR_POLICY changed[0m
[90m# AWS_REGION changed[0m
[90m# BUILDKITE_SECRETS_BUCKET changed[0m
[90m# BUILDKITE_GIT_CLONE_FLAGS is now "-v --depth 50"[0m
[90m# AWS_DEFAULT_REGION changed[0m
[90m# DOCKER_VERSION changed[0m
[90m# ECR_PLUGIN_ENABLED changed[0m
[90m# DOCKER_LOGIN_PLUGIN_ENABLED changed[0m
[90m# BUILDKITE_REPO is now ""[0m
[90m# SECRETS_PLUGIN_ENABLED changed[0m
[90m# BUILDKITE_PLUGIN_S3_SECRETS_BUCKET changed[0m
[90m# BUILDKITE_AGENTS_PER_INSTANCE changed[0m
~~~ Setting up plugins
[90m# Plugin "github.com/buildkite-plugins/artifacts-buildkite-plugin#v1.2.0" already checked out (93b22b3)[0m
[90m# Plugin "github.com/buildkite-plugins/docker-compose-buildkite-plugin#v3.7.0" already checked out (bcb700d)[0m
~~~ Running plugin docker-compose pre-checkout hook
[90m$[0m var/lib/buildkite-agent/plugins/github-com-buildkite-plugins-docker-compose-buildkite-plugin-v3-7-0/hooks/pre-checkout
~~~ Preparing working directory
[90m$[0m cd /tmp/buildkite-job-c7f0615d-2623-457d-aa6f-407996511bc0637090903
[90m# Skipping checkout, BUILDKITE_REPO is empty[0m
~~~ Running global post-checkout hook
[90m$[0m /etc/buildkite-agent/hooks/post-checkout
~~~ Setting up vendored plugins
~~~ Running global pre-command hook
[90m$[0m /etc/buildkite-agent/hooks/pre-command
~~~ Authenticating with AWS ECR
WARNING! Using --password via the CLI is insecure. Use --password-stdin.
WARNING! Your password will be stored unencrypted in /var/lib/buildkite-agent/.docker/config.json.
Configure a credential helper to remove this warning. See
https://docs.docker.com/engine/reference/commandline/login/#credentials-store
Login Succeeded
[90m# BUILDKITE_PLUGIN_ECR_LOGIN changed[0m
~~~ Running plugin artifacts pre-command hook
[90m$[0m /var/lib/buildkite-agent/plugins/github-com-buildkite-plugins-artifacts-buildkite-plugin-v1-2-0/hooks/pre-command
--- Downloading artifacts
[38;5;48m2021-11-20 00:33:31 INFO [0m [0mSearching for artifacts: ".buildkite/*"[0m
[38;5;48m2021-11-20 00:33:31 INFO [0m [0mFound 10 artifacts. Starting to download to: /tmp/buildkite-job-c7f0615d-2623-457d-aa6f-407996511bc0637090903[0m
[38;5;48m2021-11-20 00:33:31 INFO [0m [0mSuccessfully downloaded ".buildkite/.dockerignore" 82 bytes[0m
[38;5;48m2021-11-20 00:33:32 INFO [0m [0mSuccessfully downloaded ".buildkite/Dockerfile" 5937 bytes[0m
[38;5;48m2021-11-20 00:33:32 INFO [0m [0mSuccessfully downloaded ".buildkite/Dockerfile.beanstalkd" 96 bytes[0m
[38;5;48m2021-11-20 00:33:32 INFO [0m [0mSuccessfully downloaded ".buildkite/await-all" 180 bytes[0m
[38;5;48m2021-11-20 00:33:32 INFO [0m [0mSuccessfully downloaded ".buildkite/docker-compose.yml" 2773 bytes[0m
[38;5;48m2021-11-20 00:33:32 INFO [0m [0mSuccessfully downloaded ".buildkite/initial.yml" 2113 bytes[0m
[38;5;48m2021-11-20 00:33:32 INFO [0m [0mSuccessfully downloaded ".buildkite/pipeline-generate" 10135 bytes[0m
[38;5;48m2021-11-20 00:33:32 INFO [0m [0mSuccessfully downloaded ".buildkite/runner" 241 bytes[0m
[38;5;48m2021-11-20 00:33:32 INFO [0m [0mSuccessfully downloaded ".buildkite/.empty" 0 bytes[0m
[38;5;48m2021-11-20 00:33:32 INFO [0m [0mSuccessfully downloaded ".buildkite/mysql-initdb.d/create.sql" 360 bytes[0m
[38;5;48m2021-11-20 00:33:32 INFO [0m [0mSearching for artifacts: ".buildkite/**/*"[0m
[38;5;48m2021-11-20 00:33:32 INFO [0m [0mFound 1 artifacts. Starting to download to: /tmp/buildkite-job-c7f0615d-2623-457d-aa6f-407996511bc0637090903[0m
[38;5;48m2021-11-20 00:33:32 INFO [0m [0mSuccessfully downloaded ".buildkite/mysql-initdb.d/create.sql" 360 bytes[0m
~~~ Running plugin docker-compose command hook
[90m$[0m /var/lib/buildkite-agent/plugins/github-com-buildkite-plugins-docker-compose-buildkite-plugin-v3-7-0/hooks/command
~~~ :docker: Pulling services default
[90m$[0m docker-compose -f .buildkite/docker-compose.yml -p buildkitec7f0615d2623457daa6f407996511bc0 pull default
Pulling default ...
[1A[2KPulling default ... pulling from builds[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... pulling fs layer[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... waiting[1B[1A[2KPulling default ... downloading (1.0%)[1B[1A[2KPulling default ... downloading (1.1%)[1B[1A[2KPulling default ... downloading (1.0%)[1B[1A[2KPulling default ... downloading (98.0%)[1B[1A[2KPulling default ... downloading (100.0%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... downloading (21.4%)[1B[1A[2KPulling default ... downloading (17.8%)[1B[1A[2KPulling default ... downloading (1.0%)[1B[1A[2KPulling default ... downloading (41.8%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... downloading (58.5%)[1B[1A[2KPulling default ... downloading (21.7%)[1B[1A[2KPulling default ... downloading (42.4%)[1B[1A[2KPulling default ... downloading (79.0%)[1B[1A[2KPulling default ... downloading (63.0%)[1B[1A[2KPulling default ... downloading (99.3%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... downloading (0.3%)[1B[1A[2KPulling default ... downloading (76.6%)[1B[1A[2KPulling default ... extracting (1.0%)[1B[1A[2KPulling default ... downloading (100.0%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... downloading (97.3%)[1B[1A[2KPulling default ... downloading (4.9%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... extracting (3.0%)[1B[1A[2KPulling default ... downloading (11.8%)[1B[1A[2KPulling default ... downloading (1.1%)[1B[1A[2KPulling default ... downloading (100.0%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... downloading (54.9%)[1B[1A[2KPulling default ... downloading (17.3%)[1B[1A[2KPulling default ... extracting (5.1%)[1B[1A[2KPulling default ... downloading (22.5%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... downloading (0.2%)[1B[1A[2KPulling default ... extracting (8.1%)[1B[1A[2KPulling default ... downloading (27.5%)[1B[1A[2KPulling default ... downloading (3.9%)[1B[1A[2KPulling default ... downloading (7.7%)[1B[1A[2KPulling default ... downloading (100.0%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... extracting (10.1%)[1B[1A[2KPulling default ... downloading (32.1%)[1B[1A[2KPulling default ... downloading (6.1%)[1B[1A[2KPulling default ... downloading (36.5%)[1B[1A[2KPulling default ... downloading (9.2%)[1B[1A[2KPulling default ... downloading (100.0%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... extracting (12.2%)[1B[1A[2KPulling default ... downloading (42.0%)[1B[1A[2KPulling default ... extracting (13.2%)[1B[1A[2KPulling default ... downloading (12.2%)[1B[1A[2KPulling default ... downloading (47.2%)[1B[1A[2KPulling default ... downloading (100.0%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... downloading (16.1%)[1B[1A[2KPulling default ... downloading (51.1%)[1B[1A[2KPulling default ... extracting (14.2%)[1B[1A[2KPulling default ... downloading (19.4%)[1B[1A[2KPulling default ... downloading (55.5%)[1B[1A[2KPulling default ... downloading (100.0%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... downloading (23.2%)[1B[1A[2KPulling default ... downloading (59.8%)[1B[1A[2KPulling default ... extracting (16.2%)[1B[1A[2KPulling default ... downloading (27.1%)[1B[1A[2KPulling default ... downloading (63.7%)[1B[1A[2KPulling default ... downloading (100.0%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... extracting (18.3%)[1B[1A[2KPulling default ... downloading (68.4%)[1B[1A[2KPulling default ... downloading (30.2%)[1B[1A[2KPulling default ... downloading (34.2%)[1B[1A[2KPulling default ... downloading (73.3%)[1B[1A[2KPulling default ... extracting (19.3%)[1B[1A[2KPulling default ... downloading (100.0%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... extracting (22.3%)[1B[1A[2KPulling default ... downloading (77.7%)[1B[1A[2KPulling default ... downloading (36.3%)[1B[1A[2KPulling default ... downloading (82.6%)[1B[1A[2KPulling default ... downloading (19.4%)[1B[1A[2KPulling default ... downloading (88.4%)[1B[1A[2KPulling default ... downloading (100.0%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... downloading (39.8%)[1B[1A[2KPulling default ... extracting (26.4%)[1B[1A[2KPulling default ... downloading (43.4%)[1B[1A[2KPulling default ... downloading (93.3%)[1B[1A[2KPulling default ... extracting (27.4%)[1B[1A[2KPulling default ... downloading (47.3%)[1B[1A[2KPulling default ... downloading (96.9%)[1B[1A[2KPulling default ... downloading (1.0%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... downloading (50.0%)[1B[1A[2KPulling default ... extracting (29.4%)[1B[1A[2KPulling default ... downloading (60.3%)[1B[1A[2KPulling default ... downloading (53.2%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... downloading (100.0%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... extracting (31.4%)[1B[1A[2KPulling default ... downloading (56.3%)[1B[1A[2KPulling default ... downloading (100.0%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... downloading (24.0%)[1B[1A[2KPulling default ... downloading (100.0%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... extracting (37.5%)[1B[1A[2KPulling default ... downloading (59.9%)[1B[1A[2KPulling default ... downloading (1.0%)[1B[1A[2KPulling default ... downloading (63.2%)[1B[1A[2KPulling default ... downloading (25.2%)[1B[1A[2KPulling default ... extracting (39.5%)[1B[1A[2KPulling default ... downloading (1.1%)[1B[1A[2KPulling default ... downloading (66.5%)[1B[1A[2KPulling default ... downloading (48.5%)[1B[1A[2KPulling default ... extracting (40.6%)[1B[1A[2KPulling default ... downloading (84.6%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... downloading (68.5%)[1B[1A[2KPulling default ... downloading (60.7%)[1B[1A[2KPulling default ... extracting (44.6%)[1B[1A[2KPulling default ... downloading (1.0%)[1B[1A[2KPulling default ... downloading (70.9%)[1B[1A[2KPulling default ... downloading (72.6%)[1B[1A[2KPulling default ... downloading (79.6%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... extracting (46.6%)[1B[1A[2KPulling default ... downloading (74.9%)[1B[1A[2KPulling default ... downloading (79.0%)[1B[1A[2KPulling default ... downloading (78.3%)[1B[1A[2KPulling default ... extracting (50.7%)[1B[1A[2KPulling default ... downloading (98.3%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... extracting (52.7%)[1B[1A[2KPulling default ... downloading (80.2%)[1B[1A[2KPulling default ... extracting (60.8%)[1B[1A[2KPulling default ... downloading (83.5%)[1B[1A[2KPulling default ... extracting (70.0%)[1B[1A[2KPulling default ... downloading (87.0%)[1B[1A[2KPulling default ... extracting (76.1%)[1B[1A[2KPulling default ... downloading (87.8%)[1B[1A[2KPulling default ... extracting (82.1%)[1B[1A[2KPulling default ... extracting (87.2%)[1B[1A[2KPulling default ... downloading (89.8%)[1B[1A[2KPulling default ... extracting (92.3%)[1B[1A[2KPulling default ... downloading (91.7%)[1B[1A[2KPulling default ... extracting (96.3%)[1B[1A[2KPulling default ... downloading (93.4%)[1B[1A[2KPulling default ... downloading (95.2%)[1B[1A[2KPulling default ... downloading (96.9%)[1B[1A[2KPulling default ... extracting (98.4%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... downloading (97.3%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (1.3%)[1B[1A[2KPulling default ... downloading (98.9%)[1B[1A[2KPulling default ... extracting (21.6%)[1B[1A[2KPulling default ... extracting (85.2%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (1.2%)[1B[1A[2KPulling default ... verifying checksum[1B[1A[2KPulling default ... download complete[1B[1A[2KPulling default ... extracting (27.7%)[1B[1A[2KPulling default ... extracting (89.2%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (1.0%)[1B[1A[2KPulling default ... extracting (11.2%)[1B[1A[2KPulling default ... extracting (19.4%)[1B[1A[2KPulling default ... extracting (27.6%)[1B[1A[2KPulling default ... extracting (33.7%)[1B[1A[2KPulling default ... extracting (38.8%)[1B[1A[2KPulling default ... extracting (42.9%)[1B[1A[2KPulling default ... extracting (48.0%)[1B[1A[2KPulling default ... extracting (52.1%)[1B[1A[2KPulling default ... extracting (57.2%)[1B[1A[2KPulling default ... extracting (63.3%)[1B[1A[2KPulling default ... extracting (67.4%)[1B[1A[2KPulling default ... extracting (72.5%)[1B[1A[2KPulling default ... extracting (79.6%)[1B[1A[2KPulling default ... extracting (86.8%)[1B[1A[2KPulling default ... extracting (91.9%)[1B[1A[2KPulling default ... extracting (96.0%)[1B[1A[2KPulling default ... extracting (99.0%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (0.3%)[1B[1A[2KPulling default ... extracting (2.3%)[1B[1A[2KPulling default ... extracting (5.1%)[1B[1A[2KPulling default ... extracting (7.4%)[1B[1A[2KPulling default ... extracting (8.5%)[1B[1A[2KPulling default ... extracting (9.1%)[1B[1A[2KPulling default ... extracting (9.6%)[1B[1A[2KPulling default ... extracting (10.2%)[1B[1A[2KPulling default ... extracting (10.8%)[1B[1A[2KPulling default ... extracting (11.6%)[1B[1A[2KPulling default ... extracting (12.2%)[1B[1A[2KPulling default ... extracting (15.0%)[1B[1A[2KPulling default ... extracting (17.3%)[1B[1A[2KPulling default ... extracting (20.1%)[1B[1A[2KPulling default ... extracting (23.0%)[1B[1A[2KPulling default ... extracting (24.4%)[1B[1A[2KPulling default ... extracting (26.6%)[1B[1A[2KPulling default ... extracting (28.9%)[1B[1A[2KPulling default ... extracting (31.5%)[1B[1A[2KPulling default ... extracting (32.9%)[1B[1A[2KPulling default ... extracting (33.7%)[1B[1A[2KPulling default ... extracting (35.7%)[1B[1A[2KPulling default ... extracting (37.7%)[1B[1A[2KPulling default ... extracting (39.7%)[1B[1A[2KPulling default ... extracting (41.7%)[1B[1A[2KPulling default ... extracting (43.9%)[1B[1A[2KPulling default ... extracting (45.9%)[1B[1A[2KPulling default ... extracting (47.9%)[1B[1A[2KPulling default ... extracting (50.5%)[1B[1A[2KPulling default ... extracting (53.3%)[1B[1A[2KPulling default ... extracting (55.6%)[1B[1A[2KPulling default ... extracting (58.4%)[1B[1A[2KPulling default ... extracting (60.7%)[1B[1A[2KPulling default ... extracting (62.7%)[1B[1A[2KPulling default ... extracting (64.9%)[1B[1A[2KPulling default ... extracting (67.5%)[1B[1A[2KPulling default ... extracting (69.7%)[1B[1A[2KPulling default ... extracting (71.7%)[1B[1A[2KPulling default ... extracting (73.4%)[1B[1A[2KPulling default ... extracting (75.1%)[1B[1A[2KPulling default ... extracting (76.5%)[1B[1A[2KPulling default ... extracting (78.0%)[1B[1A[2KPulling default ... extracting (80.8%)[1B[1A[2KPulling default ... extracting (84.8%)[1B[1A[2KPulling default ... extracting (88.2%)[1B[1A[2KPulling default ... extracting (90.7%)[1B[1A[2KPulling default ... extracting (92.4%)[1B[1A[2KPulling default ... extracting (93.8%)[1B[1A[2KPulling default ... extracting (95.3%)[1B[1A[2KPulling default ... extracting (97.0%)[1B[1A[2KPulling default ... extracting (98.4%)[1B[1A[2KPulling default ... extracting (99.2%)[1B[1A[2KPulling default ... extracting (99.8%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (1.1%)[1B[1A[2KPulling default ... extracting (16.9%)[1B[1A[2KPulling default ... extracting (50.8%)[1B[1A[2KPulling default ... extracting (58.7%)[1B[1A[2KPulling default ... extracting (88.1%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (0.2%)[1B[1A[2KPulling default ... extracting (1.4%)[1B[1A[2KPulling default ... extracting (2.8%)[1B[1A[2KPulling default ... extracting (4.1%)[1B[1A[2KPulling default ... extracting (5.3%)[1B[1A[2KPulling default ... extracting (8.1%)[1B[1A[2KPulling default ... extracting (11.3%)[1B[1A[2KPulling default ... extracting (14.0%)[1B[1A[2KPulling default ... extracting (16.0%)[1B[1A[2KPulling default ... extracting (17.6%)[1B[1A[2KPulling default ... extracting (19.2%)[1B[1A[2KPulling default ... extracting (20.7%)[1B[1A[2KPulling default ... extracting (22.3%)[1B[1A[2KPulling default ... extracting (24.1%)[1B[1A[2KPulling default ... extracting (25.5%)[1B[1A[2KPulling default ... extracting (26.9%)[1B[1A[2KPulling default ... extracting (27.6%)[1B[1A[2KPulling default ... extracting (29.2%)[1B[1A[2KPulling default ... extracting (32.4%)[1B[1A[2KPulling default ... extracting (35.3%)[1B[1A[2KPulling default ... extracting (37.7%)[1B[1A[2KPulling default ... extracting (38.1%)[1B[1A[2KPulling default ... extracting (38.9%)[1B[1A[2KPulling default ... extracting (40.7%)[1B[1A[2KPulling default ... extracting (42.6%)[1B[1A[2KPulling default ... extracting (44.2%)[1B[1A[2KPulling default ... extracting (45.6%)[1B[1A[2KPulling default ... extracting (47.0%)[1B[1A[2KPulling default ... extracting (49.0%)[1B[1A[2KPulling default ... extracting (50.9%)[1B[1A[2KPulling default ... extracting (52.7%)[1B[1A[2KPulling default ... extracting (53.5%)[1B[1A[2KPulling default ... extracting (54.5%)[1B[1A[2KPulling default ... extracting (55.9%)[1B[1A[2KPulling default ... extracting (57.7%)[1B[1A[2KPulling default ... extracting (59.4%)[1B[1A[2KPulling default ... extracting (61.2%)[1B[1A[2KPulling default ... extracting (63.4%)[1B[1A[2KPulling default ... extracting (64.8%)[1B[1A[2KPulling default ... extracting (66.7%)[1B[1A[2KPulling default ... extracting (69.5%)[1B[1A[2KPulling default ... extracting (71.3%)[1B[1A[2KPulling default ... extracting (72.7%)[1B[1A[2KPulling default ... extracting (74.2%)[1B[1A[2KPulling default ... extracting (75.6%)[1B[1A[2KPulling default ... extracting (77.2%)[1B[1A[2KPulling default ... extracting (79.0%)[1B[1A[2KPulling default ... extracting (80.6%)[1B[1A[2KPulling default ... extracting (81.5%)[1B[1A[2KPulling default ... extracting (82.7%)[1B[1A[2KPulling default ... extracting (84.3%)[1B[1A[2KPulling default ... extracting (86.1%)[1B[1A[2KPulling default ... extracting (87.3%)[1B[1A[2KPulling default ... extracting (89.0%)[1B[1A[2KPulling default ... extracting (89.4%)[1B[1A[2KPulling default ... extracting (89.8%)[1B[1A[2KPulling default ... extracting (92.0%)[1B[1A[2KPulling default ... extracting (93.8%)[1B[1A[2KPulling default ... extracting (94.8%)[1B[1A[2KPulling default ... extracting (95.8%)[1B[1A[2KPulling default ... extracting (96.9%)[1B[1A[2KPulling default ... extracting (98.1%)[1B[1A[2KPulling default ... extracting (99.3%)[1B[1A[2KPulling default ... extracting (99.9%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (38.7%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (1.1%)[1B[1A[2KPulling default ... extracting (5.7%)[1B[1A[2KPulling default ... extracting (10.2%)[1B[1A[2KPulling default ... extracting (15.9%)[1B[1A[2KPulling default ... extracting (21.6%)[1B[1A[2KPulling default ... extracting (23.8%)[1B[1A[2KPulling default ... extracting (26.1%)[1B[1A[2KPulling default ... extracting (28.4%)[1B[1A[2KPulling default ... extracting (30.6%)[1B[1A[2KPulling default ... extracting (37.4%)[1B[1A[2KPulling default ... extracting (42.0%)[1B[1A[2KPulling default ... extracting (46.5%)[1B[1A[2KPulling default ... extracting (51.1%)[1B[1A[2KPulling default ... extracting (56.7%)[1B[1A[2KPulling default ... extracting (62.4%)[1B[1A[2KPulling default ... extracting (74.9%)[1B[1A[2KPulling default ... extracting (81.7%)[1B[1A[2KPulling default ... extracting (89.6%)[1B[1A[2KPulling default ... extracting (95.3%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (1.1%)[1B[1A[2KPulling default ... extracting (7.4%)[1B[1A[2KPulling default ... extracting (17.0%)[1B[1A[2KPulling default ... extracting (29.7%)[1B[1A[2KPulling default ... extracting (33.9%)[1B[1A[2KPulling default ... extracting (37.1%)[1B[1A[2KPulling default ... extracting (40.3%)[1B[1A[2KPulling default ... extracting (44.6%)[1B[1A[2KPulling default ... extracting (49.9%)[1B[1A[2KPulling default ... extracting (53.0%)[1B[1A[2KPulling default ... extracting (57.3%)[1B[1A[2KPulling default ... extracting (62.6%)[1B[1A[2KPulling default ... extracting (65.8%)[1B[1A[2KPulling default ... extracting (75.3%)[1B[1A[2KPulling default ... extracting (80.6%)[1B[1A[2KPulling default ... extracting (83.8%)[1B[1A[2KPulling default ... extracting (87.0%)[1B[1A[2KPulling default ... extracting (89.1%)[1B[1A[2KPulling default ... extracting (91.2%)[1B[1A[2KPulling default ... extracting (94.4%)[1B[1A[2KPulling default ... extracting (98.7%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (1.2%)[1B[1A[2KPulling default ... extracting (3.5%)[1B[1A[2KPulling default ... extracting (12.7%)[1B[1A[2KPulling default ... extracting (26.5%)[1B[1A[2KPulling default ... extracting (34.6%)[1B[1A[2KPulling default ... extracting (39.2%)[1B[1A[2KPulling default ... extracting (78.3%)[1B[1A[2KPulling default ... extracting (96.7%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... extracting (1.1%)[1B[1A[2KPulling default ... extracting (2.2%)[1B[1A[2KPulling default ... extracting (8.7%)[1B[1A[2KPulling default ... extracting (20.6%)[1B[1A[2KPulling default ... extracting (55.3%)[1B[1A[2KPulling default ... extracting (58.6%)[1B[1A[2KPulling default ... extracting (67.2%)[1B[1A[2KPulling default ... extracting (70.5%)[1B[1A[2KPulling default ... extracting (73.7%)[1B[1A[2KPulling default ... extracting (80.2%)[1B[1A[2KPulling default ... extracting (84.6%)[1B[1A[2KPulling default ... extracting (96.5%)[1B[1A[2KPulling default ... extracting (100.0%)[1B[1A[2KPulling default ... pull complete[1B[1A[2KPulling default ... digest: sha256:08713d36325b94ac0f...[1B[1A[2KPulling default ... status: downloaded newer image fo...[1B[1A[2KPulling default ... [32mdone[0m[1B
~~~ :docker: Building Docker Compose Service: default
⚠️ No pre-built image found from a previous 'build' step for this service and config file. Building image...
[90m$[0m docker-compose -f .buildkite/docker-compose.yml -p buildkitec7f0615d2623457daa6f407996511bc0 build --pull default
default uses an image, skipping
~~~ :docker: Starting dependencies
[90m$[0m docker-compose -f .buildkite/docker-compose.yml -p buildkitec7f0615d2623457daa6f407996511bc0 up -d --scale default=0 default
Creating network "buildkitec7f0615d2623457daa6f407996511bc0_default" with the default driver
Pulling memcached (memcached:alpine)...
[2Kalpine: Pulling from library/memcached
[1A[2K97518928ae5f: Pulling fs layer[1B
[1A[2Ke8dd13c8de54: Pulling fs layer[1B
[1A[2Ked128e2fdfa5: Pulling fs layer[1B
[1A[2K6e79216f34c8: Pulling fs layer[1B
[1A[2K2081b9b9514a: Pulling fs layer[1B
[1A[2K5422f709785b: Pulling fs layer[1B[3A[2K6e79216f34c8: Waiting[3B[2A[2K2081b9b9514a: Waiting[2B[1A[2K5422f709785b: Waiting[1B[5A[2Ke8dd13c8de54: Downloading [==================================================>] 1.265kB/1.265kB[5B[5A[2Ke8dd13c8de54: Download complete[5B[6A[2K97518928ae5f: Downloading [> ] 34.35kB/2.823MB[6B[4A[2Ked128e2fdfa5: Downloading [=> ] 3.628kB/156.1kB[4B[4A[2Ked128e2fdfa5: Downloading [==================================================>] 156.1kB/156.1kB[4B[4A[2Ked128e2fdfa5: Verifying Checksum[4B[4A[2Ked128e2fdfa5: Download complete[4B[6A[2K97518928ae5f: Verifying Checksum[6B[6A[2K97518928ae5f: Download complete[6B[6A[2K97518928ae5f: Extracting [> ] 32.77kB/2.823MB[6B[3A[2K6e79216f34c8: Downloading [> ] 17.96kB/941.1kB[3B[2A[2K2081b9b9514a: Downloading [==================================================>] 282B/282B[2B[2A[2K2081b9b9514a: Verifying Checksum[2B[2A[2K2081b9b9514a: Download complete[2B[3A[2K6e79216f34c8: Verifying Checksum[3B[3A[2K6e79216f34c8: Download complete[3B[1A[2K5422f709785b: Downloading [==================================================>] 121B/121B[1B[1A[2K5422f709785b: Verifying Checksum[1B[1A[2K5422f709785b: Download complete[1B[6A[2K97518928ae5f: Extracting [=================================> ] 1.901MB/2.823MB[6B[6A[2K97518928ae5f: Extracting [==================================================>] 2.823MB/2.823MB[6B[6A[2K97518928ae5f: Pull complete[6B[5A[2Ke8dd13c8de54: Extracting [==================================================>] 1.265kB/1.265kB[5B[5A[2Ke8dd13c8de54: Extracting [==================================================>] 1.265kB/1.265kB[5B[5A[2Ke8dd13c8de54: Pull complete[5B[4A[2Ked128e2fdfa5: Extracting [==========> ] 32.77kB/156.1kB[4B[4A[2Ked128e2fdfa5: Extracting [==================================================>] 156.1kB/156.1kB[4B[4A[2Ked128e2fdfa5: Pull complete[4B[3A[2K6e79216f34c8: Extracting [=> ] 32.77kB/941.1kB[3B[3A[2K6e79216f34c8: Extracting [==================================================>] 941.1kB/941.1kB[3B[3A[2K6e79216f34c8: Extracting [==================================================>] 941.1kB/941.1kB[3B[3A[2K6e79216f34c8: Pull complete[3B[2A[2K2081b9b9514a: Extracting [==================================================>] 282B/282B[2B[2A[2K2081b9b9514a: Extracting [==================================================>] 282B/282B[2B[2A[2K2081b9b9514a: Pull complete[2B[1A[2K5422f709785b: Extracting [==================================================>] 121B/121B[1B[1A[2K5422f709785b: Extracting [==================================================>] 121B/121B[1B[1A[2K5422f709785b: Pull complete[1BPulling redis (redis:alpine)...
[2Kalpine: Pulling from library/redis
[1A[2K97518928ae5f: Already exists[1B
[1A[2K66f8c4150d27: Pulling fs layer[1B
[1A[2K09a8bf17a0bf: Pulling fs layer[1B
[1A[2Ke547313af8e7: Pulling fs layer[1B
[1A[2K335eeadfbde0: Pulling fs layer[1B
[1A[2K7151fc2c01eb: Pulling fs layer[1B[2A[2K335eeadfbde0: Waiting[2B[1A[2K7151fc2c01eb: Waiting[1B[3A[2Ke547313af8e7: Downloading [> ] 85.55kB/7.707MB[3B[5A[2K66f8c4150d27: Downloading [==================================================>] 1.266kB/1.266kB[5B[5A[2K66f8c4150d27: Verifying Checksum[5B[5A[2K66f8c4150d27: Download complete[5B[5A[2K66f8c4150d27: Extracting [==================================================>] 1.266kB/1.266kB[5B[4A[2K09a8bf17a0bf: Downloading [==> ] 16.94kB/406kB[4B[5A[2K66f8c4150d27: Extracting [==================================================>] 1.266kB/1.266kB[5B[4A[2K09a8bf17a0bf: Downloading [==================================================>] 406kB/406kB[4B[4A[2K09a8bf17a0bf: Verifying Checksum[4B[4A[2K09a8bf17a0bf: Download complete[4B[3A[2Ke547313af8e7: Verifying Checksum[3B[3A[2Ke547313af8e7: Download complete[3B[2A[2K335eeadfbde0: Downloading [==================================================>] 135B/135B[2B[2A[2K335eeadfbde0: Verifying Checksum[2B[2A[2K335eeadfbde0: Download complete[2B[1A[2K7151fc2c01eb: Downloading [==================================================>] 410B/410B[1B[1A[2K7151fc2c01eb: Verifying Checksum[1B[1A[2K7151fc2c01eb: Download complete[1B[5A[2K66f8c4150d27: Pull complete[5B[4A[2K09a8bf17a0bf: Extracting [====> ] 32.77kB/406kB[4B[4A[2K09a8bf17a0bf: Extracting [================================================> ] 393.2kB/406kB[4B[4A[2K09a8bf17a0bf: Extracting [==================================================>] 406kB/406kB[4B[4A[2K09a8bf17a0bf: Extracting [==================================================>] 406kB/406kB[4B[4A[2K09a8bf17a0bf: Pull complete[4B[3A[2Ke547313af8e7: Extracting [> ] 98.3kB/7.707MB[3B[3A[2Ke547313af8e7: Extracting [===========> ] 1.769MB/7.707MB[3B[3A[2Ke547313af8e7: Extracting [=====================================> ] 5.8MB/7.707MB[3B[3A[2Ke547313af8e7: Extracting [==================================================>] 7.707MB/7.707MB[3B[3A[2Ke547313af8e7: Pull complete[3B[2A[2K335eeadfbde0: Extracting [==================================================>] 135B/135B[2B[2A[2K335eeadfbde0: Extracting [==================================================>] 135B/135B[2B[2A[2K335eeadfbde0: Pull complete[2B[1A[2K7151fc2c01eb: Extracting [==================================================>] 410B/410B[1B[1A[2K7151fc2c01eb: Extracting [==================================================>] 410B/410B[1B[1A[2K7151fc2c01eb: Pull complete[1BCreating buildkitec7f0615d2623457daa6f407996511bc0_redis_1 ...
Creating buildkitec7f0615d2623457daa6f407996511bc0_memcached_1 ...
[1A[2KCreating buildkitec7f0615d2623457daa6f407996511bc0_memcached_1 ... [32mdone[0m[1B[2A[2KCreating buildkitec7f0615d2623457daa6f407996511bc0_redis_1 ... [32mdone[0m[2B
+++ :docker: Running runner actionpack 'rake test' in service default
[90m$[0m docker-compose -f .buildkite/docker-compose.yml -p buildkitec7f0615d2623457daa6f407996511bc0 run --name buildkitec7f0615d2623457daa6f407996511bc0_default_build_82655 --rm default runner actionpack 'rake test'
Starting buildkitec7f0615d2623457daa6f407996511bc0_redis_1 ...
Starting buildkitec7f0615d2623457daa6f407996511bc0_memcached_1 ...
[1A[2KStarting buildkitec7f0615d2623457daa6f407996511bc0_memcached_1 ... [32mdone[0m[1B[2A[2KStarting buildkitec7f0615d2623457daa6f407996511bc0_redis_1 ... [32mdone[0m[2B
--- bundle env
## Environment
```
Bundler 2.2.9
Platforms ruby, x86_64-linux
Ruby 2.7.4p191 (2021-07-07 revision a21a3b7d23704a01d34bd79d09dc37897e00922a) [x86_64-linux]
Full Path /usr/local/bin/ruby
Config Dir /usr/local/etc
RubyGems 3.2.9
Gem Home /usr/local/bundle
Gem Path /root/.gem/ruby/2.7.0:/usr/local/lib/ruby/gems/2.7.0:/usr/local/bundle
User Home /root
User Path /root/.gem/ruby/2.7.0
Bin Dir /usr/local/bundle/bin
Tools
Git 2.30.2
RVM not installed
rbenv not installed
chruby not installed
```
## Bundler Build Metadata
```
Built At 2021-02-08
Git SHA 30e740c073
Released Version true
```
## Bundler settings
```
jobs
Set for your local app (/usr/local/bundle/config): 8
app_config
Set via BUNDLE_APP_CONFIG: "/usr/local/bundle"
silence_root_warning
Set via BUNDLE_SILENCE_ROOT_WARNING: true
```
## Gemfile
### Gemfile
```ruby
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gemspec
# We need a newish Rake since Active Job sets its test tasks' descriptions.
gem "rake", ">= 11.1"
gem "sprockets-rails", ">= 2.0.0"
gem "propshaft", ">= 0.1.7"
gem "capybara", ">= 3.26"
gem "selenium-webdriver", ">= 4.0.0"
gem "rack-cache", "~> 1.2"
gem "stimulus-rails"
gem "turbo-rails"
gem "jsbundling-rails"
gem "cssbundling-rails"
gem "importmap-rails"
gem "tailwindcss-rails"
# require: false so bcrypt is loaded only when has_secure_password is used.
# This is to avoid Active Model (and by extension the entire framework)
# being dependent on a binary library.
gem "bcrypt", "~> 3.1.11", require: false
# This needs to be with require false to avoid it being automatically loaded by
# sprockets.
gem "terser", ">= 1.1.4", require: false
# Explicitly avoid 1.x that doesn't support Ruby 2.4+
gem "json", ">= 2.0.0"
group :rubocop do
gem "rubocop", ">= 0.90", require: false
gem "rubocop-minitest", require: false
gem "rubocop-packaging", require: false
gem "rubocop-performance", require: false
gem "rubocop-rails", require: false
end
group :doc do
gem "sdoc", ">= 2.2.0"
gem "redcarpet", "~> 3.2.3", platforms: :ruby
gem "w3c_validators", "~> 1.3.6"
gem "kindlerb", "~> 1.2.0"
gem "rouge"
end
# Active Support
gem "dalli", ">= 3.0.1"
gem "listen", "~> 3.3", require: false
gem "libxml-ruby", platforms: :ruby
gem "connection_pool", require: false
gem "rexml", require: false
# for railties
gem "bootsnap", ">= 1.4.4", require: false
gem "webrick", require: false
# Active Job
group :job do
gem "resque", require: false
gem "resque-scheduler", require: false
gem "sidekiq", require: false
gem "sucker_punch", require: false
gem "delayed_job", require: false
gem "queue_classic", github: "jhawthorn/queue_classic", branch: "fix-connection-pg-14", require: false, platforms: :ruby
gem "sneakers", require: false
gem "que", require: false
gem "backburner", require: false
gem "delayed_job_active_record", require: false
gem "sequel", require: false
end
# Action Cable
group :cable do
gem "puma", require: false
gem "hiredis", require: false
gem "redis", "~> 4.0", require: false
gem "redis-namespace"
gem "websocket-client-simple", github: "matthewd/websocket-client-simple", branch: "close-race", require: false
end
# Active Storage
group :storage do
gem "aws-sdk-s3", require: false
gem "google-cloud-storage", "~> 1.11", require: false
gem "azure-storage-blob", "~> 2.0", require: false
gem "image_processing", "~> 1.2"
end
# Action Mailbox
gem "aws-sdk-sns", require: false
gem "webmock"
group :ujs do
gem "webdrivers"
end
# Action View
group :view do
gem "blade", require: false, platforms: [:ruby]
gem "sprockets-export", require: false
end
# Add your own local bundler stuff.
local_gemfile = File.expand_path(".Gemfile", __dir__)
instance_eval File.read local_gemfile if File.exist? local_gemfile
group :test do
gem "minitest-bisect"
gem "minitest-ci", require: false
gem "minitest-retry"
platforms :mri do
gem "stackprof"
gem "debug", ">= 1.1.0", require: false
end
gem "benchmark-ips"
end
platforms :ruby, :mswin, :mswin64, :mingw, :x64_mingw do
gem "nokogiri", ">= 1.8.1", "!= 1.11.0"
# Needed for compiling the ActionDispatch::Journey parser.
gem "racc", ">=1.4.6", require: false
# Active Record.
gem "sqlite3", "~> 1.4"
group :db do
gem "pg", "~> 1.1"
gem "mysql2", "~> 0.5", github: "brianmario/mysql2"
end
end
platforms :jruby do
if ENV["AR_JDBC"]
gem "activerecord-jdbcsqlite3-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
group :db do
gem "activerecord-jdbcmysql-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
gem "activerecord-jdbcpostgresql-adapter", github: "jruby/activerecord-jdbc-adapter", branch: "master"
end
else
gem "activerecord-jdbcsqlite3-adapter", ">= 1.3.0"
group :db do
gem "activerecord-jdbcmysql-adapter", ">= 1.3.0"
gem "activerecord-jdbcpostgresql-adapter", ">= 1.3.0"
end
end
end
platforms :rbx do
# The rubysl-yaml gem doesn't ship with Psych by default as it needs
# libyaml that isn't always available.
gem "psych", "~> 3.0"
end
# Gems that are necessary for Active Record tests with Oracle.
if ENV["ORACLE_ENHANCED"]
platforms :ruby do
gem "ruby-oci8", "~> 2.2"
end
gem "activerecord-oracle_enhanced-adapter", github: "rsim/oracle-enhanced", branch: "master"
end
gem "tzinfo-data", platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem "wdm", ">= 0.1.0", platforms: [:mingw, :mswin, :x64_mingw, :mswin64]
if RUBY_VERSION >= "3.1"
# net-smtp, net-imap and net-pop were removed from default gems in Ruby 3.1, but is used by the `mail` gem.
# So we need to add them as dependencies until `mail` is fixed: https://github.com/mikel/mail/pull/1439
gem "net-smtp", require: false
gem "net-imap", require: false
gem "net-pop", require: false
# digest gem, which is one of the default gems has bumped to 3.1.0.pre for ruby 3.1.0dev.
gem "digest", "~> 3.1.0.pre", require: false
# matrix was removed from default gems in Ruby 3.1, but is used by the `capybara` gem.
# So we need to add it as a dependency until `capybara` is fixed: https://github.com/teamcapybara/capybara/pull/2468
gem "matrix", require: false
end
```
### Gemfile.lock
```
GIT
remote: https://github.com/brianmario/mysql2.git
revision: 6652da20010ddfbbe6bceb8e41666d05e512346c
specs:
mysql2 (0.5.3)
GIT
remote: https://github.com/jhawthorn/queue_classic.git
revision: dbfee9bda71020b8f11ae8d9b85932462b7fbee0
branch: fix-connection-pg-14
specs:
queue_classic (4.0.0.pre.alpha1)
pg (>= 0.17, < 2.0)
GIT
remote: https://github.com/matthewd/websocket-client-simple.git
revision: e161305f1a466b9398d86df3b1731b03362da91b
branch: close-race
specs:
websocket-client-simple (0.3.0)
event_emitter
websocket
PATH
remote: .
specs:
actioncable (7.0.0.alpha2)
actionpack (= 7.0.0.alpha2)
activesupport (= 7.0.0.alpha2)
nio4r (~> 2.0)
websocket-driver (>= 0.6.1)
actionmailbox (7.0.0.alpha2)
actionpack (= 7.0.0.alpha2)
activejob (= 7.0.0.alpha2)
activerecord (= 7.0.0.alpha2)
activestorage (= 7.0.0.alpha2)
activesupport (= 7.0.0.alpha2)
mail (>= 2.7.1)
actionmailer (7.0.0.alpha2)
actionpack (= 7.0.0.alpha2)
actionview (= 7.0.0.alpha2)
activejob (= 7.0.0.alpha2)
activesupport (= 7.0.0.alpha2)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0)
actionpack (7.0.0.alpha2)
actionview (= 7.0.0.alpha2)
activesupport (= 7.0.0.alpha2)
rack (~> 2.0, >= 2.2.0)
rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.2.0)
actiontext (7.0.0.alpha2)
actionpack (= 7.0.0.alpha2)
activerecord (= 7.0.0.alpha2)
activestorage (= 7.0.0.alpha2)
activesupport (= 7.0.0.alpha2)
nokogiri (>= 1.8.5)
actionview (7.0.0.alpha2)
activesupport (= 7.0.0.alpha2)
builder (~> 3.1)
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.1, >= 1.2.0)
activejob (7.0.0.alpha2)
activesupport (= 7.0.0.alpha2)
globalid (>= 0.3.6)
activemodel (7.0.0.alpha2)
activesupport (= 7.0.0.alpha2)
activerecord (7.0.0.alpha2)
activemodel (= 7.0.0.alpha2)
activesupport (= 7.0.0.alpha2)
activestorage (7.0.0.alpha2)
actionpack (= 7.0.0.alpha2)
activejob (= 7.0.0.alpha2)
activerecord (= 7.0.0.alpha2)
activesupport (= 7.0.0.alpha2)
marcel (~> 1.0)
mini_mime (>= 1.1.0)
activesupport (7.0.0.alpha2)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
rails (7.0.0.alpha2)
actioncable (= 7.0.0.alpha2)
actionmailbox (= 7.0.0.alpha2)
actionmailer (= 7.0.0.alpha2)
actionpack (= 7.0.0.alpha2)
actiontext (= 7.0.0.alpha2)
actionview (= 7.0.0.alpha2)
activejob (= 7.0.0.alpha2)
activemodel (= 7.0.0.alpha2)
activerecord (= 7.0.0.alpha2)
activestorage (= 7.0.0.alpha2)
activesupport (= 7.0.0.alpha2)
bundler (>= 1.15.0)
railties (= 7.0.0.alpha2)
railties (7.0.0.alpha2)
actionpack (= 7.0.0.alpha2)
activesupport (= 7.0.0.alpha2)
method_source
rake (>= 12.2)
thor (~> 1.0)
zeitwerk (~> 2.5)
GEM
remote: https://rubygems.org/
specs:
addressable (2.8.0)
public_suffix (>= 2.0.2, < 5.0)
amq-protocol (2.3.2)
ast (2.4.2)
aws-eventstream (1.2.0)
aws-partitions (1.532.0)
aws-sdk-core (3.122.1)
aws-eventstream (~> 1, >= 1.0.2)
aws-partitions (~> 1, >= 1.525.0)
aws-sigv4 (~> 1.1)
jmespath (~> 1.0)
aws-sdk-kms (1.51.0)
aws-sdk-core (~> 3, >= 3.122.0)
aws-sigv4 (~> 1.1)
aws-sdk-s3 (1.106.0)
aws-sdk-core (~> 3, >= 3.122.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.4)
aws-sdk-sns (1.48.0)
aws-sdk-core (~> 3, >= 3.122.0)
aws-sigv4 (~> 1.1)
aws-sigv4 (1.4.0)
aws-eventstream (~> 1, >= 1.0.2)
azure-storage-blob (2.0.2)
azure-storage-common (~> 2.0)
nokogiri (~> 1.11.0.rc2)
azure-storage-common (2.0.3)
faraday (~> 1.0)
faraday_middleware (~> 1.0.0.rc1)
net-http-persistent (~> 4.0)
nokogiri (~> 1.11.0.rc2)
backburner (1.5.0)
beaneater (~> 1.0)
concurrent-ruby (~> 1.0, >= 1.0.1)
dante (> 0.1.5)
bcrypt (3.1.16)
beaneater (1.1.1)
benchmark-ips (2.9.2)
blade (0.7.2)
activesupport (>= 3.0.0)
blade-qunit_adapter (>= 2.0.1)
coffee-script
coffee-script-source
curses (>= 1.4.0)
eventmachine
faye
sprockets (>= 3.0)
thin (>= 1.6.0)
thor (>= 0.19.1)
useragent (>= 0.16.7)
blade-qunit_adapter (2.0.1)
bootsnap (1.9.1)
msgpack (~> 1.0)
builder (3.2.4)
bunny (2.19.0)
amq-protocol (~> 2.3, >= 2.3.1)
sorted_set (~> 1, >= 1.0.2)
capybara (3.36.0)
addressable
matrix
mini_mime (>= 0.1.3)
nokogiri (~> 1.8)
rack (>= 1.6.0)
rack-test (>= 0.6.3)
regexp_parser (>= 1.5, < 3.0)
xpath (~> 3.2)
childprocess (4.1.0)
coffee-script (2.4.1)
coffee-script-source
execjs
coffee-script-source (1.12.2)
concurrent-ruby (1.1.9)
connection_pool (2.2.5)
cookiejar (0.3.3)
crack (0.4.5)
rexml
crass (1.0.6)
cssbundling-rails (0.2.6)
railties (>= 6.0.0)
curses (1.4.2)
daemons (1.4.1)
dalli (3.0.4)
dante (0.2.0)
debug (1.3.4)
irb (>= 1.3.6)
reline (>= 0.2.7)
declarative (0.0.20)
delayed_job (4.1.9)
activesupport (>= 3.0, < 6.2)
delayed_job_active_record (4.1.6)
activerecord (>= 3.0, < 6.2)
delayed_job (>= 3.0, < 5)
digest-crc (0.6.4)
rake (>= 12.0.0, < 14.0.0)
em-http-request (1.1.7)
addressable (>= 2.3.4)
cookiejar (!= 0.3.1)
em-socksify (>= 0.3)
eventmachine (>= 1.0.3)
http_parser.rb (>= 0.6.0)
em-socksify (0.3.2)
eventmachine (>= 1.0.0.beta.4)
erubi (1.10.0)
et-orbi (1.2.6)
tzinfo
event_emitter (0.2.6)
eventmachine (1.2.7)
execjs (2.8.1)
faraday (1.8.0)
faraday-em_http (~> 1.0)
faraday-em_synchrony (~> 1.0)
faraday-excon (~> 1.1)
faraday-httpclient (~> 1.0.1)
faraday-net_http (~> 1.0)
faraday-net_http_persistent (~> 1.1)
faraday-patron (~> 1.0)
faraday-rack (~> 1.0)
multipart-post (>= 1.2, < 3)
ruby2_keywords (>= 0.0.4)
faraday-em_http (1.0.0)
faraday-em_synchrony (1.0.0)
faraday-excon (1.1.0)
faraday-httpclient (1.0.1)
faraday-net_http (1.0.1)
faraday-net_http_persistent (1.2.0)
faraday-patron (1.0.0)
faraday-rack (1.0.0)
faraday_middleware (1.0.0)
faraday (~> 1.0)
faye (1.4.0)
cookiejar (>= 0.3.0)
em-http-request (>= 1.1.6)
eventmachine (>= 0.12.0)
faye-websocket (>= 0.11.0)
multi_json (>= 1.0.0)
rack (>= 1.0.0)
websocket-driver (>= 0.5.1)
faye-websocket (0.11.1)
eventmachine (>= 0.12.0)
websocket-driver (>= 0.5.1)
ffi (1.15.4)
fugit (1.5.2)
et-orbi (~> 1.1, >= 1.1.8)
raabro (~> 1.4)
globalid (0.5.2)
activesupport (>= 5.0)
google-apis-core (0.4.1)
addressable (~> 2.5, >= 2.5.1)
googleauth (>= 0.16.2, < 2.a)
httpclient (>= 2.8.1, < 3.a)
mini_mime (~> 1.0)
representable (~> 3.0)
retriable (>= 2.0, < 4.a)
rexml
webrick
google-apis-iamcredentials_v1 (0.8.0)
google-apis-core (>= 0.4, < 2.a)
google-apis-storage_v1 (0.9.0)
google-apis-core (>= 0.4, < 2.a)
google-cloud-core (1.6.0)
google-cloud-env (~> 1.0)
google-cloud-errors (~> 1.0)
google-cloud-env (1.5.0)
faraday (>= 0.17.3, < 2.0)
google-cloud-errors (1.2.0)
google-cloud-storage (1.34.1)
addressable (~> 2.5)
digest-crc (~> 0.4)
google-apis-iamcredentials_v1 (~> 0.1)
google-apis-storage_v1 (~> 0.1)
google-cloud-core (~> 1.6)
googleauth (>= 0.16.2, < 2.a)
mini_mime (~> 1.0)
googleauth (1.1.0)
faraday (>= 0.17.3, < 2.0)
jwt (>= 1.4, < 3.0)
memoist (~> 0.16)
multi_json (~> 1.11)
os (>= 0.9, < 2.0)
signet (>= 0.16, < 2.a)
hashdiff (1.0.1)
hiredis (0.6.3)
http_parser.rb (0.8.0)
httpclient (2.8.3)
i18n (1.8.11)
concurrent-ruby (~> 1.0)
image_processing (1.12.1)
mini_magick (>= 4.9.5, < 5)
ruby-vips (>= 2.0.17, < 3)
importmap-rails (0.8.2)
rails (>= 6.0.0)
io-console (0.5.9)
irb (1.3.7)
reline (>= 0.2.7)
jmespath (1.4.0)
jsbundling-rails (0.2.1)
railties (>= 6.0.0)
json (2.6.1)
jwt (2.3.0)
kindlerb (1.2.0)
mustache
nokogiri
libxml-ruby (3.2.1)
listen (3.7.0)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
loofah (2.12.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
mail (2.7.1)
mini_mime (>= 0.1.1)
marcel (1.0.2)
matrix (0.4.2)
memoist (0.16.2)
method_source (1.0.0)
mini_magick (4.11.0)
mini_mime (1.1.2)
minitest (5.14.4)
minitest-bisect (1.5.1)
minitest-server (~> 1.0)
path_expander (~> 1.1)
minitest-ci (3.4.0)
minitest (>= 5.0.6)
minitest-retry (0.2.2)
minitest (>= 5.0)
minitest-server (1.0.6)
minitest (~> 5.0)
mono_logger (1.1.1)
msgpack (1.4.2)
multi_json (1.15.0)
multipart-post (2.1.1)
mustache (1.1.1)
mustermann (1.1.1)
ruby2_keywords (~> 0.0.1)
net-http-persistent (4.0.1)
connection_pool (~> 2.2)
nio4r (2.5.8)
nokogiri (1.11.7-x86_64-linux)
racc (~> 1.4)
os (1.1.4)
parallel (1.21.0)
parser (3.0.2.0)
ast (~> 2.4.1)
path_expander (1.1.0)
pg (1.2.3)
propshaft (0.2.2)
rails (>= 7.0.0.alpha2)
psych (3.3.2)
public_suffix (4.0.6)
puma (5.5.2)
nio4r (~> 2.0)
que (0.14.3)
raabro (1.4.0)
racc (1.6.0)
rack (2.2.3)
rack-cache (1.13.0)
rack (>= 0.4)
rack-protection (2.1.0)
rack
rack-test (1.1.0)
rack (>= 1.0, < 3)
rails-dom-testing (2.0.3)
activesupport (>= 4.2.0)
nokogiri (>= 1.6)
rails-html-sanitizer (1.4.2)
loofah (~> 2.3)
rainbow (3.0.0)
rake (13.0.6)
rb-fsevent (0.11.0)
rb-inotify (0.10.1)
ffi (~> 1.0)
rbtree (0.4.4)
rdoc (6.3.3)
redcarpet (3.2.3)
redis (4.5.1)
redis-namespace (1.8.1)
redis (>= 3.0.4)
regexp_parser (2.1.1)
reline (0.2.7)
io-console (~> 0.5)
representable (3.1.1)
declarative (< 0.1.0)
trailblazer-option (>= 0.1.1, < 0.2.0)
uber (< 0.2.0)
resque (2.2.0)
mono_logger (~> 1.0)
multi_json (~> 1.0)
redis-namespace (~> 1.6)
sinatra (>= 0.9.2)
vegas (~> 0.1.2)
resque-scheduler (4.5.0)
mono_logger (~> 1.0)
redis (>= 3.3)
resque (>= 1.27)
rufus-scheduler (~> 3.2, < 3.7)
retriable (3.1.2)
rexml (3.2.5)
rouge (3.26.1)
rubocop (1.23.0)
parallel (~> 1.10)
parser (>= 3.0.0.0)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml
rubocop-ast (>= 1.12.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.13.0)
parser (>= 3.0.1.1)
rubocop-minitest (0.16.0)
rubocop (>= 0.90, < 2.0)
rubocop-packaging (0.5.1)
rubocop (>= 0.89, < 2.0)
rubocop-performance (1.12.0)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
rubocop-rails (2.12.4)
activesupport (>= 4.2.0)
rack (>= 1.1)
rubocop (>= 1.7.0, < 2.0)
ruby-progressbar (1.11.0)
ruby-vips (2.1.3)
ffi (~> 1.12)
ruby2_keywords (0.0.5)
rubyzip (2.3.2)
rufus-scheduler (3.6.0)
fugit (~> 1.1, >= 1.1.6)
sdoc (2.2.0)
rdoc (>= 5.0)
selenium-webdriver (4.0.3)
childprocess (>= 0.5, < 5.0)
rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2)
sequel (5.50.0)
serverengine (2.0.7)
sigdump (~> 0.2.2)
set (1.0.2)
sidekiq (6.3.1)
connection_pool (>= 2.2.2)
rack (~> 2.0)
redis (>= 4.2.0)
sigdump (0.2.4)
signet (0.16.0)
addressable (~> 2.8)
faraday (>= 0.17.3, < 2.0)
jwt (>= 1.5, < 3.0)
multi_json (~> 1.10)
sinatra (2.1.0)
mustermann (~> 1.0)
rack (~> 2.2)
rack-protection (= 2.1.0)
tilt (~> 2.0)
sneakers (2.11.0)
bunny (~> 2.12)
concurrent-ruby (~> 1.0)
rake
serverengine (~> 2.0.5)
thor
sorted_set (1.0.3)
rbtree
set (~> 1.0)
sprockets (4.0.2)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
sprockets-export (1.0.0)
sprockets-rails (3.4.0)
actionpack (>= 5.2)
activesupport (>= 5.2)
sprockets (>= 3.0.0)
sqlite3 (1.4.2)
stackprof (0.2.17)
stimulus-rails (0.7.2)
rails (>= 6.0.0)
sucker_punch (3.0.1)
concurrent-ruby (~> 1.0)
tailwindcss-rails (0.5.1)
rails (>= 6.0.0)
terser (1.1.7)
execjs (>= 0.3.0, < 3)
thin (1.8.1)
daemons (~> 1.0, >= 1.0.9)
eventmachine (~> 1.0, >= 1.0.4)
rack (>= 1, < 3)
thor (1.1.0)
tilt (2.0.10)
trailblazer-option (0.1.2)
turbo-rails (0.8.3)
rails (>= 6.0.0)
tzinfo (2.0.4)
concurrent-ruby (~> 1.0)
uber (0.1.0)
unicode-display_width (2.1.0)
useragent (0.16.10)
vegas (0.1.11)
rack (>= 1.0.0)
w3c_validators (1.3.6)
json (>= 1.8)
nokogiri (~> 1.6)
rexml (~> 3.2)
webdrivers (5.0.0)
nokogiri (~> 1.6)
rubyzip (>= 1.3.0)
selenium-webdriver (~> 4.0)
webmock (3.14.0)
addressable (>= 2.8.0)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
webrick (1.7.0)
websocket (1.2.9)
websocket-driver (0.7.5)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.5)
xpath (3.2.0)
nokogiri (~> 1.8)
zeitwerk (2.5.1)
PLATFORMS
x86_64-linux
DEPENDENCIES
activerecord-jdbcmysql-adapter (>= 1.3.0)
activerecord-jdbcpostgresql-adapter (>= 1.3.0)
activerecord-jdbcsqlite3-adapter (>= 1.3.0)
aws-sdk-s3
aws-sdk-sns
azure-storage-blob (~> 2.0)
backburner
bcrypt (~> 3.1.11)
benchmark-ips
blade
bootsnap (>= 1.4.4)
capybara (>= 3.26)
connection_pool
cssbundling-rails
dalli (>= 3.0.1)
debug (>= 1.1.0)
delayed_job
delayed_job_active_record
google-cloud-storage (~> 1.11)
hiredis
image_processing (~> 1.2)
importmap-rails
jsbundling-rails
json (>= 2.0.0)
kindlerb (~> 1.2.0)
libxml-ruby
listen (~> 3.3)
minitest-bisect
minitest-ci
minitest-retry
mysql2 (~> 0.5)!
nokogiri (>= 1.8.1, != 1.11.0)
pg (~> 1.1)
propshaft (>= 0.1.7)
psych (~> 3.0)
puma
que
queue_classic!
racc (>= 1.4.6)
rack-cache (~> 1.2)
rails!
rake (>= 11.1)
redcarpet (~> 3.2.3)
redis (~> 4.0)
redis-namespace
resque
resque-scheduler
rexml
rouge
rubocop (>= 0.90)
rubocop-minitest
rubocop-packaging
rubocop-performance
rubocop-rails
sdoc (>= 2.2.0)
selenium-webdriver (>= 4.0.0)
sequel
sidekiq
sneakers
sprockets-export
sprockets-rails (>= 2.0.0)
sqlite3 (~> 1.4)
stackprof
stimulus-rails
sucker_punch
tailwindcss-rails
terser (>= 1.1.4)
turbo-rails
tzinfo-data
w3c_validators (~> 1.3.6)
wdm (>= 0.1.0)
webdrivers
webmock
webrick
websocket-client-simple!
BUNDLED WITH
2.2.9
```
## Gemspecs
### rails.gemspec
```ruby
# frozen_string_literal: true
version = File.read(File.expand_path("RAILS_VERSION", __dir__)).strip
Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.name = "rails"
s.version = version
s.summary = "Full-stack web application framework."
s.description = "Ruby on Rails is a full-stack web framework optimized for programmer happiness and sustainable productivity. It encourages beautiful code by favoring convention over configuration."
s.required_ruby_version = ">= 2.7.0"
s.required_rubygems_version = ">= 1.8.11"
s.license = "MIT"
s.author = "David Heinemeier Hansson"
s.email = "[email protected]"
s.homepage = "https://rubyonrails.org"
s.files = ["README.md"]