-
Notifications
You must be signed in to change notification settings - Fork 48
/
Gemfile.lock
1592 lines (1579 loc) · 39.5 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
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
GIT
remote: https://github.com/active-elastic-job/active-elastic-job.git
revision: ec51c5d9dedc4a1b47f2db41f26d5fceb251e979
ref: ec51c5d9dedc4a1b47f2db41f26d5fceb251e979
specs:
active_elastic_job (2.0.1)
aws-sdk-sqs (~> 1)
rails (>= 4.2)
GIT
remote: https://github.com/rails/rails.git
revision: d16199e507086e3d54d94253b7e1d87ead394d9f
ref: d16199e507086e3d54d94253b7e1d87ead394d9f
branch: 6-1-stable
specs:
actioncable (6.1.7.6)
actionpack (= 6.1.7.6)
activesupport (= 6.1.7.6)
nio4r (~> 2.0)
websocket-driver (>= 0.6.1)
actionmailbox (6.1.7.6)
actionpack (= 6.1.7.6)
activejob (= 6.1.7.6)
activerecord (= 6.1.7.6)
activestorage (= 6.1.7.6)
activesupport (= 6.1.7.6)
mail (>= 2.7.1)
actionmailer (6.1.7.6)
actionpack (= 6.1.7.6)
actionview (= 6.1.7.6)
activejob (= 6.1.7.6)
activesupport (= 6.1.7.6)
mail (~> 2.5, >= 2.5.4)
rails-dom-testing (~> 2.0)
actionpack (6.1.7.6)
actionview (= 6.1.7.6)
activesupport (= 6.1.7.6)
rack (~> 2.0, >= 2.0.9)
rack-test (>= 0.6.3)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.0, >= 1.2.0)
actiontext (6.1.7.6)
actionpack (= 6.1.7.6)
activerecord (= 6.1.7.6)
activestorage (= 6.1.7.6)
activesupport (= 6.1.7.6)
nokogiri (>= 1.8.5)
actionview (6.1.7.6)
activesupport (= 6.1.7.6)
builder (~> 3.1)
erubi (~> 1.4)
rails-dom-testing (~> 2.0)
rails-html-sanitizer (~> 1.1, >= 1.2.0)
activejob (6.1.7.6)
activesupport (= 6.1.7.6)
globalid (>= 0.3.6)
activemodel (6.1.7.6)
activesupport (= 6.1.7.6)
activerecord (6.1.7.6)
activemodel (= 6.1.7.6)
activesupport (= 6.1.7.6)
activestorage (6.1.7.6)
actionpack (= 6.1.7.6)
activejob (= 6.1.7.6)
activerecord (= 6.1.7.6)
activesupport (= 6.1.7.6)
marcel (~> 1.0)
mini_mime (>= 1.1.0)
rails (6.1.7.6)
actioncable (= 6.1.7.6)
actionmailbox (= 6.1.7.6)
actionmailer (= 6.1.7.6)
actionpack (= 6.1.7.6)
actiontext (= 6.1.7.6)
actionview (= 6.1.7.6)
activejob (= 6.1.7.6)
activemodel (= 6.1.7.6)
activerecord (= 6.1.7.6)
activestorage (= 6.1.7.6)
activesupport (= 6.1.7.6)
bundler (>= 1.15.0)
railties (= 6.1.7.6)
sprockets-rails (>= 2.0.0)
railties (6.1.7.6)
actionpack (= 6.1.7.6)
activesupport (= 6.1.7.6)
method_source
rake (>= 12.2)
thor (~> 1.0)
GIT
remote: https://github.com/samvera-labs/hyku_knapsack.git
revision: 5a7c54cace96881a3963ab2fd881ca6ea3f57372
branch: required_for_knapsack_instances
specs:
hyku_knapsack (0.0.1)
rails (>= 5.2.0)
GIT
remote: https://github.com/samvera-labs/hyrax-doi.git
revision: 9b7ab7f8054a14385b838de1118f55ad2e0f5da8
branch: rails_hyrax_upgrade
specs:
hyrax-doi (0.2.0)
bolognese (>= 1.8.6, < 2.0)
flipflop (~> 2.3)
hyrax (>= 2.9, < 6.0)
rails (>= 5.2.4.3, < 8.0)
GIT
remote: https://github.com/samvera-labs/hyrax-iiif_av.git
revision: 4723b8fd0961fa179caf787532bd7922a44957ec
branch: rails_hyrax_upgrade
specs:
hyrax-iiif_av (0.2.0)
blacklight
hyrax (>= 3.5, < 6.0)
iiif_manifest (> 0.5)
rails (>= 5.1, < 8.0)
GIT
remote: https://github.com/samvera/hyrax.git
revision: a8ae95399e87ed6c1b5c9f32103a58c80d4c0949
branch: main
specs:
hyrax (5.0.1)
active-fedora (~> 14.0)
almond-rails (~> 0.1)
awesome_nested_set (~> 3.1)
blacklight (~> 7.29)
blacklight-gallery (~> 4.0)
breadcrumbs_on_rails (~> 3.0)
browse-everything (>= 0.16, < 2.0)
carrierwave (~> 1.0)
clipboard-rails (~> 1.5)
concurrent-ruby (~> 1.0)
connection_pool (~> 2.4)
draper (~> 4.0)
dry-container (~> 0.11)
dry-events (~> 1.0, >= 1.0.1)
dry-logic (~> 1.5)
dry-monads (~> 1.6)
dry-validation (~> 1.10)
faraday (= 2.9.1)
flipflop (~> 2.3)
flot-rails (~> 0.0.6)
font-awesome-rails (~> 4.2)
google-analytics-data (~> 0.6)
hydra-derivatives (~> 3.3)
hydra-editor (~> 6.0)
hydra-file_characterization (~> 1.1)
hydra-head (~> 12.0)
hydra-works (>= 0.16)
iiif_manifest (>= 0.3, < 2.0)
json-schema
legato (~> 0.3)
linkeddata
mailboxer (~> 0.12)
nest (~> 3.1)
noid-rails (~> 3.0)
oauth
oauth2 (~> 1.2)
openseadragon
posix-spawn
qa (~> 5.5, >= 5.5.1)
rails (~> 6.1)
rails_autolink (~> 1.1)
rdf-rdfxml
rdf-vocab (~> 3.0)
redis (~> 4.0)
redis-namespace (~> 1.5)
redlock (>= 0.1.2, < 2.0)
reform (~> 2.3)
reform-rails (~> 0.2.0)
retriable (>= 2.9, < 4.0)
sass-rails (~> 6.0)
select2-rails (~> 3.5)
signet
sprockets (= 3.7.2)
tinymce-rails (~> 5.10)
valkyrie (~> 3.3)
view_component (~> 2.74.1)
GIT
remote: https://github.com/scientist-softserv/apartment.git
revision: 9ad4b0ef2ee6debb956e86ef9e7095c8358fef5e
branch: development
specs:
apartment (2.2.1)
activerecord (>= 3.1.2, < 7.0)
parallel (>= 0.7.1)
public_suffix (>= 2)
rack (>= 1.3.6)
GIT
remote: https://github.com/scientist-softserv/iiif_print.git
revision: 7f35ea9e5b4aedc55f2a6abd1dc5181bf9ed75ff
branch: main
specs:
iiif_print (3.0.1)
blacklight_iiif_search (>= 1.0, < 3.0)
derivative-rodeo (~> 0.5)
hyrax (>= 2.5, < 6)
nokogiri (>= 1.13.2)
rdf-vocab (~> 3.0)
GIT
remote: https://github.com/scientist-softserv/willow_sword.git
revision: 64d0b818bc2a31c158baa80cc6af107715b50a94
branch: main
specs:
willow_sword (0.2.0)
bagit (~> 0.4.1)
rails (~> 6.1)
rubyzip (>= 1.0.0)
GIT
remote: https://github.com/stanhu/omniauth-cas.git
revision: 4211e6d05941b4a981f9a36b49ec166cecd0e271
ref: 4211e6d05941b4a981f9a36b49ec166cecd0e271
specs:
omniauth-cas (2.0.0)
addressable (~> 2.3)
nokogiri (~> 1.5)
omniauth (>= 1.2, < 3)
GEM
remote: https://rubygems.org/
specs:
active-fedora (14.0.1)
active-triples (>= 0.11.0, < 2.0.0)
activemodel (>= 5.1)
activesupport (>= 5.1)
deprecation
faraday (>= 1.0)
faraday-encoding (>= 0.0.5)
ldp (>= 0.7.0, < 2)
rsolr (>= 1.1.2, < 3)
ruby-progressbar (~> 1.0)
active-triples (1.2.0)
activemodel (>= 3.0.0)
activesupport (>= 3.0.0)
rdf (>= 2.0.2, < 4.0)
rdf-vocab (>= 2.0, < 4.0)
active_encode (0.8.2)
rails
sprockets (< 4)
activemodel-serializers-xml (1.0.2)
activemodel (> 5.x)
activesupport (> 5.x)
builder (~> 3.1)
activerecord-import (1.7.0)
activerecord (>= 4.2)
activerecord-nulldb-adapter (1.0.1)
activerecord (>= 5.2.0, < 7.2)
activesupport (6.1.7.6)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 1.6, < 2)
minitest (>= 5.1)
tzinfo (~> 2.0)
zeitwerk (~> 2.3)
addressable (2.8.1)
public_suffix (>= 2.0.2, < 6.0)
aes_key_wrap (1.1.0)
almond-rails (0.3.0)
rails (>= 4.2)
ast (2.4.2)
attr_required (1.0.1)
autoprefixer-rails (10.4.16.0)
execjs (~> 2)
awesome_nested_set (3.6.0)
activerecord (>= 4.0.0, < 7.2)
aws-eventstream (1.3.0)
aws-partitions (1.865.0)
aws-sdk-core (3.190.0)
aws-eventstream (~> 1, >= 1.3.0)
aws-partitions (~> 1, >= 1.651.0)
aws-sigv4 (~> 1.8)
jmespath (~> 1, >= 1.6.1)
aws-sdk-kms (1.74.0)
aws-sdk-core (~> 3, >= 3.188.0)
aws-sigv4 (~> 1.1)
aws-sdk-s3 (1.141.0)
aws-sdk-core (~> 3, >= 3.189.0)
aws-sdk-kms (~> 1)
aws-sigv4 (~> 1.8)
aws-sdk-sqs (1.69.0)
aws-sdk-core (~> 3, >= 3.188.0)
aws-sigv4 (~> 1.1)
aws-sigv4 (1.8.0)
aws-eventstream (~> 1, >= 1.0.2)
babel-source (5.8.35)
babel-transpiler (0.7.0)
babel-source (>= 4.0, < 6)
execjs (~> 2.0)
backport (1.2.0)
bagit (0.4.6)
docopt (~> 0.5.0)
validatable (~> 1.6)
base64 (0.2.0)
bcp47 (0.3.3)
i18n
bcp47_spec (0.2.1)
bcrypt (3.1.20)
benchmark (0.3.0)
benchmark_methods (0.7)
better_html (2.0.2)
actionview (>= 6.0)
activesupport (>= 6.0)
ast (~> 2.0)
erubi (~> 1.4)
parser (>= 2.4)
smart_properties
bibtex-ruby (6.0.0)
latex-decode (~> 0.0)
bigdecimal (3.1.5)
bindata (2.4.15)
bindex (0.8.1)
bixby (5.0.0)
rubocop (>= 1, < 2)
rubocop-ast
rubocop-performance
rubocop-rails
rubocop-rspec
blacklight (7.35.0)
deprecation
globalid
hashdiff
i18n (>= 1.7.0)
jbuilder (~> 2.7)
kaminari (>= 0.15)
ostruct (>= 0.3.2)
rails (>= 5.1, < 7.2)
view_component (>= 2.66, < 4)
blacklight-access_controls (6.0.1)
blacklight (> 6.0, < 8)
cancancan (>= 1.8)
deprecation (~> 1.0)
blacklight-gallery (4.4.0)
blacklight (>= 7.17, < 9)
rails (>= 6.1, < 8)
blacklight_advanced_search (7.0.0)
blacklight (~> 7.0)
parslet
blacklight_iiif_search (2.1.0)
blacklight (~> 7.0)
ffi (~> 1.16.3)
iiif-presentation
rails (>= 6, < 7.3)
blacklight_oai_provider (7.0.2)
blacklight (~> 7.0)
oai (~> 1.2)
rexml
blacklight_range_limit (8.4.0)
blacklight (>= 7.25.2, < 9)
deprecation
view_component (>= 2.54, < 4)
bolognese (1.11.5)
activesupport (>= 4.2.5)
benchmark_methods (~> 0.7)
bibtex-ruby (>= 5.1.0)
builder (~> 3.2, >= 3.2.2)
citeproc-ruby (~> 1.1, >= 1.1.12)
colorize (~> 0.8.1)
concurrent-ruby (~> 1.1, >= 1.1.5)
csl-styles (~> 1.0, >= 1.0.1.10)
edtf (~> 3.0, >= 3.0.4)
gender_detector (~> 0.1.2)
iso8601 (~> 0.9.1)
json-ld-preloaded (~> 3.1, >= 3.1.3)
jsonlint (~> 0.3.0)
loofah (~> 2.0, >= 2.0.3)
maremma (>= 4.9.4, < 5)
namae (~> 1.0)
nokogiri (>= 1.13.2, < 1.14)
oj (~> 3.10)
oj_mimic_json (~> 1.0, >= 1.0.1)
postrank-uri (~> 1.0, >= 1.0.18)
rdf-rdfxml (~> 3.1)
rdf-turtle (~> 3.1)
thor (>= 0.19)
bootstrap (4.6.2.1)
autoprefixer-rails (>= 9.1.0)
popper_js (>= 1.16.1, < 2)
bootstrap-datepicker-rails (1.10.0.1)
railties (>= 3.0)
breadcrumbs_on_rails (3.0.1)
browse-everything (1.3.0)
addressable (~> 2.5)
aws-sdk-s3
dropbox_api (>= 0.1.20)
google-apis-drive_v3
googleauth (>= 0.6.6, < 2.0)
rails (>= 4.2, < 7.2)
ruby-box
signet (~> 0.8)
typhoeus
builder (3.2.4)
bulkrax (8.2.0)
bagit (~> 0.4.6)
coderay
denormalize_fields
iso8601 (~> 0.9.0)
kaminari
language_list (~> 1.2, >= 1.2.1)
libxml-ruby (~> 3.2.4)
loofah (>= 2.2.3)
marcel
oai (>= 0.4, < 2.x)
rack (>= 2.0.6)
rails (>= 5.1.6)
rdf (>= 2.0.2, < 4.0)
rubyzip
simple_form
byebug (11.1.3)
cancancan (3.6.1)
capybara (3.39.2)
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)
capybara-screenshot (1.0.26)
capybara (>= 1.0, < 4)
launchy
carrierwave (1.3.4)
activemodel (>= 4.0.0)
activesupport (>= 4.0.0)
mime-types (>= 1.16)
ssrf_filter (~> 1.0, < 1.1.0)
carrierwave-aws (1.4.0)
aws-sdk-s3 (~> 1.0)
carrierwave (>= 0.7, < 2.1)
citeproc (1.0.10)
namae (~> 1.0)
citeproc-ruby (1.1.14)
citeproc (~> 1.0, >= 1.0.9)
csl (~> 1.6)
clipboard-rails (1.7.1)
cocoon (1.2.15)
codemirror-rails (0.3.1)
coderay (1.1.3)
coffee-rails (4.2.2)
coffee-script (>= 2.2.0)
railties (>= 4.0.0)
coffee-script (2.4.1)
coffee-script-source
execjs
coffee-script-source (1.12.2)
colorize (0.8.1)
concurrent-ruby (1.3.4)
connection_pool (2.4.1)
content_disposition (1.0.0)
crack (0.4.5)
rexml
crass (1.0.6)
csl (1.6.0)
namae (~> 1.0)
rexml
csl-styles (1.0.1.11)
csl (~> 1.0)
csv (3.3.0)
database_cleaner (2.0.2)
database_cleaner-active_record (>= 2, < 3)
database_cleaner-active_record (2.1.0)
activerecord (>= 5.a)
database_cleaner-core (~> 2.0.0)
database_cleaner-core (2.0.1)
date (3.3.4)
declarative (0.0.20)
denormalize_fields (1.3.0)
activerecord (>= 4.1.14, < 8.0.0)
deprecation (1.1.0)
activesupport
derivative-rodeo (0.5.3)
activesupport (>= 5)
aws-sdk-s3
aws-sdk-sqs
httparty
marcel
mime-types
mini_magick
nokogiri
devise (4.9.3)
bcrypt (~> 3.0)
orm_adapter (~> 0.1)
railties (>= 4.1.0)
responders
warden (~> 1.2.3)
devise-guests (0.8.2)
devise
devise-i18n (1.12.0)
devise (>= 4.9.0)
devise_invitable (2.0.9)
actionmailer (>= 5.0)
devise (>= 4.6)
diff-lcs (1.5.0)
disposable (0.6.3)
declarative (>= 0.0.9, < 1.0.0)
representable (>= 3.1.1, < 4)
docile (1.4.0)
docopt (0.5.0)
down (5.4.2)
addressable (~> 2.8)
draper (4.0.2)
actionpack (>= 5.0)
activemodel (>= 5.0)
activemodel-serializers-xml (>= 1.0)
activesupport (>= 5.0)
request_store (>= 1.0)
ruby2_keywords
dropbox_api (0.1.21)
faraday (< 3.0)
oauth2 (~> 1.1)
dry-configurable (1.1.0)
dry-core (~> 1.0, < 2)
zeitwerk (~> 2.6)
dry-container (0.11.0)
concurrent-ruby (~> 1.0)
dry-core (1.0.1)
concurrent-ruby (~> 1.0)
zeitwerk (~> 2.6)
dry-events (1.0.1)
concurrent-ruby (~> 1.0)
dry-core (~> 1.0, < 2)
dry-inflector (1.0.0)
dry-initializer (3.1.1)
dry-logic (1.5.0)
concurrent-ruby (~> 1.0)
dry-core (~> 1.0, < 2)
zeitwerk (~> 2.6)
dry-monads (1.6.0)
concurrent-ruby (~> 1.0)
dry-core (~> 1.0, < 2)
zeitwerk (~> 2.6)
dry-schema (1.13.4)
concurrent-ruby (~> 1.0)
dry-configurable (~> 1.0, >= 1.0.1)
dry-core (~> 1.0, < 2)
dry-initializer (~> 3.0)
dry-logic (>= 1.4, < 2)
dry-types (>= 1.7, < 2)
zeitwerk (~> 2.6)
dry-struct (1.6.0)
dry-core (~> 1.0, < 2)
dry-types (>= 1.7, < 2)
ice_nine (~> 0.11)
zeitwerk (~> 2.6)
dry-types (1.7.1)
concurrent-ruby (~> 1.0)
dry-core (~> 1.0)
dry-inflector (~> 1.0)
dry-logic (~> 1.4)
zeitwerk (~> 2.6)
dry-validation (1.10.0)
concurrent-ruby (~> 1.0)
dry-core (~> 1.0, < 2)
dry-initializer (~> 3.0)
dry-schema (>= 1.12, < 2)
zeitwerk (~> 2.6)
e2mmap (0.1.0)
easy_translate (0.5.1)
thread
thread_safe
ebnf (2.4.0)
htmlentities (~> 4.3)
rdf (~> 3.3)
scanf (~> 1.0)
sxp (~> 1.3)
unicode-types (~> 1.8)
edtf (3.1.1)
activesupport (>= 3.0, < 8.0)
erubi (1.12.0)
et-orbi (1.2.11)
tzinfo
ethon (0.16.0)
ffi (>= 1.15.0)
excon (0.71.1)
execjs (2.9.1)
factory_bot (6.4.6)
activesupport (>= 5.0.0)
factory_bot_rails (6.4.2)
factory_bot (~> 6.4)
railties (>= 5.0.0)
faraday (2.9.1)
faraday-net_http (>= 2.0, < 3.2)
faraday-encoding (0.0.5)
faraday
faraday-excon (2.1.0)
excon (>= 0.27.4)
faraday (~> 2.0)
faraday-follow_redirects (0.3.0)
faraday (>= 1, < 3)
faraday-gzip (0.1.0)
faraday (>= 1.0)
zlib (~> 2.1)
faraday-multipart (1.0.4)
multipart-post (~> 2)
faraday-net_http (3.0.2)
faraday-retry (2.2.1)
faraday (~> 2.0)
fcrepo_wrapper (0.9.0)
ruby-progressbar
ffi (1.16.3)
flipflop (2.7.1)
activesupport (>= 4.0)
terminal-table (>= 1.8)
flot-rails (0.0.7)
jquery-rails
flutie (2.2.0)
font-awesome-rails (4.7.0.8)
railties (>= 3.2, < 8.0)
fugit (1.11.1)
et-orbi (~> 1, >= 1.2.11)
raabro (~> 1.4)
gapic-common (0.21.1)
faraday (>= 1.9, < 3.a)
faraday-retry (>= 1.0, < 3.a)
google-protobuf (~> 3.18)
googleapis-common-protos (>= 1.4.0, < 2.a)
googleapis-common-protos-types (>= 1.11.0, < 2.a)
googleauth (~> 1.9)
grpc (~> 1.59)
gender_detector (0.1.2)
unicode_utils (>= 1.3.0)
geo_coord (0.2.0)
geocoder (1.8.3)
base64 (>= 0.1.0)
csv (>= 3.0.0)
globalid (1.2.1)
activesupport (>= 6.1)
good_job (2.99.0)
activejob (>= 5.2.0)
activerecord (>= 5.2.0)
concurrent-ruby (>= 1.0.2)
fugit (>= 1.1)
railties (>= 5.2.0)
thor (>= 0.14.1)
webrick (>= 1.3)
zeitwerk (>= 2.0)
google-analytics-data (0.6.0)
google-analytics-data-v1beta (>= 0.11, < 2.a)
google-cloud-core (~> 1.6)
google-analytics-data-v1beta (0.12.0)
gapic-common (>= 0.21.1, < 2.a)
google-cloud-errors (~> 1.0)
google-apis-core (0.15.0)
addressable (~> 2.5, >= 2.5.1)
googleauth (~> 1.9)
httpclient (>= 2.8.1, < 3.a)
mini_mime (~> 1.0)
representable (~> 3.0)
retriable (>= 2.0, < 4.a)
rexml
google-apis-drive_v3 (0.51.0)
google-apis-core (>= 0.15.0, < 2.a)
google-cloud-core (1.7.0)
google-cloud-env (>= 1.0, < 3.a)
google-cloud-errors (~> 1.0)
google-cloud-env (2.1.1)
faraday (>= 1.0, < 3.a)
google-cloud-errors (1.4.0)
google-protobuf (3.25.5)
googleapis-common-protos (1.5.0)
google-protobuf (~> 3.18)
googleapis-common-protos-types (~> 1.7)
grpc (~> 1.41)
googleapis-common-protos-types (1.14.0)
google-protobuf (~> 3.18)
googleauth (1.9.2)
faraday (>= 1.0, < 3.a)
google-cloud-env (~> 2.1)
jwt (>= 1.4, < 3.0)
multi_json (~> 1.11)
os (>= 0.9, < 2.0)
signet (>= 0.16, < 2.a)
grpc (1.64.0)
google-protobuf (~> 3.25)
googleapis-common-protos-types (~> 1.0)
haml (6.3.0)
temple (>= 0.8.2)
thor
tilt
hamster (3.0.0)
concurrent-ruby (~> 1.0)
hashdiff (1.0.1)
hashie (5.0.0)
highline (2.1.0)
hiredis (0.6.3)
htmlentities (4.3.4)
http_logger (0.7.0)
httparty (0.22.0)
csv
mini_mime (>= 1.0.0)
multi_xml (>= 0.5.2)
httpclient (2.8.3)
hydra-access-controls (12.1.0)
active-fedora (>= 10.0.0)
activesupport (>= 5.2, < 7.1)
blacklight-access_controls (~> 6.0)
cancancan (>= 1.8, < 4)
deprecation (~> 1.0)
hydra-core (12.1.0)
hydra-access-controls (= 12.1.0)
railties (>= 5.2, < 7.1)
hydra-derivatives (3.8.0)
active-fedora (>= 14.0)
active-triples (>= 1.2)
active_encode (~> 0.1)
activesupport (>= 4.0, < 7.1)
addressable (~> 2.5)
deprecation
mime-types (> 2.0, < 4.0)
mini_magick (>= 3.2, < 5)
hydra-editor (6.2.0)
active-fedora (>= 9.0.0)
activerecord (>= 5.2, < 7.1)
almond-rails (~> 0.1)
cancancan
psych (~> 3.3, < 4)
rails (>= 5.2, < 7.1)
simple_form (>= 4.1.0, < 5.2)
sprockets (>= 3.7)
sprockets-es6
hydra-file_characterization (1.2.0)
activesupport (>= 3.0.0)
hydra-head (12.1.0)
hydra-access-controls (= 12.1.0)
hydra-core (= 12.1.0)
rails (>= 5.2, < 7.1)
hydra-pcdm (1.3.0)
active-fedora (>= 10, < 15)
mime-types (>= 1)
rdf-vocab
hydra-works (2.1.0)
activesupport (>= 5.2, < 7.1)
hydra-derivatives (~> 3.6)
hydra-file_characterization (~> 1.0)
hydra-pcdm (>= 0.9)
i18n (1.14.1)
concurrent-ruby (~> 1.0)
i18n-debug (1.2.0)
i18n (< 2)
i18n-tasks (1.0.12)
activesupport (>= 4.0.2)
ast (>= 2.1.0)
better_html (>= 1.0, < 3.0)
erubi
highline (>= 2.0.0)
i18n
parser (>= 2.2.3.0)
rails-i18n
rainbow (>= 2.2.2, < 4.0)
terminal-table (>= 1.5.1)
ice_nine (0.11.2)
iiif-image-api (0.2.0)
activesupport
iiif-presentation (1.3.0)
activesupport (>= 3.2.18)
faraday (~> 2.7)
geo_coord
json
iiif_manifest (1.3.1)
activesupport (>= 4)
iso-639 (0.3.6)
iso8601 (0.9.1)
jaro_winkler (1.5.6)
jbuilder (2.11.5)
actionview (>= 5.0.0)
activesupport (>= 5.0.0)
jmespath (1.6.2)
jquery-rails (4.6.0)
rails-dom-testing (>= 1, < 3)
railties (>= 4.2.0)
thor (>= 0.14, < 2.0)
json (2.7.1)
json-canonicalization (0.3.1)
json-jwt (1.16.6)
activesupport (>= 4.2)
aes_key_wrap
base64
bindata
faraday (~> 2.0)
faraday-follow_redirects
json-ld (3.2.4)
htmlentities (~> 4.3)
json-canonicalization (~> 0.3)
link_header (~> 0.0, >= 0.0.8)
multi_json (~> 1.15)
rack (>= 2.2, < 4)
rdf (~> 3.2, >= 3.2.10)
json-ld-preloaded (3.2.2)
json-ld (~> 3.2)
rdf (~> 3.2)
json-schema (4.3.0)
addressable (>= 2.8)
jsonlint (0.3.0)
oj (~> 3)
optimist (~> 3)
jwt (2.8.1)
base64
kaminari (1.2.2)
activesupport (>= 4.1.0)
kaminari-actionview (= 1.2.2)
kaminari-activerecord (= 1.2.2)
kaminari-core (= 1.2.2)
kaminari-actionview (1.2.2)
actionview
kaminari-core (= 1.2.2)
kaminari-activerecord (1.2.2)
activerecord
kaminari-core (= 1.2.2)
kaminari-core (1.2.2)
kramdown (2.4.0)
rexml
kramdown-parser-gfm (1.1.0)
kramdown (~> 2.0)
language_list (1.2.1)
language_server-protocol (3.17.0.3)
latex-decode (0.4.0)
launchy (2.5.2)
addressable (~> 2.8)
ld-patch (3.3.0)
ebnf (~> 2.4)
rdf (~> 3.3)
rdf-xsd (~> 3.3)
sparql (~> 3.3)
sxp (~> 1.3)
ldp (1.2.0)
deprecation
faraday (>= 1)
http_logger
json-ld (~> 3.2)
rdf (~> 3.2)
rdf-isomorphic
rdf-ldp
rdf-turtle
rdf-vocab (>= 0.8)
slop
ldpath (1.2.0)
nokogiri (~> 1.8)
parslet
rdf (~> 3.0)
rdf-vocab (~> 3.0)
legato (0.7.0)
multi_json
libxml-ruby (3.2.4)
link_header (0.0.8)
linkeddata (3.2.1)
json-ld (~> 3.2, >= 3.2.3)
json-ld-preloaded (~> 3.2)
ld-patch (~> 3.2)
nokogiri (~> 1.13, >= 1.13.8)
rdf (~> 3.2, >= 3.2.9)
rdf-aggregate-repo (~> 3.2, >= 3.2.1)
rdf-hamster-repo (~> 3.2)
rdf-isomorphic (~> 3.2, >= 3.2.1)
rdf-json (~> 3.2)
rdf-microdata (~> 3.2, >= 3.2.1)
rdf-n3 (~> 3.2, >= 3.2.1)
rdf-normalize (~> 0.5)
rdf-ordered-repo (~> 3.2, >= 3.2.1)
rdf-rdfa (~> 3.2)
rdf-rdfxml (~> 3.2)
rdf-reasoner (~> 0.8)
rdf-tabular (~> 3.2, >= 3.2.1)
rdf-trig (~> 3.2)
rdf-trix (~> 3.2)
rdf-turtle (~> 3.2, >= 3.2.1)
rdf-vocab (~> 3.2, >= 3.2.1)
rdf-xsd (~> 3.2, >= 3.2.1)
shacl (~> 0.2, >= 0.2.1)
shex (~> 0.7, >= 0.7.1)
sparql (~> 3.2, >= 3.2.4)
sparql-client (~> 3.2, >= 3.2.1)
yaml-ld (~> 0.0)
listen (3.0.8)
rb-fsevent (~> 0.9, >= 0.9.4)
rb-inotify (~> 0.9, >= 0.9.7)
logger (1.6.0)
lograge (0.14.0)
actionpack (>= 4)
activesupport (>= 4)
railties (>= 4)
request_store (~> 1.0)
loofah (2.22.0)
crass (~> 1.0.2)
nokogiri (>= 1.12.0)
mail (2.8.1)
mini_mime (>= 0.1.1)
net-imap
net-pop
net-smtp
mailboxer (0.15.1)
carrierwave (>= 0.5.8)
rails (>= 5.0.0)
marcel (1.0.2)
maremma (4.9.9)
activesupport (>= 4.2.5)
addressable (>= 2.3.6)
builder (~> 3.2, >= 3.2.2)
excon (~> 0.71.0)
faraday (>= 2.0)
faraday-encoding (~> 0.0.5)
faraday-excon (~> 2.1.0)
faraday-follow_redirects (~> 0.3.0)
faraday-gzip (~> 0.1.0)
faraday-multipart (~> 1.0.4)
nokogiri (>= 1.13.1, < 1.14.0)
oj (>= 2.8.3)
oj_mimic_json (~> 1.0, >= 1.0.1)
matrix (0.4.2)
method_source (1.0.0)
mime-types (3.5.1)
mime-types-data (~> 3.2015)
mime-types-data (3.2023.1205)
mini_magick (4.12.0)
mini_mime (1.1.5)
mini_portile2 (2.8.7)
minitest (5.20.0)
mods (2.4.1)
edtf
iso-639
nokogiri (>= 1.6.6)
nom-xml (~> 1.0)
multi_json (1.15.0)
multi_xml (0.6.0)
multipart-post (2.3.0)
namae (1.1.1)
negative_captcha (0.5)
actionpack
activesupport
nest (3.2.0)
redic
net-http-persistent (4.0.2)
connection_pool (~> 2.2)
net-imap (0.4.9)
date
net-protocol
net-pop (0.1.2)
net-protocol
net-protocol (0.2.2)
timeout
net-smtp (0.4.0)
net-protocol
nio4r (2.7.3)
noid (0.9.0)
noid-rails (3.1.0)
actionpack (>= 5.0.0, < 7.1)
noid (~> 0.9)
nokogiri (1.13.10)
mini_portile2 (~> 2.8.0)
racc (~> 1.4)
nom-xml (1.2.0)
i18n
nokogiri
oai (1.2.1)
builder (>= 3.1.0)
faraday (< 3)
faraday-follow_redirects (>= 0.3.0, < 2)
oauth (1.1.0)
oauth-tty (~> 1.0, >= 1.0.1)
snaky_hash (~> 2.0)
version_gem (~> 1.1)
oauth-tty (1.0.5)
version_gem (~> 1.1, >= 1.1.1)
oauth2 (1.4.11)
faraday (>= 0.17.3, < 3.0)
jwt (>= 1.0, < 3.0)
multi_json (~> 1.3)
multi_xml (~> 0.5)
rack (>= 1.2, < 4)
oj (3.16.3)
bigdecimal (>= 3.0)
oj_mimic_json (1.0.1)
okcomputer (1.18.5)
omniauth (2.1.2)
hashie (>= 3.4.6)
rack (>= 2.2.3)
rack-protection
omniauth-multi-provider (0.4.0)
omniauth
omniauth-rails_csrf_protection (1.0.1)
actionpack (>= 4.2)
omniauth (~> 2.0)
omniauth-saml (2.1.2)
omniauth (~> 2.1)
ruby-saml (~> 1.17)
omniauth_openid_connect (0.7.1)
omniauth (>= 1.9, < 3)
openid_connect (~> 2.2)
openid_connect (2.2.0)
activemodel
attr_required (>= 1.0.0)
faraday (~> 2.0)
faraday-follow_redirects
json-jwt (>= 1.16)