-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathattributions.json
More file actions
1063 lines (1063 loc) · 31.4 KB
/
attributions.json
File metadata and controls
1063 lines (1063 loc) · 31.4 KB
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
{
"generated_at": "2026-04-06T04:42:00",
"total_dependencies": 151,
"dependencies": [
{
"name": "action_text-trix",
"version": "2.1.16",
"license": "mit",
"homepage": "https://github.com/basecamp/trix",
"summary": "A rich text editor for everyday writing"
},
{
"name": "actioncable",
"version": "8.1.2",
"license": "mit",
"homepage": "https://rubyonrails.org",
"summary": "WebSocket framework for Rails."
},
{
"name": "actionmailbox",
"version": "8.1.2",
"license": "mit",
"homepage": "https://rubyonrails.org",
"summary": "Inbound email handling framework."
},
{
"name": "actionmailer",
"version": "8.1.2",
"license": "mit",
"homepage": "https://rubyonrails.org",
"summary": "Email composition and delivery framework (part of Rails)."
},
{
"name": "actionpack",
"version": "8.1.2",
"license": "mit",
"homepage": "https://rubyonrails.org",
"summary": "Web-flow and rendering framework putting the VC in MVC (part of Rails)."
},
{
"name": "actiontext",
"version": "8.1.2",
"license": "mit",
"homepage": "https://rubyonrails.org",
"summary": "Rich text framework."
},
{
"name": "actionview",
"version": "8.1.2",
"license": "mit",
"homepage": "https://rubyonrails.org",
"summary": "Rendering framework putting the V in MVC (part of Rails)."
},
{
"name": "activejob",
"version": "8.1.2",
"license": "mit",
"homepage": "https://rubyonrails.org",
"summary": "Job framework with pluggable queues."
},
{
"name": "activemodel",
"version": "8.1.2",
"license": "mit",
"homepage": "https://rubyonrails.org",
"summary": "A toolkit for building modeling frameworks (part of Rails)."
},
{
"name": "activerecord",
"version": "8.1.2",
"license": "other",
"homepage": "https://rubyonrails.org",
"summary": "Object-relational mapper framework (part of Rails)."
},
{
"name": "activestorage",
"version": "8.1.2",
"license": "mit",
"homepage": "https://rubyonrails.org",
"summary": "Local and cloud file storage framework."
},
{
"name": "activesupport",
"version": "8.1.2",
"license": "mit",
"homepage": "https://rubyonrails.org",
"summary": "A toolkit of support libraries and Ruby core extensions extracted from the Rails framework."
},
{
"name": "addressable",
"version": "2.8.9",
"license": "apache-2.0",
"homepage": "https://github.com/sporkmonger/addressable",
"summary": "URI Implementation"
},
{
"name": "android_key_attestation",
"version": "0.3.0",
"license": "mit",
"homepage": "https://github.com/bdewater/android_key_attestation",
"summary": "Android key attestation verification"
},
{
"name": "annotaterb",
"version": "4.22.0",
"license": "other",
"homepage": "https://github.com/drwl/annotaterb",
"summary": "A gem for generating annotations for Rails projects."
},
{
"name": "aws-eventstream",
"version": "1.4.0",
"license": "apache-2.0",
"homepage": "https://github.com/aws/aws-sdk-ruby",
"summary": "AWS Event Stream Library"
},
{
"name": "aws-partitions",
"version": "1.1220.0",
"license": "apache-2.0",
"homepage": "https://github.com/aws/aws-sdk-ruby",
"summary": "Provides information about AWS partitions, regions, and services."
},
{
"name": "aws-sdk-core",
"version": "3.242.0",
"license": "apache-2.0",
"homepage": "https://github.com/aws/aws-sdk-ruby",
"summary": "AWS SDK for Ruby - Core"
},
{
"name": "aws-sdk-kms",
"version": "1.122.0",
"license": "apache-2.0",
"homepage": "https://github.com/aws/aws-sdk-ruby",
"summary": "AWS SDK for Ruby - KMS"
},
{
"name": "aws-sdk-s3",
"version": "1.213.0",
"license": "apache-2.0",
"homepage": "https://github.com/aws/aws-sdk-ruby",
"summary": "AWS SDK for Ruby - Amazon S3"
},
{
"name": "aws-sigv4",
"version": "1.12.1",
"license": "apache-2.0",
"homepage": "https://github.com/aws/aws-sdk-ruby",
"summary": "AWS Signature Version 4 library."
},
{
"name": "base64",
"version": "0.3.0",
"license": "other",
"homepage": "https://github.com/ruby/base64",
"summary": "Support for encoding and decoding binary data using a Base64 representation."
},
{
"name": "bcrypt",
"version": "3.1.21",
"license": "other",
"homepage": "https://github.com/bcrypt-ruby/bcrypt-ruby",
"summary": "OpenBSD's bcrypt() password hashing algorithm."
},
{
"name": "bigdecimal",
"version": "3.3.1",
"license": "other",
"homepage": "https://github.com/ruby/bigdecimal",
"summary": "Arbitrary-precision decimal floating-point number library."
},
{
"name": "bindata",
"version": "2.5.1",
"license": "bsd-2-clause",
"homepage": "https://github.com/dmendel/bindata",
"summary": "A declarative way to read and write binary file formats"
},
{
"name": "blueprinter",
"version": "1.2.1",
"license": "mit",
"homepage": "https://github.com/procore-oss/blueprinter",
"summary": "Simple Fast Declarative Serialization Library"
},
{
"name": "builder",
"version": "3.3.0",
"license": "mit",
"homepage": "https://github.com/rails/builder",
"summary": "Builders for MarkUp."
},
{
"name": "bundler",
"version": "2.6.7",
"license": "other",
"homepage": "https://bundler.io",
"summary": "The best way to manage your application's dependencies"
},
{
"name": "cbor",
"version": "0.5.10.1",
"license": "apache-2.0",
"homepage": "http://cbor.io/",
"summary": "CBOR, Concise Binary Object Representation."
},
{
"name": "chobble-forms",
"version": "0.9.0",
"license": "other",
"homepage": "https://github.com/chobbledotcom/chobble-forms",
"summary": "Semantic Rails forms with strict i18n"
},
{
"name": "chronic",
"version": "0.10.2",
"license": "mit",
"homepage": "http://github.com/mojombo/chronic",
"summary": "Natural language date/time parsing."
},
{
"name": "chunky_png",
"version": "1.4.0",
"license": "mit",
"homepage": "https://github.com/wvanbergen/chunky_png/wiki",
"summary": "Pure ruby library for read/write, chunk-level access to PNG files"
},
{
"name": "concurrent-ruby",
"version": "1.3.6",
"license": "other",
"homepage": "http://www.concurrent-ruby.com",
"summary": "Modern concurrency tools for Ruby. Inspired by Erlang, Clojure, Scala, Haskell, F#, C#, Java, and classic concurrency patterns."
},
{
"name": "connection_pool",
"version": "3.0.2",
"license": "mit",
"homepage": "https://github.com/mperham/connection_pool",
"summary": "Generic connection pool for Ruby"
},
{
"name": "cose",
"version": "1.3.1",
"license": "mit",
"homepage": "https://github.com/cedarcode/cose-ruby",
"summary": "Ruby implementation of RFC 8152 CBOR Object Signing and Encryption (COSE)"
},
{
"name": "crass",
"version": "1.0.6",
"license": "mit",
"homepage": "https://github.com/rgrove/crass/",
"summary": "CSS parser based on the CSS Syntax Level 3 spec."
},
{
"name": "csv",
"version": "3.3.5",
"license": "other",
"homepage": "https://github.com/ruby/csv",
"summary": "CSV Reading and Writing"
},
{
"name": "date",
"version": "3.5.1",
"license": "other",
"homepage": "https://github.com/ruby/date",
"summary": "The official date library for Ruby."
},
{
"name": "docile",
"version": "1.4.1",
"license": "mit",
"homepage": "https://ms-ati.github.io/docile/",
"summary": "Docile keeps your Ruby DSLs tame and well-behaved."
},
{
"name": "dotenv",
"version": "3.2.0",
"license": "mit",
"homepage": "https://github.com/bkeepers/dotenv",
"summary": "Loads environment variables from `.env`."
},
{
"name": "dotenv-rails",
"version": "3.2.0",
"license": "mit",
"homepage": "https://github.com/bkeepers/dotenv",
"summary": "Autoload dotenv in Rails."
},
{
"name": "drb",
"version": "2.2.3",
"license": "other",
"homepage": "https://github.com/ruby/drb",
"summary": "Distributed object system for Ruby"
},
{
"name": "en14960",
"version": "0.4.2",
"license": "other",
"homepage": "https://github.com/chobbledotcom/en14960",
"summary": "BS EN 14960:2019 safety standard calculators for inflatable play equipment"
},
{
"name": "erb",
"version": "6.0.2",
"license": "other",
"homepage": "https://github.com/ruby/erb",
"summary": "An easy to use but powerful templating system for Ruby."
},
{
"name": "erubi",
"version": "1.13.1",
"license": "mit",
"homepage": "https://github.com/jeremyevans/erubi",
"summary": "Small ERB Implementation"
},
{
"name": "et-orbi",
"version": "1.4.0",
"license": "mit",
"homepage": "https://github.com/floraison/et-orbi",
"summary": "time with zones"
},
{
"name": "faraday",
"version": "2.14.1",
"license": "mit",
"homepage": "https://lostisland.github.io/faraday",
"summary": "HTTP/REST API client library."
},
{
"name": "faraday-net_http",
"version": "3.4.2",
"license": "other",
"homepage": "https://github.com/lostisland/faraday-net_http",
"summary": "Faraday adapter for Net::HTTP"
},
{
"name": "ffi",
"version": "1.17.3",
"license": "other",
"homepage": "https://github.com/ffi/ffi/wiki",
"summary": "Ruby FFI"
},
{
"name": "fugit",
"version": "1.12.1",
"license": "mit",
"homepage": "https://github.com/floraison/fugit",
"summary": "time tools for flor"
},
{
"name": "globalid",
"version": "1.3.0",
"license": "mit",
"homepage": "http://www.rubyonrails.org",
"summary": "Refer to any model with a URI: gid://app/class/id"
},
{
"name": "i18n",
"version": "1.14.8",
"license": "mit",
"homepage": "https://github.com/ruby-i18n/i18n",
"summary": "New wave Internationalization support for Ruby"
},
{
"name": "image_processing",
"version": "1.14.0",
"license": "mit",
"homepage": "https://github.com/janko/image_processing",
"summary": "High-level wrapper for processing images for the web with ImageMagick or libvips."
},
{
"name": "importmap-rails",
"version": "2.2.3",
"license": "mit",
"homepage": "https://github.com/rails/importmap-rails",
"summary": "Use ESM with importmap to manage modern JavaScript in Rails without transpiling or bundling."
},
{
"name": "io-console",
"version": "0.8.2",
"license": "other",
"homepage": "https://github.com/ruby/io-console",
"summary": "Console interface"
},
{
"name": "irb",
"version": "1.17.0",
"license": "other",
"homepage": "https://github.com/ruby/irb",
"summary": "Interactive Ruby command-line tool for REPL (Read Eval Print Loop)."
},
{
"name": "jmespath",
"version": "1.6.2",
"license": "apache-2.0",
"homepage": "http://github.com/trevorrowe/jmespath.rb",
"summary": "JMESPath - Ruby Edition"
},
{
"name": "json",
"version": "2.18.1",
"license": "other",
"homepage": "https://github.com/ruby/json",
"summary": "JSON Implementation for Ruby"
},
{
"name": "jwt",
"version": "3.1.2",
"license": "other",
"homepage": "https://github.com/jwt/ruby-jwt",
"summary": "JSON Web Token implementation in Ruby"
},
{
"name": "licensed",
"version": "5.0.4",
"license": "mit",
"homepage": "https://github.com/github/licensed",
"summary": "Extract and validate the licenses of dependencies."
},
{
"name": "licensee",
"version": "9.18.0",
"license": "mit",
"homepage": "https://github.com/benbalter/licensee",
"summary": "A Ruby Gem to detect open source project licenses"
},
{
"name": "litestream",
"version": "0.14.0",
"license": "other",
"homepage": "https://github.com/fractaledmind/litestream-ruby",
"summary": "Integrate Litestream with the RubyGems infrastructure."
},
{
"name": "logger",
"version": "1.7.0",
"license": "other",
"homepage": "https://github.com/ruby/logger",
"summary": "Provides a simple logging utility for outputting messages."
},
{
"name": "loofah",
"version": "2.25.0",
"license": "mit",
"homepage": "https://github.com/flavorjones/loofah",
"summary": "Loofah is a general library for manipulating and transforming HTML/XML documents and fragments, built on top of Nokogiri."
},
{
"name": "mail",
"version": "2.9.0",
"license": "mit",
"homepage": "https://github.com/mikel/mail",
"summary": "Mail provides a nice Ruby DSL for making, sending and reading emails."
},
{
"name": "marcel",
"version": "1.1.0",
"license": "other",
"homepage": "https://github.com/rails/marcel",
"summary": "Simple mime type detection using magic numbers, filenames, and extensions"
},
{
"name": "matrix",
"version": "0.4.3",
"license": "other",
"homepage": "https://github.com/ruby/matrix",
"summary": "An implementation of Matrix and Vector classes."
},
{
"name": "mini_magick",
"version": "5.3.1",
"license": "mit",
"homepage": "https://github.com/minimagick/minimagick",
"summary": "Manipulate images with minimal use of memory via ImageMagick"
},
{
"name": "mini_mime",
"version": "1.1.5",
"license": "mit",
"homepage": "https://github.com/discourse/mini_mime",
"summary": "A minimal mime type library"
},
{
"name": "minitest",
"version": "6.0.2",
"license": "mit",
"homepage": "https://minite.st/",
"summary": "minitest provides a complete suite of testing facilities supporting TDD, BDD, and benchmarking"
},
{
"name": "mission_control-jobs",
"version": "1.1.0",
"license": "mit",
"homepage": "https://github.com/rails/mission_control-jobs",
"summary": "Operational controls for Active Job"
},
{
"name": "net-http",
"version": "0.9.1",
"license": "other",
"homepage": "https://github.com/ruby/net-http",
"summary": "HTTP client api for Ruby."
},
{
"name": "net-imap",
"version": "0.6.3",
"license": "other",
"homepage": "https://github.com/ruby/net-imap",
"summary": "Ruby client api for Internet Message Access Protocol"
},
{
"name": "net-pop",
"version": "0.1.2",
"license": "other",
"homepage": "https://github.com/ruby/net-pop",
"summary": "Ruby client library for POP3."
},
{
"name": "net-protocol",
"version": "0.2.2",
"license": "other",
"homepage": "https://github.com/ruby/net-protocol",
"summary": "The abstract interface for net-* client."
},
{
"name": "net-smtp",
"version": "0.5.1",
"license": "other",
"homepage": "https://github.com/ruby/net-smtp",
"summary": "Simple Mail Transfer Protocol client library for Ruby."
},
{
"name": "nio4r",
"version": "2.7.5",
"license": "other",
"homepage": "https://github.com/socketry/nio4r",
"summary": "New IO for Ruby"
},
{
"name": "nokogiri",
"version": "1.19.1",
"license": "other",
"homepage": "https://nokogiri.org",
"summary": "Nokogiri (鋸) makes it easy and painless to work with XML and HTML from Ruby."
},
{
"name": "octokit",
"version": "9.2.0",
"license": "mit",
"homepage": "https://github.com/octokit/octokit.rb",
"summary": "Ruby toolkit for working with the GitHub API"
},
{
"name": "openssl",
"version": "3.3.2",
"license": "other",
"homepage": "https://github.com/ruby/openssl",
"summary": "SSL/TLS and general-purpose cryptography for Ruby"
},
{
"name": "openssl-signature_algorithm",
"version": "1.3.0",
"license": "apache-2.0",
"homepage": "https://github.com/cedarcode/openssl-signature_algorithm",
"summary": "ECDSA, EdDSA, RSA-PSS and RSA-PKCS#1 algorithms for ruby"
},
{
"name": "parallel",
"version": "1.27.0",
"license": "mit",
"homepage": "https://github.com/grosser/parallel",
"summary": "Run any kind of code in parallel processes"
},
{
"name": "pathname-common_prefix",
"version": "0.0.2",
"license": "other",
"homepage": "https://gitlab.com/KitaitiMakoto/pathname-common_prefix",
"summary": "Calculate prefix commont to some pathnames"
},
{
"name": "pdf-core",
"version": "0.10.0",
"license": "other",
"homepage": "http://prawnpdf.org/",
"summary": "Low level PDF generator."
},
{
"name": "pp",
"version": "0.6.3",
"license": "other",
"homepage": "https://github.com/ruby/pp",
"summary": "Provides a PrettyPrinter for Ruby objects"
},
{
"name": "prawn",
"version": "2.5.0",
"license": "other",
"homepage": "http://prawnpdf.org/",
"summary": "A fast and nimble PDF generator for Ruby"
},
{
"name": "prawn-table",
"version": "0.2.2",
"license": "other",
"homepage": "https://github.com/prawnpdf/prawn-table",
"summary": "Provides tables for PrawnPDF"
},
{
"name": "prettyprint",
"version": "0.2.0",
"license": "other",
"homepage": "https://github.com/ruby/prettyprint",
"summary": "Implements a pretty printing algorithm for readable structure."
},
{
"name": "prism",
"version": "1.9.0",
"license": "mit",
"homepage": "https://github.com/ruby/prism",
"summary": "Prism Ruby parser"
},
{
"name": "psych",
"version": "5.2.3",
"license": "mit",
"homepage": "https://github.com/ruby/psych",
"summary": "Psych is a YAML parser and emitter"
},
{
"name": "public_suffix",
"version": "7.0.2",
"license": "mit",
"homepage": "https://simonecarletti.com/code/publicsuffix-ruby",
"summary": "Domain name parser based on the Public Suffix List."
},
{
"name": "puma",
"version": "7.2.0",
"license": "bsd-3-clause",
"homepage": "https://puma.io",
"summary": "A Ruby/Rack web server built for parallelism."
},
{
"name": "raabro",
"version": "1.4.0",
"license": "mit",
"homepage": "https://github.com/floraison/raabro",
"summary": "a very dumb PEG parser library"
},
{
"name": "racc",
"version": "1.8.1",
"license": "other",
"homepage": "https://github.com/ruby/racc",
"summary": "Racc is an LALR(1) parser generator"
},
{
"name": "rack",
"version": "3.2.5",
"license": "mit",
"homepage": "https://github.com/rack/rack",
"summary": "A modular Ruby webserver interface."
},
{
"name": "rack-cors",
"version": "3.0.0",
"license": "mit",
"homepage": "https://github.com/cyu/rack-cors",
"summary": "Middleware for enabling Cross-Origin Resource Sharing in Rack apps"
},
{
"name": "rack-session",
"version": "2.1.1",
"license": "mit",
"homepage": "https://github.com/rack/rack-session",
"summary": "A session implementation for Rack."
},
{
"name": "rack-test",
"version": "2.2.0",
"license": "mit",
"homepage": "https://github.com/rack/rack-test",
"summary": "Simple testing API built on Rack"
},
{
"name": "rackup",
"version": "2.3.1",
"license": "mit",
"homepage": "https://github.com/rack/rackup",
"summary": "A general server command for Rack applications."
},
{
"name": "rails",
"version": "8.1.2",
"license": "mit",
"homepage": "https://rubyonrails.org",
"summary": "Full-stack web application framework."
},
{
"name": "rails-dom-testing",
"version": "2.3.0",
"license": "mit",
"homepage": "https://github.com/rails/rails-dom-testing",
"summary": "Dom and Selector assertions for Rails applications"
},
{
"name": "rails-html-sanitizer",
"version": "1.7.0",
"license": "mit",
"homepage": "https://github.com/rails/rails-html-sanitizer",
"summary": "This gem is responsible to sanitize HTML fragments in Rails applications."
},
{
"name": "railties",
"version": "8.1.2",
"license": "mit",
"homepage": "https://rubyonrails.org",
"summary": "Tools for creating, working with, and running Rails applications."
},
{
"name": "rake",
"version": "13.3.1",
"license": "mit",
"homepage": "https://github.com/ruby/rake",
"summary": "Rake is a Make-like program implemented in Ruby"
},
{
"name": "rdoc",
"version": "7.2.0",
"license": "other",
"homepage": "https://ruby.github.io/rdoc",
"summary": "RDoc produces HTML and command-line documentation for Ruby projects"
},
{
"name": "reline",
"version": "0.6.3",
"license": "other",
"homepage": "https://github.com/ruby/reline",
"summary": "Alternative GNU Readline or Editline implementation by pure Ruby."
},
{
"name": "reverse_markdown",
"version": "3.0.2",
"license": "wtfpl",
"homepage": "http://github.com/xijo/reverse_markdown",
"summary": "Convert html code into markdown."
},
{
"name": "rexml",
"version": "3.4.4",
"license": "bsd-2-clause",
"homepage": "https://github.com/ruby/rexml",
"summary": "An XML toolkit for Ruby"
},
{
"name": "rqrcode",
"version": "3.2.0",
"license": "mit",
"homepage": "https://github.com/whomwah/rqrcode",
"summary": "A library to encode QR Codes"
},
{
"name": "rqrcode_core",
"version": "2.1.0",
"license": "mit",
"homepage": "https://github.com/whomwah/rqrcode_core",
"summary": "A library to encode QR Codes"
},
{
"name": "rspec-core",
"version": "3.13.6",
"license": "mit",
"homepage": "https://rspec.info",
"summary": "rspec-core-3.13.6"
},
{
"name": "rspec-support",
"version": "3.13.7",
"license": "mit",
"homepage": "https://rspec.info",
"summary": "rspec-support-3.13.7"
},
{
"name": "rspec_junit_formatter",
"version": "0.6.0",
"license": "mit",
"homepage": "https://github.com/sj26/rspec_junit_formatter",
"summary": "RSpec JUnit XML formatter"
},
{
"name": "ruby-vips",
"version": "2.2.3",
"license": "mit",
"homepage": "http://github.com/libvips/ruby-vips",
"summary": "A fast image processing library with low memory needs"
},
{
"name": "ruby-xxHash",
"version": "0.4.0.2",
"license": "mit",
"homepage": "https://github.com/justinwsmith/ruby-xxhash",
"summary": "A pure Ruby implementation of xxhash."
},
{
"name": "rugged",
"version": "1.9.0",
"license": "mit",
"homepage": "https://github.com/libgit2/rugged",
"summary": "Rugged is a Ruby binding to the libgit2 linkable library"
},
{
"name": "safety_net_attestation",
"version": "0.5.0",
"license": "mit",
"homepage": "https://github.com/bdewater/safety_net_attestation",
"summary": "SafetyNet attestation response verification"
},
{
"name": "sass-rails",
"version": "6.0.0",
"license": "mit",
"homepage": "https://github.com/rails/sass-rails",
"summary": "Sass adapter for the Rails asset pipeline."
},
{
"name": "sassc",
"version": "2.4.0",
"license": "mit",
"homepage": "https://github.com/sass/sassc-ruby",
"summary": "Use libsass with Ruby!"
},
{
"name": "sassc-rails",
"version": "2.1.2",
"license": "mit",
"homepage": "https://github.com/sass/sassc-rails",
"summary": "Integrate SassC-Ruby into Rails."
},
{
"name": "sawyer",
"version": "0.9.3",
"license": "mit",
"homepage": "https://github.com/lostisland/sawyer",
"summary": "Secret User Agent of HTTP"
},
{
"name": "securerandom",
"version": "0.4.1",
"license": "other",
"homepage": "https://github.com/ruby/securerandom",
"summary": "Interface for secure random number generator."
},
{
"name": "sentry-rails",
"version": "6.4.1",
"license": "mit",
"homepage": "https://github.com/getsentry/sentry-ruby/tree/6.4.1/sentry-rails",
"summary": "A gem that provides Rails integration for the Sentry error logger"
},
{
"name": "sentry-ruby",
"version": "6.4.1",
"license": "mit",
"homepage": "https://github.com/getsentry/sentry-ruby/tree/6.4.1/sentry-ruby",
"summary": "A gem that provides a client interface for the Sentry error logger"
},
{
"name": "simplecov",
"version": "0.22.0",
"license": "mit",
"homepage": "https://github.com/simplecov-ruby/simplecov",
"summary": "Code coverage for Ruby"
},
{
"name": "simplecov-cobertura",
"version": "3.1.0",
"license": "apache-2.0",
"homepage": "https://github.com/jessebs/simplecov-cobertura",
"summary": "SimpleCov Cobertura Formatter"
},
{
"name": "simplecov-html",
"version": "0.13.2",
"license": "mit",
"homepage": "https://github.com/simplecov-ruby/simplecov-html",
"summary": "Default HTML formatter for SimpleCov code coverage tool for ruby 2.4+"
},
{
"name": "simplecov_json_formatter",
"version": "0.1.4",
"license": "mit",
"homepage": "https://github.com/fede-moya/simplecov_json_formatter",
"summary": "JSON formatter for SimpleCov"
},
{
"name": "solid_queue",
"version": "1.3.2",
"license": "mit",
"homepage": "https://github.com/rails/solid_queue",
"summary": "Database-backed Active Job backend."
},
{
"name": "sorbet-runtime",
"version": "0.5.12016",
"license": "apache-2.0",
"homepage": "https://sorbet.org",
"summary": "Sorbet runtime"
},
{
"name": "sprockets",
"version": "4.2.2",
"license": "mit",
"homepage": "https://github.com/rails/sprockets",
"summary": "Rack-based asset packaging system"
},
{
"name": "sprockets-rails",
"version": "3.5.2",
"license": "mit",
"homepage": "https://github.com/rails/sprockets-rails",
"summary": "Sprockets Rails integration"
},
{
"name": "sqlite3",
"version": "2.9.1",
"license": "bsd-3-clause",
"homepage": "https://github.com/sparklemotion/sqlite3-ruby",
"summary": "Ruby library to interface with the SQLite3 database engine (http://www.sqlite.org)."
},
{
"name": "stimulus-rails",
"version": "1.3.4",
"license": "mit",
"homepage": "https://stimulus.hotwired.dev",
"summary": "A modest JavaScript framework for the HTML you already have."
},
{
"name": "stringio",
"version": "3.2.0",
"license": "other",
"homepage": "https://github.com/ruby/stringio",
"summary": "Pseudo IO on String"
},
{
"name": "thor",
"version": "1.5.0",
"license": "mit",
"homepage": "https://github.com/rails/thor",
"summary": "Thor is a toolkit for building powerful command-line interfaces."
},
{
"name": "tilt",
"version": "2.7.0",
"license": "mit",
"homepage": "https://github.com/jeremyevans/tilt",
"summary": "Generic interface to multiple Ruby template engines"
},
{
"name": "timeout",
"version": "0.6.0",
"license": "other",
"homepage": "https://github.com/ruby/timeout",
"summary": "Auto-terminate potentially long-running operations in Ruby."
},
{
"name": "tomlrb",
"version": "2.0.4",
"license": "mit",
"homepage": "https://github.com/fbernier/tomlrb",
"summary": "A racc based toml parser"
},
{
"name": "tpm-key_attestation",
"version": "0.14.1",
"license": "apache-2.0",
"homepage": "https://github.com/cedarcode/tpm-key_attestation",
"summary": "TPM Key Attestation verifier"
},
{
"name": "tsort",
"version": "0.2.0",
"license": "other",
"homepage": "https://github.com/ruby/tsort",
"summary": "Topological sorting using Tarjan's algorithm"
},
{
"name": "ttfunk",
"version": "1.8.0",
"license": "other",
"homepage": "http://prawnpdf.org/",
"summary": "TrueType Font Metrics Parser"
},
{
"name": "turbo-rails",