forked from mruby/mruby.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmgems.yml
More file actions
2165 lines (2165 loc) · 72.3 KB
/
mgems.yml
File metadata and controls
2165 lines (2165 loc) · 72.3 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
---
- name: mruby-alarm
description: Alarm Module
author: k0u5uk3
website: https://github.com/k0u5uk3/mruby-alarm
protocol: git
repository: https://github.com/k0u5uk3/mruby-alarm.git
repooptions:
- name: mruby-allegro
description: mruby binding to Allegro 5
author: cremno
website: https://github.com/cremno/mruby-allegro
protocol: git
repository: https://github.com/cremno/mruby-allegro.git
repooptions:
- name: mruby-allocate
description: Class allocate
author: ppibburr
website: https://github.com/ppibburr/mruby-allocate
protocol: git
repository: https://github.com/ppibburr/mruby-allocate.git
repooptions:
- name: mruby-ansi-colors
description: Extends String class to use ANSI color escape codes.
author: Mav7
website: https://github.com/mruby-Forum/mruby-ansi-colors
protocol: git
repository: https://github.com/mruby-Forum/mruby-ansi-colors.git
repooptions:
- name: mruby-apr
description: Cross platform standard library components à la MRI
author: Jared Breeden
website: https://github.com/jbreeden/mruby-apr
protocol: git
repository: https://github.com/jbreeden/mruby-apr.git
repooptions:
- name: mruby-arduino
description: Arduino binding
author: kyab
website: https://github.com/kyab/mruby-arduino
protocol: git
repository: https://github.com/kyab/mruby-arduino.git
repooptions:
- name: mruby-argon2
description: The password hash Argon2, winner of PHC for mruby
author: Hendrik Beskow
website: https://github.com/Asmod4n/mruby-argon2
protocol: git
repository: https://github.com/Asmod4n/mruby-argon2.git
repooptions:
- name: mruby-argtable
description: Argtable class
author:
- Uchio Kondo
- Stewart Heitmann
website: https://github.com/udzura/mruby-argtable
protocol: git
repository: https://github.com/udzura/mruby-argtable.git
repooptions:
- name: mruby-at_exit
description: Kernel.at_exit method
author: ksss
website: https://github.com/ksss/mruby-at_exit
protocol: git
repository: https://github.com/ksss/mruby-at_exit.git
repooptions:
- name: mruby-audite
description: Portable MP3 Player based on libmp123 and portaudio
author: Matthias Georgi
website: https://github.com/georgi/mruby-audite
protocol: git
repository: https://github.com/georgi/mruby-audite.git
repooptions:
- name: mruby-augeas
description: Bindings to augeas
author: lutter
website: https://github.com/hercules-team/mruby-augeas
protocol: git
repository: https://github.com/hercules-team/mruby-augeas
repooptions:
- name: mruby-avl
description: Avl Tree implementation
author: randym
website: https://github.com/randym/mruby-avl
protocol: git
repository: https://github.com/randym/mruby-avl.git
repooptions:
- name: mruby-aws-s3
description: Client library for Amazon's (AWS) S3 REST API
author: iij
website: https://github.com/iij/mruby-aws-s3
protocol: git
repository: https://github.com/iij/mruby-aws-s3.git
repooptions:
- name: mruby-aws-sigv4
description: AWS Signature Version 4 signing library for mruby. mruby port of aws-sigv4
RubyGem.
author: Okumura Takahiro
website: https://github.com/hfm/mruby-aws-sigv4
protocol: git
repository: https://github.com/hfm/mruby-aws-sigv4.git
repooptions:
- name: mruby-b64
description: Base64 for mruby with streaming interface
author: Hendrik Beskow
website: https://github.com/Asmod4n/mruby-b64
protocol: git
repository: https://github.com/Asmod4n/mruby-b64.git
repooptions:
- name: mruby-backtrace
description: Display backtrace
author: crimsonwoods
website: https://github.com/crimsonwoods/mruby-backtrace
protocol: git
repository: https://github.com/crimsonwoods/mruby-backtrace.git
repooptions:
- name: mruby-base32
description: Base32 Encoder/Decoder
author: qtakamitsu
website: https://github.com/tk3/mruby-base32
protocol: git
repository: https://github.com/tk3/mruby-base32.git
repooptions:
- name: mruby-base58
description: Base58 Encoder/Decoder (third-party fork)
author: h2so5
website: https://github.com/sadasant/mruby-base58
protocol: git
repository: https://github.com/sadasant/mruby-base58.git
repooptions:
- name: mruby-base64
description: Base64 Encoder/Decoder
author: mattn
website: https://github.com/mattn/mruby-base64
protocol: git
repository: https://github.com/mattn/mruby-base64.git
repooptions:
- name: mruby-bcrypt
description: OpenBSD-style Blowfish-based password hashing
author: Emanuele Vicentini
website: https://github.com/baldowl/mruby-bcrypt
protocol: git
repository: https://github.com/baldowl/mruby-bcrypt.git
repooptions:
- name: mruby-bignum
description: Self-contained Bignum implementation for mruby
author: Ray Chason
website: https://github.com/chasonr/mruby-bignum
protocol: git
repository: https://github.com/chasonr/mruby-bignum.git
repooptions:
- name: mruby-bin-mirb-hostbased
description: Hostbased mirb for serial connection
author: kyab
website: https://github.com/kyab/mruby-bin-mirb-hostbased
protocol: git
repository: https://github.com/kyab/mruby-bin-mirb-hostbased.git
repooptions:
- name: mruby-bin-mruby-afl
description: mruby interpreter in american fuzzy lop persistent mode
author: Daniel Bovensiepen <daniel@bovensiepen.net>
website: https://github.com/bovi/mruby-bin-mruby-afl
protocol: git
repository: https://github.com/bovi/mruby-bin-mruby-afl.git
repooptions:
- name: mruby-bin-scite-mruby
description: A SciTE based text editor with mruby scripting extension
author: Takashi Sawanaka
website: https://github.com/sdottaka/mruby-bin-scite-mruby
protocol: git
repository: https://github.com/sdottaka/mruby-bin-scite-mruby.git
repooptions:
- name: mruby-blendish
description: Duangle OUI-blendish bindings.
author: Corey Powell
website: https://github.com/IceDragon200/mruby-blendish
protocol: git
repository: https://github.com/IceDragon200/mruby-blendish
repooptions:
- name: mruby-c-ext-helpers
description: Helpers for mruby c extensions
author: Asmod4n
website: https://github.com/Asmod4n/mruby-c-ext-helpers
protocol: git
repository: https://github.com/Asmod4n/mruby-c-ext-helpers.git
repooptions:
- name: mruby-cache
description: mruby inter process share memory cache
author: charlescui
website: https://github.com/charlescui/mruby-cache
protocol: git
repository: https://github.com/charlescui/mruby-cache.git
repooptions:
- name: mruby-capability
description: Linux Capability Binding
author: MATSUMOTO Ryosuke
website: https://github.com/matsumotory/mruby-capability
protocol: git
repository: https://github.com/matsumotory/mruby-capability.git
repooptions:
- name: mruby-capacity
description: mruby capacity interface
author: pyama86
website: https://github.com/pyama86/mruby-capacity
protocol: git
repository: https://github.com/pyama86/mruby-capacity.git
repooptions:
- name: mruby-catch-throw
description: catch and throw for mruby.
author: Corey Powell
website: https://github.com/IceDragon200/mruby-catch-throw
protocol: git
repository: https://github.com/IceDragon200/mruby-catch-throw
repooptions:
- name: mruby-cfunc
description: Interface to C functions based on libffi.
author: Yuichiro MASUI
website: https://github.com/mrbgems/mruby-cfunc
protocol: git
repository: https://github.com/mrbgems/mruby-cfunc.git
repooptions:
- name: mruby-cgroup
description: cgroup binding
author: MATSUMOTO Ryosuke
website: https://github.com/matsumotory/mruby-cgroup
protocol: git
repository: https://github.com/matsumotory/mruby-cgroup.git
repooptions:
- name: mruby-changefinder
description: Detect change point via continuous outlier and smoothing
author: MATSUMOTO Ryosuke
website: https://github.com/matsumotory/mruby-changefinder
protocol: git
repository: https://github.com/matsumotory/mruby-changefinder.git
repooptions:
- name: mruby-channel
description: named FIFO queue with multithreading
author: bggd
website: https://github.com/bggd/mruby-channel
protocol: git
repository: https://github.com/bggd/mruby-channel.git
repooptions:
- name: mruby-chipmunk2d
description: chipmunk2d bindings
author: Corey Powell
website: https://github.com/IceDragon200/mruby-chipmunk2d
protocol: git
repository: https://github.com/IceDragon200/mruby-chipmunk2d
repooptions:
- name: mruby-chrono
description: Steady and System clocks for mruby
author: Hendrik Beskow
website: https://github.com/Asmod4n/mruby-chrono
protocol: git
repository: https://github.com/Asmod4n/mruby-chrono.git
repooptions:
- name: mruby-cipher
description: OpenSSL Cipher wrapper
author: Seiei Miyagi
website: https://github.com/hanachin/mruby-cipher
protocol: git
repository: https://github.com/hanachin/mruby-cipher.git
repooptions:
- name: mruby-clang-plugin
description: clang plugin to check mruby API call mistakes.
author: Takeshi Watanabe
website: https://github.com/take-cheeze/mruby-clang-plugin
protocol: git
repository: https://github.com/take-cheeze/mruby-clang-plugin.git
repooptions:
- name: mruby-cocoa
description: Interface to Cocoa based on Objective-C Runtime and mruby-cfunc.
author: Yuichiro MASUI
website: https://github.com/mobiruby/mruby-cocoa
protocol: git
repository: https://github.com/mobiruby/mruby-cocoa.git
repooptions:
- name: mruby-concurrently
description: A concurrency framework based on fibers
author: Christopher Aue
website: https://github.com/christopheraue/m-ruby-concurrently
protocol: git
repository: https://github.com/christopheraue/m-ruby-concurrently.git
repooptions:
- name: mruby-config
description: With mruby we continuously switching between Ruby and C code. mruby-config
gives you an easy way to maintain configuration values on both sides.
author: MATSUMOTO Ryosuke
website: https://github.com/matsumotory/mruby-config
protocol: git
repository: https://github.com/matsumotory/mruby-config.git
repooptions:
- name: mruby-consul
description: Consul HTTP API Client.
author: Yohei Kawahara
website: https://github.com/inokappa/mruby-consul
protocol: git
repository: https://github.com/inokappa/mruby-consul.git
repooptions:
- name: mruby-correlation
description: Array extended for correlation coefficient
author: MATSUMOTO Ryosuke
website: https://github.com/matsumotory/mruby-correlation
protocol: git
repository: https://github.com/matsumotory/mruby-correlation.git
repooptions:
- name: mruby-crc
description: Configurable general CRC calculator for mruby
author: dearblue
website: https://github.com/dearblue/mruby-crc
protocol: git
repository: https://github.com/dearblue/mruby-crc.git
repooptions:
- name: mruby-criu
description: CRIU, Checkpoint Restart In Userspace for Linux, class
author: MATSUMOTO Ryosuke
website: https://github.com/matsumotory/mruby-criu
protocol: git
repository: https://github.com/matsumotory/mruby-criu.git
repooptions:
- name: mruby-cross-compile-on-mac-osx
description: Cross compile osx, linux or win32 binary of mruby on Mac OSX
author: MATSUMOTO Ryosuke
website: https://github.com/matsumotory/mruby-cross-compile-on-mac-osx
protocol: git
repository: https://github.com/matsumotory/mruby-cross-compile-on-mac-osx.git
repooptions:
- name: mruby-curl
description: CURL HTTP Client
author: mattn
website: https://github.com/mattn/mruby-curl
protocol: git
repository: https://github.com/mattn/mruby-curl.git
repooptions:
- name: mruby-curses
description: Curses for mruby. Links to NCurses or PDCurses.
author: Jared Breeden
website: https://github.com/jbreeden/mruby-curses
protocol: git
repository: https://github.com/jbreeden/mruby-curses.git
repooptions:
- name: mruby-czmq
description: mruby bindings for czmq.
author: Hendrik Beskow
website: https://github.com/Asmod4n/mruby-czmq
protocol: git
repository: https://github.com/Asmod4n/mruby-czmq.git
repooptions:
- name: mruby-datadog
description: Datadog API Client.
author: Yohei Kawahara
website: https://github.com/inokappa/mruby-datadog
protocol: git
repository: https://github.com/inokappa/mruby-datadog.git
repooptions:
- name: mruby-delegate
description: delegate implementation for mruby
author: dearblue
website: https://github.com/dearblue/mruby-delegate
protocol: git
repository: https://github.com/dearblue/mruby-delegate.git
repooptions:
- name: mruby-digest
description: MD5, RMD160, SHA1, SHA256, SHA384, SHA512 and HMAC Digests.
author: Internet Initiative Japan., Inc.
website: https://github.com/iij/mruby-digest
protocol: git
repository: https://github.com/iij/mruby-digest.git
repooptions:
- name: mruby-dir
description: Dir Class
author: Internet Initiative Japan., Inc.
website: https://github.com/iij/mruby-dir
protocol: git
repository: https://github.com/iij/mruby-dir.git
repooptions:
- name: mruby-dir-glob
description: File.fnmatch() & Dir.glob()
author: Alexander Gromnitsky
website: https://github.com/gromnitsky/mruby-dir-glob.git
protocol: git
repository: https://github.com/gromnitsky/mruby-dir-glob.git
repooptions:
- name: mruby-discount
description: HTML generator from Markdown using discount
author: MATSUMOTO Ryosuke
website: https://github.com/matsumotory/mruby-discount
protocol: git
repository: https://github.com/matsumotory/mruby-discount.git
repooptions:
- name: mruby-disque
description: Disque client class
author: MATSUMOTO Ryosuke
website: https://github.com/matsumotory/mruby-disque
protocol: git
repository: https://github.com/matsumotory/mruby-disque.git
repooptions:
- name: mruby-dll
description: DLL Windows Support
author: mattn
website: https://github.com/mattn/mruby-dll
protocol: git
repository: https://github.com/mattn/mruby-dll.git
repooptions:
- name: mruby-eject
description: Eject CD-ROM
author: mattn
website: https://github.com/mattn/mruby-eject
protocol: git
repository: https://github.com/mattn/mruby-eject.git
repooptions:
- name: mruby-env
description: ENV class implementation
author: iij
website: https://github.com/iij/mruby-env
protocol: git
repository: https://github.com/iij/mruby-env.git
repooptions:
- name: mruby-erb
description: Port of CRuby's ERB
author: Jared Breeden
website: https://github.com/jbreeden/mruby-erb
protocol: git
repository: https://github.com/jbreeden/mruby-erb.git
repooptions:
- name: mruby-errno
description: Errno module
author: iij
website: https://github.com/iij/mruby-errno
protocol: git
repository: https://github.com/iij/mruby-errno.git
repooptions:
- name: mruby-esp32-gpio
description: GPIO library for ESP32 MCU
author: YAMAMOTO Masaya
website: https://github.com/mruby-esp32/mruby-esp32-gpio
protocol: git
repository: https://github.com/mruby-esp32/mruby-esp32-gpio.git
repooptions:
- name: mruby-esp32-i2c
description: I2C library for ESP32 MCU
author: YAMAMOTO Masaya
website: https://github.com/mruby-esp32/mruby-esp32-i2c
protocol: git
repository: https://github.com/mruby-esp32/mruby-esp32-i2c.git
repooptions:
- name: mruby-esp32-system
description: System library for ESP32 MCU
author: Carson McDonald
website: https://github.com/mruby-esp32/mruby-esp32-system
protocol: git
repository: https://github.com/mruby-esp32/mruby-esp32-system.git
repooptions:
- name: mruby-esp32-wifi
description: WIFI library for ESP32 MCU
author: Carson McDonald
website: https://github.com/mruby-esp32/mruby-esp32-wifi
protocol: git
repository: https://github.com/mruby-esp32/mruby-esp32-wifi.git
repooptions:
- name: mruby-etcd
description: Simple etcd API wrapper
author: Uchio Kondo
website: https://github.com/udzura/mruby-etcd
protocol: git
repository: https://github.com/udzura/mruby-etcd.git
repooptions:
- name: mruby-eventfd
description: Eventfd class
author: MATSUMOTO Ryosuke
website: https://github.com/matsumotory/mruby-eventfd
protocol: git
repository: https://github.com/matsumotory/mruby-eventfd.git
repooptions:
- name: mruby-factory
description: Factory implementation for mruby
author: OKURA Masafumi
website: https://github.com/okuramasafumi/mruby-factory
protocol: git
repository: https://github.com/okuramasafumi/mruby-factory.git
repooptions:
- name: mruby-fast-remote-check
description: FastRemoteCheck can perform port listening check at high speed using
raw socket
author: MATSUMOTO Ryosuke
website: https://github.com/matsumotory/mruby-fast-remote-check
protocol: git
repository: https://github.com/matsumotory/mruby-fast-remote-check.git
repooptions:
- name: mruby-fiberpool
description: mruby port of fiberpool
author: mattn
website: https://github.com/mattn/mruby-fiberpool
protocol: git
repository: https://github.com/mattn/mruby-fiberpool.git
repooptions:
- name: mruby-file-access
description: File access class
author: takumakume
website: https://github.com/takumakume/mruby-file-access
protocol: git
repository: https://github.com/takumakume/mruby-file-access.git
repooptions:
- name: mruby-file-fnmatch
description: File.fnmatch()
author: katzer
website: https://github.com/katzer/mruby-file-fnmatch
protocol: git
repository: https://github.com/katzer/mruby-file-fnmatch.git
repooptions:
- name: mruby-file-stat
description: File::Stat class implementation
author: ksss
website: https://github.com/ksss/mruby-file-stat
protocol: git
repository: https://github.com/ksss/mruby-file-stat.git
repooptions:
- name: mruby-filemagic
description: filemagic class implementation
author: k0u5uk3
website: https://github.com/k0u5uk3/mruby-filemagic.git
protocol: git
repository: https://github.com/k0u5uk3/mruby-filemagic.git
repooptions:
- name: mruby-float4
description: small vector classes for mruby
author: Tomasz Dabrowski
website: https://github.com/dabroz/mruby-float4
protocol: git
repository: https://github.com/dabroz/mruby-float4.git
repooptions:
- name: mruby-fltk3
description: FLTK3 GUI binding.
author: mattn
website: https://github.com/mattn/mruby-fltk3
protocol: git
repository: https://github.com/mattn/mruby-fltk3.git
repooptions:
- name: mruby-fluent-logger
description: A structured logger for Fluentd.
author: Kentaro Yoshida
website: https://github.com/y-ken/fluent-logger-mruby
protocol: git
repository: https://github.com/y-ken/fluent-logger-mruby.git
repooptions:
- name: mruby-forwardable
description: forwardable module for mruby
author: Masayoshi Takahashi
website: https://github.com/takahashim/mruby-forwardable
protocol: git
repository: https://github.com/takahashim/mruby-forwardable.git
repooptions:
- name: mruby-fsm
description: Finite State Machine.
author: Paolo Bosetti, University of Trento
website: https://github.com/UniTN-Mechatronics/mruby-fsm
protocol: git
repository: https://github.com/UniTN-Mechatronics/mruby-fsm.git
repooptions:
- name: mruby-ftp
description: FTP client library.
author: Paolo Bosetti and Matteo Ragni, University of Trento
website: https://github.com/UniTN-Mechatronics/mruby-ftp
protocol: git
repository: https://github.com/UniTN-Mechatronics/mruby-ftp.git
repooptions:
- name: mruby-gemcut
description: runtime reconfigurer for mruby gems
author: dearblue
website: https://github.com/dearblue/mruby-gemcut
protocol: git
repository: https://github.com/dearblue/mruby-gemcut.git
repooptions:
- name: mruby-geoip
description: GeoIP(City) class using GeoIPCity.dat for mruby
author: MATSUMOTO Ryosuke
website: https://github.com/matsumotory/mruby-geoip
protocol: git
repository: https://github.com/matsumotory/mruby-geoip.git
repooptions:
- name: mruby-getloadavg
description: Linux getloadavg(3) module
author: takumakume
website: https://github.com/takumakume/mruby-getloadavg
protocol: git
repository: https://github.com/takumakume/mruby-getloadavg.git
repooptions:
- name: mruby-getoptlong
description: An almost straight mruby port of Ruby's GetoptLong
author: Sergio Rubio <rubiojr@frameos.org>
website: https://github.com/rubiojr/mruby-getoptlong
protocol: git
repository: https://github.com/rubiojr/mruby-getoptlong
repooptions:
- name: mruby-getopts
description: GNU getopt for mruby
author: M&T Technology, Inc.
website: https://github.com/mttech/mruby-getopts
protocol: git
repository: https://github.com/mttech/mruby-getopts
repooptions:
- name: mruby-getpass
description: Read passwords from the command prompt
author: Hendrik Beskow
website: https://github.com/Asmod4n/mruby-getpass
protocol: git
repository: https://github.com/Asmod4n/mruby-getpass.git
repooptions:
- name: mruby-gettimeofday
description: A simple wrapper of `gettimeofday(2)` for mruby
author: mame
website: https://github.com/mame/mruby-gettimeofday
protocol: git
repository: https://github.com/mame/mruby-gettimeofday.git
repooptions:
- name: mruby-girffi
description: GObjectIntrospection bindings that dynamically bind GLib based libraries.
ie, GLib,Gtk,WebKit ...
author: ppibburr
website: https://github.com/ppibburr/mruby-girffi
protocol: git
repository: https://github.com/ppibburr/mruby-girffi.git
repooptions:
- name: mruby-girffi-docgen
description: Generates YARD documentation for bindings generated by mruby-girffi
author: ppibburr
website: https://github.com/ppibburr/mruby-girffi-docgen
protocol: git
repository: https://github.com/ppibburr/mruby-girffi-docgen.git
repooptions:
- name: mruby-gles
description: OpenGL ES 2.0 binding
author: xxuejie
website: https://github.com/xxuejie/mruby-gles
protocol: git
repository: https://github.com/xxuejie/mruby-gles.git
repooptions:
- name: mruby-glfw3
description: GLFW3 binding
author: Takeshi Watanabe
website: https://github.com/take-cheeze/mruby-glfw3
protocol: git
repository: https://github.com/take-cheeze/mruby-glfw3.git
repooptions:
- name: mruby-glib
description: Cross platform standard library components à la GLib
author: Jared Breeden
website: https://github.com/jbreeden/mruby-glib
protocol: git
repository: https://github.com/jbreeden/mruby-glib.git
repooptions:
- name: mruby-glib2
description: Bindings to GLib 2.x. uses mruby-girffi
author: ppibburr
website: https://github.com/ppibburr/mruby-glib2
protocol: git
repository: https://github.com/ppibburr/mruby-glib2.git
repooptions:
- name: mruby-gmp-bignum
description: GMP-based Bignum implementation for mruby
author: Ray Chason
website: https://github.com/chasonr/mruby-gmp-bignum
protocol: git
repository: https://github.com/chasonr/mruby-gmp-bignum.git
repooptions:
- name: mruby-gntp
description: Growl Notification Transfer Protocol
author: mattn
website: https://github.com/mattn/mruby-gntp
protocol: git
repository: https://github.com/mattn/mruby-gntp.git
repooptions:
- name: mruby-gobject
description: Bindings to GObject. uses mruby-girffi
author: ppibburr
website: https://github.com/ppibburr/mruby-gobject
protocol: git
repository: https://github.com/ppibburr/mruby-gobject.git
repooptions:
- name: mruby-gobject-introspection
description: bindings to GObjectIntrospection (libgirepository)
author: ppibburr
website: https://github.com/ppibburr/mruby-gobject-introspection
protocol: git
repository: https://github.com/ppibburr/mruby-gobject-introspection.git
repooptions:
- name: mruby-growthforecast
description: GrowthForecast client class
author: MATSUMOTO Ryosuke
website: https://github.com/matsumotory/mruby-growthforecast
protocol: git
repository: https://github.com/matsumotory/mruby-growthforecast.git
repooptions:
- name: mruby-gsl
description: Wrapper to GNU Scientific Library (GSL).
author: Paolo Bosetti, University of Trento
website: https://github.com/UniTN-Mechatronics/mruby-gsl
protocol: git
repository: https://github.com/UniTN-Mechatronics/mruby-gsl.git
repooptions:
- name: mruby-gtk2
description: Bindings to Gtk2. uses mruby-girffi
author: ppibburr
website: https://github.com/ppibburr/mruby-gtk2
protocol: git
repository: https://github.com/ppibburr/mruby-gtk2.git
repooptions:
- name: mruby-gtk3
description: Bindings to Gtk3. uses mruby-girffi
author: ppibburr
website: https://github.com/ppibburr/mruby-gtk3
protocol: git
repository: https://github.com/ppibburr/mruby-gtk3.git
repooptions:
- name: mruby-hashie
description: Collection of classes and mixins that makes hashes more powerful
author:
- Michael Bleigh
- Jerry Cheung
- Takashi Kokubun
website: https://github.com/k0kubun/mruby-hashie
protocol: git
repository: https://github.com/k0kubun/mruby-hashie.git
repooptions:
- name: mruby-heeler
description: Multi-process webserver
author: Sebastian Katzer
website: https://github.com/katzer/mruby-heeler
protocol: git
repository: https://github.com/katzer/mruby-heeler.git
repooptions:
- name: mruby-hibari
description: A Web application framework for Web servers that support mruby and
Rack-based API
author: Kentaro Kuribayashi
website: https://github.com/kentaro/mruby-hibari
protocol: git
repository: https://github.com/kentaro/mruby-hibari.git
repooptions:
- name: mruby-hiredis
description: hiredis bindings for mruby.
author: Hendrik Beskow
website: https://github.com/Asmod4n/mruby-hiredis
protocol: git
repository: https://github.com/Asmod4n/mruby-hiredis.git
repooptions:
- name: mruby-hmac
description: Digest::HMAC::hexdigest and Digest::HMAC::digest
author: scalone
website: https://github.com/scalone/mruby-hmac
protocol: git
repository: https://github.com/scalone/mruby-hmac.git
repooptions:
- name: mruby-hogun
description: convenient library to build the command line interface.
author: qtakamitsu
website: https://github.com/tk3/mruby-hogun
protocol: git
repository: https://github.com/tk3/mruby-hogun.git
repooptions:
- name: mruby-host-stats
description: library to gather stats on running system (cpu, memory, ...).
author: Julien Ammous
website: https://github.com/schmurfy/host-stats
protocol: git
repository: https://github.com/schmurfy/host-stats.git
repooptions:
- name: mruby-hs-regexp
description: Light-weight Henry Spencer's Regular Expression
author: Masamitsu MURASE
website: https://github.com/masamitsu-murase/mruby-hs-regexp
protocol: git
repository: https://github.com/masamitsu-murase/mruby-hs-regexp.git
repooptions:
- name: mruby-http
description: HTTP Parser
author: mattn
website: https://github.com/mattn/mruby-http
protocol: git
repository: https://github.com/mattn/mruby-http.git
repooptions:
- name: mruby-http2
description: HTTP2 module for mruby
author: MATSUMOTO Ryosuke
website: https://github.com/matsumotory/mruby-http2
protocol: git
repository: https://github.com/matsumotory/mruby-http2.git
repooptions:
- name: mruby-httprequest
description: create http request class
author: MATSUMOTO Ryosuke
website: https://github.com/matsumotory/mruby-httprequest
protocol: git
repository: https://github.com/matsumotory/mruby-httprequest.git
repooptions:
- name: mruby-httpsclient
description: A simple https only Client
author: Hendrik Beskow
website: https://github.com/Asmod4n/mruby-httpsclient
protocol: git
repository: https://github.com/Asmod4n/mruby-httpsclient.git
repooptions:
- name: mruby-iconv
description: libiconv interface
author: mattn
website: https://github.com/mattn/mruby-iconv
protocol: git
repository: https://github.com/mattn/mruby-iconv.git
repooptions:
- name: mruby-iijson
description: JSON parser and generator
author: iij
website: https://github.com/iij/mruby-iijson
protocol: git
repository: https://github.com/iij/mruby-iijson.git
repooptions:
- name: mruby-implerr
description: ImplementationError class
author: Kouichi Nakanishi
website: https://github.com/keizo042/mruby-implerr
protocol: git
repository: https://github.com/keizo042/mruby-implerr.git
repooptions:
- name: mruby-inotify
description: Inotify bindings
author: FlavourSys Technology GmbH
website: https://github.com/FlavourSys/mruby-inotify
protocol: git
repository: https://github.com/FlavourSys/mruby-inotify.git
repooptions:
- name: mruby-io-console
description: The implementation of io/console as CRuby.
author: ksss
website: https://github.com/ksss/mruby-io-console
protocol: git
repository: https://github.com/ksss/mruby-io-console.git
repooptions:
- name: mruby-io-copy_stream
description: IO.copy_stream method for mruby
author: ksss
website: https://github.com/ksss/mruby-io-copy_stream
protocol: git
repository: https://github.com/ksss/mruby-io-copy_stream.git
repooptions:
- name: mruby-ionice
description: Ionice class
author: takumakume
website: https://github.com/takumakume/mruby-ionice
protocol: git
repository: https://github.com/takumakume/mruby-ionice.git
repooptions:
- name: mruby-ipaddr
description: IPAddr class
author: iij
website: https://github.com/iij/mruby-ipaddr
protocol: git
repository: https://github.com/iij/mruby-ipaddr.git
repooptions:
- name: mruby-ipfilter
description: IPFilter class
author: tap1ra
website: https://github.com/pepabo/mruby-ipfilter
protocol: git
repository: https://github.com/pepabo/mruby-ipfilter.git
repooptions:
- name: mruby-ipvs
description: interface to IP Virtual Server (IPVS) for mruby
author: YOSHIKAWA Ryota
website: https://github.com/rrreeeyyy/mruby-ipvs
protocol: git
repository: https://github.com/rrreeeyyy/mruby-ipvs
repooptions: "--recursive"
- name: mruby-javascriptcore
description: bindings to an from JavaScript for JavaScriptCore from WebKitGTK
author: ppibburr
website: https://github.com/ppibburr/mruby-javascriptcore
protocol: git
repository: https://github.com/ppibburr/mruby-javascriptcore.git
repooptions:
- name: mruby-jpeg
description: JPeg library
author: Carson McDonald
website: https://github.com/carsonmcdonald/mruby-jpeg
protocol: git
repository: https://github.com/carsonmcdonald/mruby-jpeg.git
repooptions:
- name: mruby-json
description: JavaScript Object Notation
author: mattn
website: https://github.com/mattn/mruby-json
protocol: git
repository: https://github.com/mattn/mruby-json.git
repooptions:
- name: mruby-jvm
description: Utility for invoking the JVM
author: jkutner
website: https://github.com/jkutner/mruby-jvm
protocol: git
repository: https://github.com/jkutner/mruby-jvm.git
repooptions:
- name: mruby-jwt
description: A mruby implementation of JSON Web Token draft 06
author: Naoki AINOYA
website: https://github.com/prevs-io/mruby-jwt
protocol: git
repository: https://github.com/prevs-io/mruby-jwt.git
repooptions:
- name: mruby-k2hash
description: mruby binding of yahoojapan/k2hash
author: Ryo Okubo
website: https://github.com/syucream/mruby-k2hash
protocol: git
repository: https://github.com/syucream/mruby-k2hash.git
repooptions:
- name: mruby-kmp
description: KMP searching algorithm in mruby
author: santazhang
website: https://github.com/santazhang/mruby-kmp
protocol: git
repository: https://github.com/santazhang/mruby-kmp.git
repooptions:
- name: mruby-knn-detector
description: Anomaly detector based on K-Nearest Neighbor
author: tsurubee
website: https://github.com/tsurubee/mruby-knn-detector
protocol: git
repository: https://github.com/tsurubee/mruby-knn-detector.git
repooptions:
- name: mruby-leapmotion
description: Providing wrapper classes for Leap Motion SDK.
author: crimsonwoods
website: https://github.com/crimsonwoods/mruby-leapmotion
protocol: git
repository: https://github.com/crimsonwoods/mruby-leapmotion.git
repooptions:
- name: mruby-leveldb
description: mruby LevelDB binding
author: Takeshi Watanabe
website: https://github.com/take-cheeze/mruby-leveldb
protocol: git
repository: https://github.com/take-cheeze/mruby-leveldb.git
repooptions:
- name: mruby-libhydrogen
description: A lightweight, secure, easy-to-use crypto library for constrained environments.
author: Hendrik Beskow
website: https://github.com/Asmod4n/mruby-libhydrogen
protocol: git
repository: https://github.com/Asmod4n/mruby-libhydrogen.git
repooptions:
- name: mruby-libqrng
description: libQRNG interface
author: cremno
website: https://github.com/cremno/mruby-libqrng
protocol: git
repository: https://github.com/cremno/mruby-libqrng.git
repooptions:
- name: mruby-libsodium
description: mruby wrapper for libsodium.
author: Hendrik Beskow
website: https://github.com/Asmod4n/mruby-libsodium
protocol: git
repository: https://github.com/Asmod4n/mruby-libsodium.git
repooptions:
- name: mruby-limits
description: Const collection of limits.h
author: ksss
website: https://github.com/ksss/mruby-limits
protocol: git
repository: https://github.com/ksss/mruby-limits.git
repooptions:
- name: mruby-linenoise
description: linenoise for mruby, a line editing library akin to readline
author: Hendrik Beskow
website: https://github.com/Asmod4n/mruby-linenoise
protocol: git
repository: https://github.com/Asmod4n/mruby-linenoise.git
repooptions:
- name: mruby-linux-namespace
description: A mgem to utilize linux namespaces
author: Russel Hunter Yukawa / Uchio Kondo
website: https://github.com/haconiwa/mruby-linux-namespace
protocol: git
repository: https://github.com/haconiwa/mruby-linux-namespace.git
repooptions:
- name: mruby-lmdb
description: mruby wrapper for Lightning Memory-Mapped Database from Symas.
author: Hendrik Beskow
website: https://github.com/Asmod4n/mruby-lmdb
protocol: git
repository: https://github.com/Asmod4n/mruby-lmdb.git
repooptions:
- name: mruby-localmemcache
description: localmemcache binding
author: MATSUMOTO Ryosuke
website: https://github.com/matsumotory/mruby-localmemcache
protocol: git
repository: https://github.com/matsumotory/mruby-localmemcache.git
repooptions:
- name: mruby-logger
description: A simple but sophisticated logging utility