forked from department-of-veterans-affairs/vets-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile.lock
941 lines (921 loc) · 21.2 KB
/
Gemfile.lock
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
GIT
remote: https://github.com/department-of-veterans-affairs/active_model_serializers
revision: 19015caa80227e5ae5d62179129edcaa43fb3d9d
branch: master
specs:
active_model_serializers (0.10.4.vsp)
actionpack (>= 4.1)
activemodel (>= 4.1)
case_transform (>= 0.2)
jsonapi (= 0.1.1.beta6)
GIT
remote: https://github.com/department-of-veterans-affairs/apivore
revision: b5b6c9803334f9ddc1c11e4f201fdc9f6353ef59
branch: master
specs:
apivore (1.6.2.vsp)
actionpack (>= 4)
hashie (~> 3.3)
json-schema (~> 2.5)
rspec (~> 3)
rspec-expectations (~> 3.1)
rspec-mocks (~> 3.1)
GIT
remote: https://github.com/department-of-veterans-affairs/betamocks
revision: df8f8e600863fe35b1d0bab01372f65a75d50937
branch: master
specs:
betamocks (0.7.0)
activesupport (>= 4.2)
adler32
faraday (>= 0.7.4, <= 0.17.0)
GIT
remote: https://github.com/department-of-veterans-affairs/connect_vbms.git
revision: bebad55f8723f091c7d41522178b11999f574499
branch: master
specs:
connect_vbms (1.2.0)
httpclient (~> 2.8.0)
httpi (~> 2.4)
mail
nokogiri (>= 1.8.4)
nori
xmldsig (~> 0.3.1)
xmlenc
GIT
remote: https://github.com/department-of-veterans-affairs/lighthouse-bgs.git
revision: 3a9cf80e0d542e9869de8c1a8cd7e4d0eac11864
branch: master
specs:
lighthouse_bgs (0.13.0)
httpclient
nokogiri (>= 1.8.5)
savon (~> 2.12)
GIT
remote: https://github.com/department-of-veterans-affairs/vets-json-schema
revision: 523f96cb8e406e91db69098bb5d2baa9195447bc
branch: master
specs:
vets_json_schema (5.1.0)
multi_json (~> 1.0)
script_utils (= 0.0.4)
PATH
remote: modules/appeals_api
specs:
appeals_api (0.0.1)
sidekiq
PATH
remote: modules/claims_api
specs:
claims_api (0.0.1)
PATH
remote: modules/openid_auth
specs:
openid_auth (0.0.1)
PATH
remote: modules/va_facilities
specs:
va_facilities (0.0.1)
PATH
remote: modules/va_forms
specs:
va_forms (0.0.1)
faraday
nokogiri
paper_trail
sidekiq
PATH
remote: modules/vaos
specs:
vaos (0.1.0)
PATH
remote: modules/vba_documents
specs:
vba_documents (0.0.1)
aws-sdk-s3 (~> 1)
sidekiq
PATH
remote: modules/veteran_confirmation
specs:
veteran_confirmation (0.0.1)
PATH
remote: modules/veteran_verification
specs:
veteran_verification (0.0.1)
PATH
remote: modules/veteran
specs:
veteran (0.0.1)
GEM
remote: https://rubygems.org/
remote: https://enterprise.contribsys.com/
specs:
Ascii85 (1.0.3)
aasm (5.0.6)
concurrent-ruby (~> 1.0)
actioncable (6.0.3.1)
actionpack (= 6.0.3.1)
nio4r (~> 2.0)
websocket-driver (>= 0.6.1)
actionmailbox (6.0.3.1)
actionpack (= 6.0.3.1)
activejob (= 6.0.3.1)
activerecord (= 6.0.3.1)
activestorage (= 6.0.3.1)
activesupport (= 6.0.3.1)
mail (>= 2.7.1)
actionmailer (6.0.3.1)
actionpack (= 6.0.3.1)
actionview (= 6.0.3.1)
activejob (= 6.0.3.1)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0)
actionpack (6.0.3.1)
actionview (= 6.0.3.1)
activesupport (= 6.0.3.1)
rack (~> 2.0, >= 2.0.8)
rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.2.0)
actiontext (6.0.3.1)
actionpack (= 6.0.3.1)
activerecord (= 6.0.3.1)
activestorage (= 6.0.3.1)
activesupport (= 6.0.3.1)
nokogiri (>= 1.8.5)
actionview (6.0.3.1)
activesupport (= 6.0.3.1)
builder (~> 3.1)
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.1, >= 1.2.0)
activejob (6.0.3.1)
activesupport (= 6.0.3.1)
globalid (>= 0.3.6)
activemodel (6.0.3.1)
activesupport (= 6.0.3.1)
activerecord (6.0.3.1)
activemodel (= 6.0.3.1)
activesupport (= 6.0.3.1)
activerecord-import (1.0.4)
activerecord (>= 3.2)
activerecord-postgis-adapter (6.0.0)
activerecord (~> 6.0)
rgeo-activerecord (~> 6.0)
activestorage (6.0.3.1)
actionpack (= 6.0.3.1)
activejob (= 6.0.3.1)
activerecord (= 6.0.3.1)
marcel (~> 0.3.1)
activesupport (6.0.3.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
zeitwerk (~> 2.2, >= 2.2.2)
addressable (2.7.0)
public_suffix (>= 2.0.2, < 5.0)
adler32 (0.0.2)
afm (0.2.2)
akami (1.3.1)
gyoku (>= 0.4.0)
nokogiri
ast (2.4.0)
attr_encrypted (3.1.0)
encryptor (~> 3.0.0)
attr_extras (6.2.3)
awesome_print (1.8.0)
awrence (1.1.1)
aws-partitions (1.79.0)
aws-sdk-core (3.19.0)
aws-partitions (~> 1.0)
aws-sigv4 (~> 1.0)
jmespath (~> 1.0)
aws-sdk-kms (1.5.0)
aws-sdk-core (~> 3)
aws-sigv4 (~> 1.0)
aws-sdk-s3 (1.9.0)
aws-sdk-core (~> 3)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.0)
aws-sdk-sns (1.1.0)
aws-sdk-core (~> 3)
aws-sigv4 (~> 1.0)
aws-sigv4 (1.0.2)
axiom-types (0.1.1)
descendants_tracker (~> 0.0.4)
ice_nine (~> 0.11.0)
thread_safe (~> 0.3, >= 0.3.1)
benchmark-ips (2.8.2)
bindex (0.8.1)
brakeman (4.8.2)
breakers (0.3.0)
faraday (>= 0.7.4, < 0.18)
multi_json (~> 1.0)
builder (3.2.4)
bundler-audit (0.6.1)
bundler (>= 1.2.0, < 3)
thor (~> 0.18)
byebug (11.1.3)
carrierwave (0.11.2)
activemodel (>= 3.2.0)
activesupport (>= 3.2.0)
json (>= 1.7)
mime-types (>= 1.16)
mimemagic (>= 0.3.0)
carrierwave-aws (1.3.0)
aws-sdk-s3 (~> 1.0)
carrierwave (>= 0.7, < 2.0)
case_transform (0.2)
activesupport
childprocess (3.0.0)
claide (1.0.3)
claide-plugins (0.9.2)
cork
nap
open4 (~> 1.3)
clam_scan (0.0.2)
cliver (0.3.2)
coderay (1.1.2)
coercible (1.0.0)
descendants_tracker (~> 0.0.1)
colored2 (3.1.2)
colorize (0.8.1)
concurrent-ruby (1.1.6)
config (2.2.1)
deep_merge (~> 1.2, >= 1.2.1)
dry-validation (~> 1.0, >= 1.0.0)
connection_pool (2.2.2)
content_disposition (1.0.0)
cork (0.3.0)
colored2 (~> 3.1)
crack (0.4.3)
safe_yaml (~> 1.0.0)
crass (1.0.6)
danger (8.0.0)
claide (~> 1.0)
claide-plugins (>= 0.9.2)
colored2 (~> 3.1)
cork (~> 0.1)
faraday (>= 0.9.0, < 2.0)
faraday-http-cache (~> 2.0)
git (~> 1.7)
kramdown (~> 2.0)
kramdown-parser-gfm (~> 1.0)
no_proxy_fix
octokit (~> 4.7)
terminal-table (~> 1)
database_cleaner (1.8.5)
date_validator (0.9.0)
activemodel
activesupport
deep_merge (1.2.1)
descendants_tracker (0.0.4)
thread_safe (~> 0.3, >= 0.3.1)
diff-lcs (1.3)
docile (1.3.2)
down (4.8.1)
addressable (~> 2.5)
dry-configurable (0.9.0)
concurrent-ruby (~> 1.0)
dry-core (~> 0.4, >= 0.4.7)
dry-container (0.7.2)
concurrent-ruby (~> 1.0)
dry-configurable (~> 0.1, >= 0.1.3)
dry-core (0.4.9)
concurrent-ruby (~> 1.0)
dry-equalizer (0.3.0)
dry-inflector (0.2.0)
dry-initializer (3.0.3)
dry-logic (1.0.5)
concurrent-ruby (~> 1.0)
dry-core (~> 0.2)
dry-equalizer (~> 0.2)
dry-schema (1.4.3)
concurrent-ruby (~> 1.0)
dry-configurable (~> 0.8, >= 0.8.3)
dry-core (~> 0.4)
dry-equalizer (~> 0.2)
dry-initializer (~> 3.0)
dry-logic (~> 1.0)
dry-types (~> 1.2)
dry-struct (1.2.0)
dry-core (~> 0.4, >= 0.4.3)
dry-equalizer (~> 0.3)
dry-types (~> 1.0)
ice_nine (~> 0.11)
dry-types (1.2.2)
concurrent-ruby (~> 1.0)
dry-container (~> 0.3)
dry-core (~> 0.4, >= 0.4.4)
dry-equalizer (~> 0.3)
dry-inflector (~> 0.1, >= 0.1.2)
dry-logic (~> 1.0, >= 1.0.2)
dry-validation (1.4.1)
concurrent-ruby (~> 1.0)
dry-container (~> 0.7, >= 0.7.1)
dry-core (~> 0.4)
dry-equalizer (~> 0.2)
dry-initializer (~> 3.0)
dry-schema (~> 1.0, >= 1.4.3)
e2mmap (0.1.0)
ecma-re-validator (0.2.0)
regexp_parser (~> 1.2)
einhorn (0.7.4)
encryptor (3.0.0)
equalizer (0.0.11)
erubi (1.9.0)
et-orbi (1.2.4)
tzinfo
ethon (0.12.0)
ffi (>= 1.3.0)
factory_bot (5.2.0)
activesupport (>= 4.2.0)
factory_bot_rails (5.2.0)
factory_bot (~> 5.2.0)
railties (>= 4.2.0)
faker (2.11.0)
i18n (>= 1.6, < 2)
faker-medical (0.5.2)
faker
fakeredis (0.8.0)
redis (~> 4.1)
faraday (0.17.0)
multipart-post (>= 1.2, < 3)
faraday-http-cache (2.2.0)
faraday (>= 0.8)
faraday_curl (0.0.2)
faraday (>= 0.9.0)
faraday_middleware (0.13.1)
faraday (>= 0.7.4, < 1.0)
fast_jsonapi (1.5)
activesupport (>= 4.2)
fastimage (2.1.7)
ffi (1.12.2)
flipper (0.17.2)
flipper-active_record (0.17.2)
activerecord (>= 4.2, < 7)
flipper (~> 0.17.2)
flipper-active_support_cache_store (0.17.2)
activesupport (>= 4.2, < 7)
flipper (~> 0.17.2)
flipper-ui (0.17.2)
erubi (>= 1.0.0, < 2.0.0)
flipper (~> 0.17.2)
rack (>= 1.4, < 3)
rack-protection (>= 1.5.3, < 2.1.0)
foreman (0.87.1)
formatador (0.2.5)
fugit (1.3.3)
et-orbi (~> 1.1, >= 1.1.8)
raabro (~> 1.1)
fuubar (2.5.0)
rspec-core (~> 3.0)
ruby-progressbar (~> 1.4)
git (1.7.0)
rchardet (~> 1.8)
globalid (0.4.2)
activesupport (>= 4.2.0)
govdelivery-tms (2.8.4)
activesupport
faraday
faraday_middleware
mime-types
guard (2.16.2)
formatador (>= 0.2.4)
listen (>= 2.7, < 4.0)
lumberjack (>= 1.0.12, < 2.0)
nenv (~> 0.1)
notiffany (~> 0.0)
pry (>= 0.9.12)
shellany (~> 0.0)
thor (>= 0.18.1)
guard-compat (1.2.1)
guard-rspec (4.7.3)
guard (~> 2.1)
guard-compat (~> 1.1)
rspec (>= 2.99.0, < 4.0)
guard-rubocop (1.3.0)
guard (~> 2.0)
rubocop (~> 0.20)
gyoku (1.3.1)
builder (>= 2.1.2)
hana (1.3.5)
hashdiff (1.0.1)
hashery (2.1.2)
hashie (3.6.0)
holidays (8.1.0)
httpclient (2.8.3)
httpi (2.4.4)
rack
socksify
i18n (1.8.2)
concurrent-ruby (~> 1.0)
ice_nine (0.11.2)
iconv (1.0.8)
iniparse (1.5.0)
iso_country_codes (0.7.8)
jmespath (1.4.0)
json (2.3.0)
json-schema (2.8.1)
addressable (>= 2.4)
json_schemer (0.2.8)
ecma-re-validator (~> 0.2)
hana (~> 1.3)
regexp_parser (~> 1.5)
uri_template (~> 0.7)
jsonapi (0.1.1.beta6)
jsonapi-parser (= 0.1.1.beta3)
jsonapi-renderer (= 0.1.1.beta1)
jsonapi-parser (0.1.1.beta3)
jsonapi-renderer (0.1.1.beta1)
jwt (2.2.1)
kramdown (2.2.1)
rexml
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
levenshtein-ffi (1.1.0)
ffi (~> 1.9)
liquid (4.0.3)
listen (3.2.1)
rb-fsevent (~> 0.10, >= 0.10.3)
rb-inotify (~> 0.9, >= 0.9.10)
loofah (2.5.0)
crass (~> 1.0.2)
nokogiri (>= 1.5.9)
lumberjack (1.2.4)
mail (2.7.1)
mini_mime (>= 0.1.1)
marcel (0.3.3)
mimemagic (~> 0.3.2)
memoist (0.16.2)
method_source (1.0.0)
mime-types (3.3)
mime-types-data (~> 3.2015)
mime-types-data (3.2019.1009)
mimemagic (0.3.5)
mini_magick (4.10.1)
mini_mime (1.0.2)
mini_portile2 (2.4.0)
minitest (5.14.1)
multi_json (1.14.1)
multipart-post (2.1.1)
nap (1.1.0)
nenv (0.3.0)
net-sftp (2.1.2)
net-ssh (>= 2.6.5)
net-ssh (4.1.0)
newrelic_rpm (6.10.0.364)
nio4r (2.5.2)
no_proxy_fix (0.1.2)
nokogiri (1.10.9)
mini_portile2 (~> 2.4.0)
nori (2.6.0)
notiffany (0.1.3)
nenv (~> 0.1)
shellany (~> 0.0)
octokit (4.18.0)
faraday (>= 0.9)
sawyer (~> 0.8.0, >= 0.5.3)
oj (3.9.0)
olive_branch (3.0.0)
multi_json
oj
rails (>= 4.0)
open4 (1.3.4)
operating_hours (0.1.0)
origami (2.1.0)
colorize (~> 0.7)
overcommit (0.53.0)
childprocess (>= 0.6.3, < 4)
iniparse (~> 1.4)
ox (2.13.2)
paper_trail (10.3.1)
activerecord (>= 4.2)
request_store (~> 1.1)
parallel (1.19.1)
parser (2.7.1.2)
ast (~> 2.4.0)
patience_diff (1.1.0)
trollop (~> 1.16)
pdf-core (0.7.0)
pdf-forms (1.2.0)
cliver (~> 0.3.2)
safe_shell (>= 1.0.3, < 2.0)
pdf-inspector (1.3.0)
pdf-reader (>= 1.0, < 3.0.a)
pdf-reader (2.4.0)
Ascii85 (~> 1.0.0)
afm (~> 0.2.1)
hashery (~> 2.0)
ruby-rc4
ttfunk
pg (1.2.3)
prawn (2.2.2)
pdf-core (~> 0.7.0)
ttfunk (~> 1.5)
pry (0.13.0)
coderay (~> 1.1)
method_source (~> 1.0)
pry-byebug (3.9.0)
byebug (~> 11.0)
pry (~> 0.13.0)
public_suffix (4.0.5)
puma (4.3.3)
nio4r (~> 2.0)
puma-plugin-statsd (0.1.0)
json
puma (>= 3.12, < 5)
pundit (1.1.0)
activesupport (>= 3.0.0)
raabro (1.1.6)
rack (2.0.9)
rack-attack (6.2.2)
rack (>= 1.0, < 3)
rack-cors (1.1.1)
rack (>= 2.0.0)
rack-protection (2.0.8.1)
rack
rack-test (1.1.0)
rack (>= 1.0, < 3)
rack-vcr (0.1.5)
vcr (>= 2.9)
rails (6.0.3.1)
actioncable (= 6.0.3.1)
actionmailbox (= 6.0.3.1)
actionmailer (= 6.0.3.1)
actionpack (= 6.0.3.1)
actiontext (= 6.0.3.1)
actionview (= 6.0.3.1)
activejob (= 6.0.3.1)
activemodel (= 6.0.3.1)
activerecord (= 6.0.3.1)
activestorage (= 6.0.3.1)
activesupport (= 6.0.3.1)
bundler (>= 1.3.0)
railties (= 6.0.3.1)
sprockets-rails (>= 2.0.0)
rails-dom-testing (2.0.3)
activesupport (>= 4.2.0)
nokogiri (>= 1.6)
rails-html-sanitizer (1.3.0)
loofah (~> 2.3)
rails-session_cookie (0.2.2)
rails (>= 4.0)
rails_semantic_logger (4.4.0)
rails (>= 3.2)
semantic_logger (~> 4.4)
railties (6.0.3.1)
actionpack (= 6.0.3.1)
activesupport (= 6.0.3.1)
method_source
rake (>= 0.8.7)
thor (>= 0.20.3, < 2.0)
rainbow (3.0.0)
rake (13.0.1)
rb-fsevent (0.10.3)
rb-inotify (0.10.1)
ffi (~> 1.0)
rchardet (1.8.0)
redis (4.1.4)
redis-namespace (1.7.0)
redis (>= 3.0.4)
regexp_parser (1.6.0)
request_store (1.5.0)
rack (>= 1.4)
restforce (3.0.0)
faraday (>= 0.9.0, <= 1.0)
faraday_middleware (>= 0.8.8, <= 1.0)
hashie (>= 1.2.0, < 4.0)
json (>= 1.7.5)
rexml (3.2.4)
rgeo (2.0.1)
rgeo-activerecord (6.2.1)
activerecord (>= 5.0)
rgeo (>= 1.0.0)
rgeo-geojson (2.1.1)
rgeo (>= 1.0.0)
rspec (3.9.0)
rspec-core (~> 3.9.0)
rspec-expectations (~> 3.9.0)
rspec-mocks (~> 3.9.0)
rspec-core (3.9.2)
rspec-support (~> 3.9.3)
rspec-expectations (3.9.2)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-instrumentation-matcher (0.0.9)
activesupport
rspec-expectations
rspec-mocks (3.9.1)
diff-lcs (>= 1.2.0, < 2.0)
rspec-support (~> 3.9.0)
rspec-rails (4.0.1)
actionpack (>= 4.2)
activesupport (>= 4.2)
railties (>= 4.2)
rspec-core (~> 3.9)
rspec-expectations (~> 3.9)
rspec-mocks (~> 3.9)
rspec-support (~> 3.9)
rspec-support (3.9.3)
rspec_junit_formatter (0.4.1)
rspec-core (>= 2, < 4, != 2.12.0)
rubocop (0.83.0)
parallel (~> 1.10)
parser (>= 2.7.0.1)
rainbow (>= 2.2.2, < 4.0)
rexml
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 2.0)
rubocop-junit-formatter (0.1.4)
rubocop-rails (2.5.2)
activesupport
rack (>= 1.1)
rubocop (>= 0.72.0)
rubocop-rspec (1.39.0)
rubocop (>= 0.68.1)
rubocop-thread_safety (0.3.4)
rubocop (>= 0.51.0)
ruby-progressbar (1.10.1)
ruby-rc4 (0.1.5)
ruby-saml (1.11.0)
nokogiri (>= 1.5.10)
rubyzip (2.0.0)
rufus-scheduler (3.6.0)
fugit (~> 1.1, >= 1.1.6)
safe_shell (1.1.0)
safe_yaml (1.0.5)
savon (2.12.0)
akami (~> 1.2)
builder (>= 2.1.2)
gyoku (~> 1.2)
httpi (~> 2.3)
nokogiri (>= 1.8.1)
nori (~> 2.4)
wasabi (~> 3.4)
sawyer (0.8.2)
addressable (>= 2.3.5)
faraday (> 0.8, < 2.0)
script_utils (0.0.4)
seedbank (0.5.0)
rake (>= 10.0)
semantic_logger (4.5.0)
concurrent-ruby (~> 1.0)
sentry-raven (2.13.0)
faraday (>= 0.7.6, < 1.0)
shellany (0.0.1)
shrine (2.19.3)
content_disposition (~> 1.0)
down (~> 4.1)
shrine-memory (0.2.2)
down
shrine (~> 2.0)
sidekiq (5.2.8)
connection_pool (~> 2.2, >= 2.2.2)
rack (< 2.1.0)
rack-protection (>= 1.5.0)
redis (>= 3.3.5, < 5)
sidekiq-ent (1.8.1)
einhorn (= 0.7.4)
sidekiq (>= 5.2.3)
sidekiq-pro (>= 4.0.4)
sidekiq-pro (5.0.0)
concurrent-ruby (>= 1.0.5)
sidekiq (>= 5.2.7)
sidekiq-scheduler (3.0.1)
e2mmap
redis (>= 3, < 5)
rufus-scheduler (~> 3.2)
sidekiq (>= 3)
thwait
tilt (>= 1.4.0)
simplecov (0.18.5)
docile (~> 1.1)
simplecov-html (~> 0.11)
simplecov-html (0.12.2)
socksify (1.7.1)
spring (2.1.0)
spring-commands-rspec (1.0.4)
spring (>= 0.9.1)
sprockets (4.0.0)
concurrent-ruby (~> 1.0)
rack (> 1, < 3)
sprockets-rails (3.2.1)
actionpack (>= 4.0)
activesupport (>= 4.0)
sprockets (>= 3.0.0)
staccato (0.5.3)
statsd-instrument (2.6.0)
super_diff (0.4.2)
attr_extras
diff-lcs
patience_diff
swagger-blocks (3.0.0)
terminal-table (1.8.0)
unicode-display_width (~> 1.1, >= 1.1.1)
thor (0.20.3)
thread_safe (0.3.6)
thwait (0.1.0)
tilt (2.0.10)
timecop (0.9.1)
trollop (1.16.2)
ttfunk (1.5.1)
typhoeus (1.3.1)
ethon (>= 0.9.0)
tzinfo (1.2.7)
thread_safe (~> 0.1)
unicode-display_width (1.7.0)
upsert (2.9.10)
uri_template (0.7.0)
utf8-cleaner (0.2.5)
activesupport
vcr (5.1.0)
virtus (1.0.5)
axiom-types (~> 0.1)
coercible (~> 1.0)
descendants_tracker (~> 0.0, >= 0.0.3)
equalizer (~> 0.0, >= 0.0.9)
wasabi (3.5.0)
httpi (~> 2.0)
nokogiri (>= 1.4.2)
web-console (3.7.0)
actionview (>= 5.0)
activemodel (>= 5.0)
bindex (>= 0.4.0)
railties (>= 5.0)
webmock (3.8.3)
addressable (>= 2.3.6)
crack (>= 0.3.2)
hashdiff (>= 0.4.0, < 2.0.0)
webrick (1.6.0)
websocket-driver (0.7.1)
websocket-extensions (>= 0.1.0)
websocket-extensions (0.1.4)
will_paginate (3.1.0)
xmldsig (0.3.2)
nokogiri
xmlenc (0.7.1)
activemodel (>= 3.0.0)
activesupport (>= 3.0.0)
nokogiri (>= 1.6.0, < 2.0.0)
xmlmapper (>= 0.7.3)
xmlmapper (0.7.3)
nokogiri (~> 1.5)
yard (0.9.25)
zeitwerk (2.3.0)
zero_downtime_migrations (0.0.7)
activerecord
PLATFORMS
ruby
DEPENDENCIES
aasm
active_model_serializers!
activerecord-import
activerecord-postgis-adapter (~> 6.0.0)
addressable
apivore!
appeals_api!
attr_encrypted (= 3.1.0)
awesome_print (~> 1.8)
awrence
aws-sdk-s3 (~> 1)
aws-sdk-sns (~> 1)
benchmark-ips
betamocks!
brakeman (~> 4.7)
breakers
bundler-audit
byebug
carrierwave (~> 0.11)
carrierwave-aws
claims_api!
clam_scan
config
connect_vbms!
danger
database_cleaner
date_validator
dry-struct
dry-types
factory_bot_rails (> 5)
faker
faker-medical
fakeredis
faraday
faraday_curl
faraday_middleware
fast_jsonapi
fastimage
flipper
flipper-active_record
flipper-active_support_cache_store
flipper-ui
foreman
fuubar
govdelivery-tms (= 2.8.4)
guard-rspec (~> 4.7)
guard-rubocop
gyoku
holidays
httpclient
ice_nine
iconv
iso_country_codes
json (>= 2.3.0)
json-schema
json_schemer
jsonapi-parser
jwt
levenshtein-ffi
lighthouse_bgs!
liquid
mail (= 2.7.1)
memoist
mini_magick (~> 4.10.1)
net-sftp
newrelic_rpm
nokogiri (~> 1.10)
oj
olive_branch
openid_auth!
operating_hours
origami
overcommit
ox
paper_trail
pdf-forms
pdf-inspector
pdf-reader
pg
prawn
pry-byebug
puma (~> 4.3.2)
puma-plugin-statsd (~> 0.1.0)
pundit
rack
rack-attack
rack-cors
rack-test
rack-vcr
rails (~> 6.0.2)
rails-session_cookie
rails_semantic_logger (~> 4.4)
rainbow
redis
redis-namespace
request_store
restforce
rgeo-geojson
rspec-instrumentation-matcher
rspec-rails
rspec_junit_formatter
rubocop
rubocop-junit-formatter
rubocop-rails
rubocop-rspec
rubocop-thread_safety
ruby-saml
rubyzip (>= 1.3.0)
savon
seedbank
sentry-raven
shrine
shrine-memory
sidekiq (~> 5.0)
sidekiq-ent!
sidekiq-pro!
sidekiq-scheduler (~> 3.0)
simplecov
socksify
spring
spring-commands-rspec
staccato
statsd-instrument (~> 2.6.0)
super_diff
swagger-blocks
timecop
typhoeus
tzinfo-data
upsert
utf8-cleaner
va_facilities!
va_forms!
vaos!
vba_documents!
vcr
veteran!
veteran_confirmation!
veteran_verification!
vets_json_schema!
virtus
web-console
webmock
webrick
will_paginate
yard
zero_downtime_migrations
RUBY VERSION
ruby 2.6.6p146
BUNDLED WITH
1.17.3