-
Notifications
You must be signed in to change notification settings - Fork 11
/
libraries.json
165 lines (165 loc) · 6.11 KB
/
libraries.json
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
{
"version": "5.13.0",
"info": "These non-gem libraries are part of a Ruby installation, can always be require directly and cannot be removed.",
"gems": [
{
"gem": "continuation",
"native": true,
"autoRequire": false,
"description": "Adds the [goto](https://idiosyncratic-ruby.com/24-goto-fail.html)-like [Kernel#callcc](https://ruby-doc.org/core/Kernel.html#method-i-callcc)",
"mriSourcePath": "ext/continuation",
"jrubySourcePath": "lib/ruby/stdlib/continuation.rb",
"rdocLink": "https://ruby-doc.org/core/Continuation.html",
"maintainer": "Koichi Sasada (ko1)",
"alternatives": {
"Concurrent Ruby": "https://github.com/ruby-concurrency/concurrent-ruby",
"Fiber": "https://ruby-doc.org/core/Fiber.html"
}
},
{
"gem": "coverage",
"native": true,
"autoRequire": false,
"description": "Measures [code coverage](https://en.wikipedia.org/wiki/Code_coverage)",
"mriSourcePath": "ext/coverage",
"jrubySourcePath": [
"lib/ruby/stdlib/coverage.rb",
"core/src/main/java/org/jruby/ext/coverage"
],
"rdocLink": "https://rubyapi.org/o/coverage",
"maintainer": "Yusuke Endoh (mame)"
},
{
"gem": "mkmf",
"native": false,
"autoRequire": false,
"description": "Generates [Makefiles](https://en.wikipedia.org/wiki/Makefile) for native [C extensions](https://github.com/ruby/ruby/blob/master/doc/extension.rdoc)",
"mriSourcePath": "lib/mkmf.rb",
"jrubySourcePath": false,
"rdocLink": "https://rubyapi.org/o/makemakefile",
"maintainer": null
},
{
"gem": "monitor",
"native": true,
"autoRequire": false,
"description": "[Monitors](https://en.wikipedia.org/wiki/Monitor_%28synchronization%29) for multi-threaded code",
"mriSourcePath": "ext/monitor",
"jrubySourcePath": [
"lib/ruby/stdlib/monitor.rb",
"core/src/main/java/org/jruby/ext/monitor"
],
"rdocLink": "https://rubyapi.org/o/monitor",
"maintainer": "Koichi Sasada (ko1)"
},
{
"gem": "objspace",
"native": true,
"autoRequire": false,
"description": "Adds more statistics methods to `ObjectSpace`. Since Ruby 3.1, it also includes the `objspace/trace` debug utility.",
"mriSourcePath": "ext/objspace",
"jrubySourcePath": "lib/ruby/stdlib/objspace.rb",
"rdocLink": "https://www.rubydoc.info/stdlib/objspace/ObjectSpace",
"maintainer": null
},
{
"gem": "pty",
"native": true,
"autoRequire": false,
"description": "Manages [pseudo terminals](https://en.wikipedia.org/wiki/Pseudo_terminal). Also includes the [IO#expect method](https://ruby-doc.org/stdlib-3.0.2/libdoc/pty/rdoc/IO.html#method-i-expect) via `require 'expect'`, which can be used to wait for a specific pattern to be read.",
"mriSourcePath": "ext/pty",
"jrubySourcePath": [
"lib/ruby/stdlib/pty.rb",
"lib/ruby/stdlib/expect.rb"
],
"rdocLink": "https://rubyapi.org/o/pty",
"maintainer": null
},
{
"gem": "rbconfig",
"native": true,
"autoRequire": false,
"description": "`RbConfig` is a [Ruby constant that contains compile time information](https://idiosyncratic-ruby.com/42-ruby-config.html)",
"mriSourcePath": [
"tool/mkconfig.rb",
"template/Makefile.in",
"ext/rbconfig/sizeof"
],
"jrubySourcePath": [
"lib/ruby/stdlib/rbconfig.rb",
"lib/ruby/stdlib/rbconfig",
"core/src/main/java/org/jruby/ext/rbconfig"
],
"rdocLink": null,
"maintainer": null
},
{
"gem": "ripper",
"native": true,
"autoRequire": false,
"description": "Ruby parser that creates a [symbolic expression tree](https://en.wikipedia.org/wiki/S-expression)",
"mriSourcePath": "ext/ripper",
"jrubySourcePath": [
"lib/ruby/stdlib/ripper.rb",
"lib/ruby/stdlib/ripper",
"core/src/main/java/org/jruby/ext/ripper"
],
"rdocLink": "https://rubyapi.org/o/ripper",
"maintainer": null,
"alternatives": {
"parser": "https://github.com/whitequark/parser",
"ruby_parser": "https://github.com/seattlerb/ruby_parser"
}
},
{
"gem": "socket",
"native": true,
"autoRequire": false,
"description": "Support for [unix-](https://en.wikipedia.org/wiki/Unix_domain_socket) and [network sockets](https://en.wikipedia.org/wiki/Network_socket)",
"mriSourcePath": "ext/socket",
"jrubySourcePath": [
"lib/ruby/stdlib/socket.rb",
"core/src/main/java/org/jruby/ext/socket"
],
"rdocLink": "https://rubyapi.org/o/socket",
"maintainer": ["Tanaka Akira (akr)", "API change needs matz's approval"]
},
{
"gem": "unicode_normalize",
"native": false,
"autoRequire": true,
"description": "Adds a [String#unicode_normalize](https://rubyapi.org/o/string#method-i-unicode_normalize) method which [normalizes unicode strings](https://unicode.org/reports/tr15/)",
"mriSourcePath": ["lib/unicode_normalize.rb", "lib/unicode_normalize"],
"jrubySourcePath": [
"lib/ruby/stdlib/unicode_normalize.rb",
"lib/ruby/stdlib/unicode_normalize"
],
"rdocLink": [
"https://www.rubydoc.info/stdlib/unicode_normalize/UnicodeNormalize",
"https://rubyapi.org/o/string#method-i-unicode_normalize"
],
"maintainer": "Martin J. Dürst",
"alternatives": {
"unf": "https://github.com/knu/ruby-unf"
}
},
{
"gem": "win32",
"native": true,
"autoRequire": false,
"description": "Let's you use Windows APIs, e.g. call functions in DLLs",
"mriSourcePath": "ext/win32",
"jrubySourcePath": [
"lib/ruby/stdlib/Win32API.rb",
"lib/ruby/stdlib/win32"
],
"rdocLink": "https://rubyapi.org/o/win32",
"maintainer": "NAKAMURA Usaku (usa)",
"alternatives": {
"win32-api": "https://github.com/cosmo0920/win32-api",
"FFI": "https://github.com/ffi/ffi",
"Fiddle": "https://stdgems.org/fiddle/"
}
}
]
}