rubybreaker 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/AUTHORS +7 -0
- data/LICENSE +26 -0
- data/README.md +403 -0
- data/Rakefile +90 -0
- data/TODO +30 -0
- data/bin/gen_stub_rubylib +64 -0
- data/bin/rubybreaker +67 -0
- data/lib/rubybreaker/context.rb +122 -0
- data/lib/rubybreaker/debug.rb +48 -0
- data/lib/rubybreaker/error.rb +59 -0
- data/lib/rubybreaker/rubylib/core.rb +2316 -0
- data/lib/rubybreaker/rubylib.rb +3 -0
- data/lib/rubybreaker/runtime/inspector.rb +57 -0
- data/lib/rubybreaker/runtime/monitor.rb +235 -0
- data/lib/rubybreaker/runtime/object_wrapper.rb +77 -0
- data/lib/rubybreaker/runtime/overrides.rb +42 -0
- data/lib/rubybreaker/runtime/pluggable.rb +57 -0
- data/lib/rubybreaker/runtime/type_placeholder.rb +27 -0
- data/lib/rubybreaker/runtime/type_system.rb +228 -0
- data/lib/rubybreaker/runtime/typesig_parser.rb +45 -0
- data/lib/rubybreaker/runtime.rb +103 -0
- data/lib/rubybreaker/test/testcase.rb +39 -0
- data/lib/rubybreaker/test.rb +1 -0
- data/lib/rubybreaker/type/type.rb +241 -0
- data/lib/rubybreaker/type/type_comparer.rb +143 -0
- data/lib/rubybreaker/type/type_grammar.treetop +285 -0
- data/lib/rubybreaker/type/type_unparser.rb +142 -0
- data/lib/rubybreaker/type.rb +2 -0
- data/lib/rubybreaker/typing/rubytype.rb +47 -0
- data/lib/rubybreaker/typing/subtyping.rb +480 -0
- data/lib/rubybreaker/typing.rb +3 -0
- data/lib/rubybreaker/util.rb +31 -0
- data/lib/rubybreaker.rb +193 -0
- data/test/integrated/tc_method_missing.rb +30 -0
- data/test/integrated/tc_simple1.rb +77 -0
- data/test/runtime/tc_obj_wrapper.rb +73 -0
- data/test/runtime/tc_typesig_parser.rb +33 -0
- data/test/ts_integrated.rb +4 -0
- data/test/ts_runtime.rb +5 -0
- data/test/ts_type.rb +5 -0
- data/test/ts_typing.rb +4 -0
- data/test/type/tc_comparer.rb +211 -0
- data/test/type/tc_parser.rb +219 -0
- data/test/type/tc_unparser.rb +276 -0
- data/test/typing/tc_rubytype.rb +63 -0
- data/test/typing/tc_typing.rb +219 -0
- data/webpage/footer.html +5 -0
- data/webpage/generated_toc.js +319 -0
- data/webpage/header.html +14 -0
- data/webpage/images/logo.png +0 -0
- data/webpage/index.html +439 -0
- data/webpage/rubybreaker.css +53 -0
- metadata +119 -0
@@ -0,0 +1,2316 @@
|
|
1
|
+
class ArgumentError
|
2
|
+
include RubyBreaker::Broken;
|
3
|
+
end # of ArgumentError
|
4
|
+
class Array
|
5
|
+
include RubyBreaker::Broken
|
6
|
+
typesig("&(?*) -> basic_object")
|
7
|
+
typesig("*(?*) -> basic_object")
|
8
|
+
typesig("+(?*) -> basic_object")
|
9
|
+
typesig("-(?*) -> basic_object")
|
10
|
+
typesig("<<(?*) -> basic_object")
|
11
|
+
typesig("<=>(?*) -> basic_object")
|
12
|
+
typesig("==(?*) -> basic_object")
|
13
|
+
typesig("[](?*) -> basic_object")
|
14
|
+
typesig("[]=(?*) -> basic_object")
|
15
|
+
typesig("assoc(?*) -> basic_object")
|
16
|
+
typesig("at(?*) -> basic_object")
|
17
|
+
typesig("clear(?*) -> basic_object")
|
18
|
+
typesig("collect(?*) -> basic_object")
|
19
|
+
typesig("collect!(?*) -> basic_object")
|
20
|
+
typesig("combination(?*) -> basic_object")
|
21
|
+
typesig("compact(?*) -> basic_object")
|
22
|
+
typesig("compact!(?*) -> basic_object")
|
23
|
+
typesig("concat(?*) -> basic_object")
|
24
|
+
typesig("count(?*) -> basic_object")
|
25
|
+
typesig("cycle(?*) -> basic_object")
|
26
|
+
typesig("delete(?*) -> basic_object")
|
27
|
+
typesig("delete_at(?*) -> basic_object")
|
28
|
+
typesig("delete_if(?*) -> basic_object")
|
29
|
+
typesig("drop(?*) -> basic_object")
|
30
|
+
typesig("drop_while(?*) -> basic_object")
|
31
|
+
typesig("each(?*) -> basic_object")
|
32
|
+
typesig("each_index(?*) -> basic_object")
|
33
|
+
typesig("empty?(?*) -> basic_object")
|
34
|
+
typesig("eql?(?*) -> basic_object")
|
35
|
+
typesig("fetch(?*) -> basic_object")
|
36
|
+
typesig("fill(?*) -> basic_object")
|
37
|
+
typesig("find_index(?*) -> basic_object")
|
38
|
+
typesig("first(?*) -> basic_object")
|
39
|
+
typesig("flatten(?*) -> basic_object")
|
40
|
+
typesig("flatten!(?*) -> basic_object")
|
41
|
+
typesig("frozen?(?*) -> basic_object")
|
42
|
+
typesig("hash(?*) -> basic_object")
|
43
|
+
typesig("include?(?*) -> basic_object")
|
44
|
+
typesig("index(?*) -> basic_object")
|
45
|
+
typesig("insert(?*) -> basic_object")
|
46
|
+
typesig("inspect(?*) -> basic_object")
|
47
|
+
typesig("join(?*) -> basic_object")
|
48
|
+
typesig("keep_if(?*) -> basic_object")
|
49
|
+
typesig("last(?*) -> basic_object")
|
50
|
+
typesig("length(?*) -> basic_object")
|
51
|
+
typesig("map(?*) -> basic_object")
|
52
|
+
typesig("map!(?*) -> basic_object")
|
53
|
+
typesig("pack(?*) -> basic_object")
|
54
|
+
typesig("permutation(?*) -> basic_object")
|
55
|
+
typesig("pop(?*) -> basic_object")
|
56
|
+
typesig("product(?*) -> basic_object")
|
57
|
+
typesig("push(?*) -> basic_object")
|
58
|
+
typesig("rassoc(?*) -> basic_object")
|
59
|
+
typesig("reject(?*) -> basic_object")
|
60
|
+
typesig("reject!(?*) -> basic_object")
|
61
|
+
typesig("repeated_combination(?*) -> basic_object")
|
62
|
+
typesig("repeated_permutation(?*) -> basic_object")
|
63
|
+
typesig("replace(?*) -> basic_object")
|
64
|
+
typesig("reverse(?*) -> basic_object")
|
65
|
+
typesig("reverse!(?*) -> basic_object")
|
66
|
+
typesig("reverse_each(?*) -> basic_object")
|
67
|
+
typesig("rindex(?*) -> basic_object")
|
68
|
+
typesig("rotate(?*) -> basic_object")
|
69
|
+
typesig("rotate!(?*) -> basic_object")
|
70
|
+
typesig("sample(?*) -> basic_object")
|
71
|
+
typesig("select(?*) -> basic_object")
|
72
|
+
typesig("select!(?*) -> basic_object")
|
73
|
+
typesig("shift(?*) -> basic_object")
|
74
|
+
typesig("shuffle(?*) -> basic_object")
|
75
|
+
typesig("shuffle!(?*) -> basic_object")
|
76
|
+
typesig("size(?*) -> basic_object")
|
77
|
+
typesig("slice(?*) -> basic_object")
|
78
|
+
typesig("slice!(?*) -> basic_object")
|
79
|
+
typesig("sort(?*) -> basic_object")
|
80
|
+
typesig("sort!(?*) -> basic_object")
|
81
|
+
typesig("sort_by!(?*) -> basic_object")
|
82
|
+
typesig("take(?*) -> basic_object")
|
83
|
+
typesig("take_while(?*) -> basic_object")
|
84
|
+
typesig("to_a(?*) -> basic_object")
|
85
|
+
typesig("to_ary(?*) -> basic_object")
|
86
|
+
typesig("to_s(?*) -> basic_object")
|
87
|
+
typesig("transpose(?*) -> basic_object")
|
88
|
+
typesig("uniq(?*) -> basic_object")
|
89
|
+
typesig("uniq!(?*) -> basic_object")
|
90
|
+
typesig("unshift(?*) -> basic_object")
|
91
|
+
typesig("values_at(?*) -> basic_object")
|
92
|
+
typesig("zip(?*) -> basic_object")
|
93
|
+
typesig("|(?*) -> basic_object")
|
94
|
+
|
95
|
+
end # of Array
|
96
|
+
class BasicObject
|
97
|
+
include RubyBreaker::Broken
|
98
|
+
typesig("!(?*) -> basic_object")
|
99
|
+
typesig("!=(?*) -> basic_object")
|
100
|
+
typesig("==(?*) -> basic_object")
|
101
|
+
typesig("__id__(?*) -> basic_object")
|
102
|
+
typesig("__send__(?*) -> basic_object")
|
103
|
+
typesig("equal?(?*) -> basic_object")
|
104
|
+
typesig("instance_eval(?*) -> basic_object")
|
105
|
+
typesig("instance_exec(?*) -> basic_object")
|
106
|
+
|
107
|
+
end # of BasicObject
|
108
|
+
class Bignum
|
109
|
+
include RubyBreaker::Broken
|
110
|
+
typesig("%(?*) -> basic_object")
|
111
|
+
typesig("&(?*) -> basic_object")
|
112
|
+
typesig("*(?*) -> basic_object")
|
113
|
+
typesig("**(?*) -> basic_object")
|
114
|
+
typesig("+(?*) -> basic_object")
|
115
|
+
typesig("-(?*) -> basic_object")
|
116
|
+
typesig("-@(?*) -> basic_object")
|
117
|
+
typesig("/(?*) -> basic_object")
|
118
|
+
typesig("<(?*) -> basic_object")
|
119
|
+
typesig("<<(?*) -> basic_object")
|
120
|
+
typesig("<=(?*) -> basic_object")
|
121
|
+
typesig("<=>(?*) -> basic_object")
|
122
|
+
typesig("==(?*) -> basic_object")
|
123
|
+
typesig("===(?*) -> basic_object")
|
124
|
+
typesig(">(?*) -> basic_object")
|
125
|
+
typesig(">=(?*) -> basic_object")
|
126
|
+
typesig(">>(?*) -> basic_object")
|
127
|
+
typesig("[](?*) -> basic_object")
|
128
|
+
typesig("^(?*) -> basic_object")
|
129
|
+
typesig("abs(?*) -> basic_object")
|
130
|
+
typesig("coerce(?*) -> basic_object")
|
131
|
+
typesig("div(?*) -> basic_object")
|
132
|
+
typesig("divmod(?*) -> basic_object")
|
133
|
+
typesig("eql?(?*) -> basic_object")
|
134
|
+
typesig("even?(?*) -> basic_object")
|
135
|
+
typesig("fdiv(?*) -> basic_object")
|
136
|
+
typesig("hash(?*) -> basic_object")
|
137
|
+
typesig("magnitude(?*) -> basic_object")
|
138
|
+
typesig("modulo(?*) -> basic_object")
|
139
|
+
typesig("odd?(?*) -> basic_object")
|
140
|
+
typesig("remainder(?*) -> basic_object")
|
141
|
+
typesig("size(?*) -> basic_object")
|
142
|
+
typesig("to_f(?*) -> basic_object")
|
143
|
+
typesig("to_s(?*) -> basic_object")
|
144
|
+
typesig("|(?*) -> basic_object")
|
145
|
+
typesig("~(?*) -> basic_object")
|
146
|
+
|
147
|
+
end # of Bignum
|
148
|
+
class Binding
|
149
|
+
include RubyBreaker::Broken
|
150
|
+
typesig("clone(?*) -> basic_object")
|
151
|
+
typesig("dup(?*) -> basic_object")
|
152
|
+
typesig("eval(?*) -> basic_object")
|
153
|
+
|
154
|
+
end # of Binding
|
155
|
+
module Comparable
|
156
|
+
include RubyBreaker::Broken
|
157
|
+
typesig("<(?*) -> basic_object")
|
158
|
+
typesig("<=(?*) -> basic_object")
|
159
|
+
typesig("==(?*) -> basic_object")
|
160
|
+
typesig(">(?*) -> basic_object")
|
161
|
+
typesig(">=(?*) -> basic_object")
|
162
|
+
typesig("between?(?*) -> basic_object")
|
163
|
+
|
164
|
+
end # of Comparable
|
165
|
+
class Complex
|
166
|
+
include RubyBreaker::Broken
|
167
|
+
typesig("*(?*) -> basic_object")
|
168
|
+
typesig("**(?*) -> basic_object")
|
169
|
+
typesig("+(?*) -> basic_object")
|
170
|
+
typesig("-(?*) -> basic_object")
|
171
|
+
typesig("-@(?*) -> basic_object")
|
172
|
+
typesig("/(?*) -> basic_object")
|
173
|
+
typesig("==(?*) -> basic_object")
|
174
|
+
typesig("abs(?*) -> basic_object")
|
175
|
+
typesig("abs2(?*) -> basic_object")
|
176
|
+
typesig("angle(?*) -> basic_object")
|
177
|
+
typesig("arg(?*) -> basic_object")
|
178
|
+
typesig("coerce(?*) -> basic_object")
|
179
|
+
typesig("conj(?*) -> basic_object")
|
180
|
+
typesig("conjugate(?*) -> basic_object")
|
181
|
+
typesig("denominator(?*) -> basic_object")
|
182
|
+
typesig("eql?(?*) -> basic_object")
|
183
|
+
typesig("fdiv(?*) -> basic_object")
|
184
|
+
typesig("hash(?*) -> basic_object")
|
185
|
+
typesig("imag(?*) -> basic_object")
|
186
|
+
typesig("imaginary(?*) -> basic_object")
|
187
|
+
typesig("inspect(?*) -> basic_object")
|
188
|
+
typesig("magnitude(?*) -> basic_object")
|
189
|
+
typesig("marshal_dump(?*) -> basic_object")
|
190
|
+
typesig("marshal_load(?*) -> basic_object")
|
191
|
+
typesig("numerator(?*) -> basic_object")
|
192
|
+
typesig("phase(?*) -> basic_object")
|
193
|
+
typesig("polar(?*) -> basic_object")
|
194
|
+
typesig("quo(?*) -> basic_object")
|
195
|
+
typesig("rationalize(?*) -> basic_object")
|
196
|
+
typesig("real(?*) -> basic_object")
|
197
|
+
typesig("real?(?*) -> basic_object")
|
198
|
+
typesig("rect(?*) -> basic_object")
|
199
|
+
typesig("rectangular(?*) -> basic_object")
|
200
|
+
typesig("to_f(?*) -> basic_object")
|
201
|
+
typesig("to_i(?*) -> basic_object")
|
202
|
+
typesig("to_r(?*) -> basic_object")
|
203
|
+
typesig("to_s(?*) -> basic_object")
|
204
|
+
|
205
|
+
end # of Complex
|
206
|
+
class Data
|
207
|
+
include RubyBreaker::Broken;
|
208
|
+
end # of Data
|
209
|
+
class Dir
|
210
|
+
include RubyBreaker::Broken
|
211
|
+
typesig("close(?*) -> basic_object")
|
212
|
+
typesig("each(?*) -> basic_object")
|
213
|
+
typesig("inspect(?*) -> basic_object")
|
214
|
+
typesig("path(?*) -> basic_object")
|
215
|
+
typesig("pos(?*) -> basic_object")
|
216
|
+
typesig("pos=(?*) -> basic_object")
|
217
|
+
typesig("read(?*) -> basic_object")
|
218
|
+
typesig("rewind(?*) -> basic_object")
|
219
|
+
typesig("seek(?*) -> basic_object")
|
220
|
+
typesig("tell(?*) -> basic_object")
|
221
|
+
typesig("to_path(?*) -> basic_object")
|
222
|
+
|
223
|
+
end # of Dir
|
224
|
+
class EOFError
|
225
|
+
include RubyBreaker::Broken;
|
226
|
+
end # of EOFError
|
227
|
+
class Encoding
|
228
|
+
include RubyBreaker::Broken
|
229
|
+
typesig("_dump(?*) -> basic_object")
|
230
|
+
typesig("ascii_compatible?(?*) -> basic_object")
|
231
|
+
typesig("dummy?(?*) -> basic_object")
|
232
|
+
typesig("inspect(?*) -> basic_object")
|
233
|
+
typesig("name(?*) -> basic_object")
|
234
|
+
typesig("names(?*) -> basic_object")
|
235
|
+
typesig("replicate(?*) -> basic_object")
|
236
|
+
typesig("to_s(?*) -> basic_object")
|
237
|
+
class Encoding::CompatibilityError
|
238
|
+
include RubyBreaker::Broken;
|
239
|
+
end # of Encoding::CompatibilityError
|
240
|
+
class Encoding::Converter
|
241
|
+
include RubyBreaker::Broken
|
242
|
+
typesig("==(?*) -> basic_object")
|
243
|
+
typesig("convert(?*) -> basic_object")
|
244
|
+
typesig("convpath(?*) -> basic_object")
|
245
|
+
typesig("destination_encoding(?*) -> basic_object")
|
246
|
+
typesig("finish(?*) -> basic_object")
|
247
|
+
typesig("insert_output(?*) -> basic_object")
|
248
|
+
typesig("inspect(?*) -> basic_object")
|
249
|
+
typesig("last_error(?*) -> basic_object")
|
250
|
+
typesig("primitive_convert(?*) -> basic_object")
|
251
|
+
typesig("primitive_errinfo(?*) -> basic_object")
|
252
|
+
typesig("putback(?*) -> basic_object")
|
253
|
+
typesig("replacement(?*) -> basic_object")
|
254
|
+
typesig("replacement=(?*) -> basic_object")
|
255
|
+
typesig("source_encoding(?*) -> basic_object")
|
256
|
+
|
257
|
+
end # of Encoding::Converter
|
258
|
+
class Encoding::ConverterNotFoundError
|
259
|
+
include RubyBreaker::Broken;
|
260
|
+
end # of Encoding::ConverterNotFoundError
|
261
|
+
class Encoding::InvalidByteSequenceError
|
262
|
+
include RubyBreaker::Broken
|
263
|
+
typesig("destination_encoding(?*) -> basic_object")
|
264
|
+
typesig("destination_encoding_name(?*) -> basic_object")
|
265
|
+
typesig("error_bytes(?*) -> basic_object")
|
266
|
+
typesig("incomplete_input?(?*) -> basic_object")
|
267
|
+
typesig("readagain_bytes(?*) -> basic_object")
|
268
|
+
typesig("source_encoding(?*) -> basic_object")
|
269
|
+
typesig("source_encoding_name(?*) -> basic_object")
|
270
|
+
|
271
|
+
end # of Encoding::InvalidByteSequenceError
|
272
|
+
class Encoding::UndefinedConversionError
|
273
|
+
include RubyBreaker::Broken
|
274
|
+
typesig("destination_encoding(?*) -> basic_object")
|
275
|
+
typesig("destination_encoding_name(?*) -> basic_object")
|
276
|
+
typesig("error_char(?*) -> basic_object")
|
277
|
+
typesig("source_encoding(?*) -> basic_object")
|
278
|
+
typesig("source_encoding_name(?*) -> basic_object")
|
279
|
+
|
280
|
+
end # of Encoding::UndefinedConversionError
|
281
|
+
|
282
|
+
end # of Encoding
|
283
|
+
class EncodingError
|
284
|
+
include RubyBreaker::Broken;
|
285
|
+
end # of EncodingError
|
286
|
+
module Enumerable
|
287
|
+
include RubyBreaker::Broken
|
288
|
+
typesig("all?(?*) -> basic_object")
|
289
|
+
typesig("any?(?*) -> basic_object")
|
290
|
+
typesig("chunk(?*) -> basic_object")
|
291
|
+
typesig("collect(?*) -> basic_object")
|
292
|
+
typesig("collect_concat(?*) -> basic_object")
|
293
|
+
typesig("count(?*) -> basic_object")
|
294
|
+
typesig("cycle(?*) -> basic_object")
|
295
|
+
typesig("detect(?*) -> basic_object")
|
296
|
+
typesig("drop(?*) -> basic_object")
|
297
|
+
typesig("drop_while(?*) -> basic_object")
|
298
|
+
typesig("each_cons(?*) -> basic_object")
|
299
|
+
typesig("each_entry(?*) -> basic_object")
|
300
|
+
typesig("each_slice(?*) -> basic_object")
|
301
|
+
typesig("each_with_index(?*) -> basic_object")
|
302
|
+
typesig("each_with_object(?*) -> basic_object")
|
303
|
+
typesig("entries(?*) -> basic_object")
|
304
|
+
typesig("find(?*) -> basic_object")
|
305
|
+
typesig("find_all(?*) -> basic_object")
|
306
|
+
typesig("find_index(?*) -> basic_object")
|
307
|
+
typesig("first(?*) -> basic_object")
|
308
|
+
typesig("flat_map(?*) -> basic_object")
|
309
|
+
typesig("grep(?*) -> basic_object")
|
310
|
+
typesig("group_by(?*) -> basic_object")
|
311
|
+
typesig("include?(?*) -> basic_object")
|
312
|
+
typesig("inject(?*) -> basic_object")
|
313
|
+
typesig("map(?*) -> basic_object")
|
314
|
+
typesig("max(?*) -> basic_object")
|
315
|
+
typesig("max_by(?*) -> basic_object")
|
316
|
+
typesig("member?(?*) -> basic_object")
|
317
|
+
typesig("min(?*) -> basic_object")
|
318
|
+
typesig("min_by(?*) -> basic_object")
|
319
|
+
typesig("minmax(?*) -> basic_object")
|
320
|
+
typesig("minmax_by(?*) -> basic_object")
|
321
|
+
typesig("none?(?*) -> basic_object")
|
322
|
+
typesig("one?(?*) -> basic_object")
|
323
|
+
typesig("partition(?*) -> basic_object")
|
324
|
+
typesig("reduce(?*) -> basic_object")
|
325
|
+
typesig("reject(?*) -> basic_object")
|
326
|
+
typesig("reverse_each(?*) -> basic_object")
|
327
|
+
typesig("select(?*) -> basic_object")
|
328
|
+
typesig("slice_before(?*) -> basic_object")
|
329
|
+
typesig("sort(?*) -> basic_object")
|
330
|
+
typesig("sort_by(?*) -> basic_object")
|
331
|
+
typesig("take(?*) -> basic_object")
|
332
|
+
typesig("take_while(?*) -> basic_object")
|
333
|
+
typesig("to_a(?*) -> basic_object")
|
334
|
+
typesig("zip(?*) -> basic_object")
|
335
|
+
|
336
|
+
end # of Enumerable
|
337
|
+
class Enumerator
|
338
|
+
include RubyBreaker::Broken
|
339
|
+
typesig("each(?*) -> basic_object")
|
340
|
+
typesig("each_with_index(?*) -> basic_object")
|
341
|
+
typesig("each_with_object(?*) -> basic_object")
|
342
|
+
typesig("feed(?*) -> basic_object")
|
343
|
+
typesig("inspect(?*) -> basic_object")
|
344
|
+
typesig("next(?*) -> basic_object")
|
345
|
+
typesig("next_values(?*) -> basic_object")
|
346
|
+
typesig("peek(?*) -> basic_object")
|
347
|
+
typesig("peek_values(?*) -> basic_object")
|
348
|
+
typesig("rewind(?*) -> basic_object")
|
349
|
+
typesig("with_index(?*) -> basic_object")
|
350
|
+
typesig("with_object(?*) -> basic_object")
|
351
|
+
class Enumerator::Generator
|
352
|
+
include RubyBreaker::Broken;typesig("each(?*) -> basic_object");
|
353
|
+
end # of Enumerator::Generator
|
354
|
+
class Enumerator::Yielder
|
355
|
+
include RubyBreaker::Broken
|
356
|
+
typesig("<<(?*) -> basic_object")
|
357
|
+
typesig("yield(?*) -> basic_object")
|
358
|
+
|
359
|
+
end # of Enumerator::Yielder
|
360
|
+
|
361
|
+
end # of Enumerator
|
362
|
+
module Errno
|
363
|
+
include RubyBreaker::Broken
|
364
|
+
class Errno::E2BIG
|
365
|
+
include RubyBreaker::Broken;
|
366
|
+
end # of Errno::E2BIG
|
367
|
+
class Errno::EACCES
|
368
|
+
include RubyBreaker::Broken;
|
369
|
+
end # of Errno::EACCES
|
370
|
+
class Errno::EADDRINUSE
|
371
|
+
include RubyBreaker::Broken;
|
372
|
+
end # of Errno::EADDRINUSE
|
373
|
+
class Errno::EADDRNOTAVAIL
|
374
|
+
include RubyBreaker::Broken;
|
375
|
+
end # of Errno::EADDRNOTAVAIL
|
376
|
+
class Errno::NOERROR
|
377
|
+
include RubyBreaker::Broken;
|
378
|
+
end # of Errno::NOERROR
|
379
|
+
class Errno::EAFNOSUPPORT
|
380
|
+
include RubyBreaker::Broken;
|
381
|
+
end # of Errno::EAFNOSUPPORT
|
382
|
+
class Errno::EAGAIN
|
383
|
+
include RubyBreaker::Broken;
|
384
|
+
end # of Errno::EAGAIN
|
385
|
+
class Errno::EALREADY
|
386
|
+
include RubyBreaker::Broken;
|
387
|
+
end # of Errno::EALREADY
|
388
|
+
class Errno::EAUTH
|
389
|
+
include RubyBreaker::Broken;
|
390
|
+
end # of Errno::EAUTH
|
391
|
+
class Errno::EBADF
|
392
|
+
include RubyBreaker::Broken;
|
393
|
+
end # of Errno::EBADF
|
394
|
+
class Errno::EBADMSG
|
395
|
+
include RubyBreaker::Broken;
|
396
|
+
end # of Errno::EBADMSG
|
397
|
+
class Errno::EBADRPC
|
398
|
+
include RubyBreaker::Broken;
|
399
|
+
end # of Errno::EBADRPC
|
400
|
+
class Errno::EBUSY
|
401
|
+
include RubyBreaker::Broken;
|
402
|
+
end # of Errno::EBUSY
|
403
|
+
class Errno::ECANCELED
|
404
|
+
include RubyBreaker::Broken;
|
405
|
+
end # of Errno::ECANCELED
|
406
|
+
class Errno::ECHILD
|
407
|
+
include RubyBreaker::Broken;
|
408
|
+
end # of Errno::ECHILD
|
409
|
+
class Errno::ECONNABORTED
|
410
|
+
include RubyBreaker::Broken;
|
411
|
+
end # of Errno::ECONNABORTED
|
412
|
+
class Errno::ECONNREFUSED
|
413
|
+
include RubyBreaker::Broken;
|
414
|
+
end # of Errno::ECONNREFUSED
|
415
|
+
class Errno::ECONNRESET
|
416
|
+
include RubyBreaker::Broken;
|
417
|
+
end # of Errno::ECONNRESET
|
418
|
+
class Errno::EDEADLK
|
419
|
+
include RubyBreaker::Broken;
|
420
|
+
end # of Errno::EDEADLK
|
421
|
+
class Errno::EDESTADDRREQ
|
422
|
+
include RubyBreaker::Broken;
|
423
|
+
end # of Errno::EDESTADDRREQ
|
424
|
+
class Errno::EDOM
|
425
|
+
include RubyBreaker::Broken;
|
426
|
+
end # of Errno::EDOM
|
427
|
+
class Errno::EDQUOT
|
428
|
+
include RubyBreaker::Broken;
|
429
|
+
end # of Errno::EDQUOT
|
430
|
+
class Errno::EEXIST
|
431
|
+
include RubyBreaker::Broken;
|
432
|
+
end # of Errno::EEXIST
|
433
|
+
class Errno::EFAULT
|
434
|
+
include RubyBreaker::Broken;
|
435
|
+
end # of Errno::EFAULT
|
436
|
+
class Errno::EFBIG
|
437
|
+
include RubyBreaker::Broken;
|
438
|
+
end # of Errno::EFBIG
|
439
|
+
class Errno::EFTYPE
|
440
|
+
include RubyBreaker::Broken;
|
441
|
+
end # of Errno::EFTYPE
|
442
|
+
class Errno::EHOSTDOWN
|
443
|
+
include RubyBreaker::Broken;
|
444
|
+
end # of Errno::EHOSTDOWN
|
445
|
+
class Errno::EHOSTUNREACH
|
446
|
+
include RubyBreaker::Broken;
|
447
|
+
end # of Errno::EHOSTUNREACH
|
448
|
+
class Errno::EIDRM
|
449
|
+
include RubyBreaker::Broken;
|
450
|
+
end # of Errno::EIDRM
|
451
|
+
class Errno::EILSEQ
|
452
|
+
include RubyBreaker::Broken;
|
453
|
+
end # of Errno::EILSEQ
|
454
|
+
class Errno::EINPROGRESS
|
455
|
+
include RubyBreaker::Broken;
|
456
|
+
end # of Errno::EINPROGRESS
|
457
|
+
class Errno::EINTR
|
458
|
+
include RubyBreaker::Broken;
|
459
|
+
end # of Errno::EINTR
|
460
|
+
class Errno::EINVAL
|
461
|
+
include RubyBreaker::Broken;
|
462
|
+
end # of Errno::EINVAL
|
463
|
+
class Errno::EIO
|
464
|
+
include RubyBreaker::Broken;
|
465
|
+
end # of Errno::EIO
|
466
|
+
class Errno::EISCONN
|
467
|
+
include RubyBreaker::Broken;
|
468
|
+
end # of Errno::EISCONN
|
469
|
+
class Errno::EISDIR
|
470
|
+
include RubyBreaker::Broken;
|
471
|
+
end # of Errno::EISDIR
|
472
|
+
class Errno::ELOOP
|
473
|
+
include RubyBreaker::Broken;
|
474
|
+
end # of Errno::ELOOP
|
475
|
+
class Errno::EMFILE
|
476
|
+
include RubyBreaker::Broken;
|
477
|
+
end # of Errno::EMFILE
|
478
|
+
class Errno::EMLINK
|
479
|
+
include RubyBreaker::Broken;
|
480
|
+
end # of Errno::EMLINK
|
481
|
+
class Errno::EMSGSIZE
|
482
|
+
include RubyBreaker::Broken;
|
483
|
+
end # of Errno::EMSGSIZE
|
484
|
+
class Errno::EMULTIHOP
|
485
|
+
include RubyBreaker::Broken;
|
486
|
+
end # of Errno::EMULTIHOP
|
487
|
+
class Errno::ENAMETOOLONG
|
488
|
+
include RubyBreaker::Broken;
|
489
|
+
end # of Errno::ENAMETOOLONG
|
490
|
+
class Errno::ENEEDAUTH
|
491
|
+
include RubyBreaker::Broken;
|
492
|
+
end # of Errno::ENEEDAUTH
|
493
|
+
class Errno::ENETDOWN
|
494
|
+
include RubyBreaker::Broken;
|
495
|
+
end # of Errno::ENETDOWN
|
496
|
+
class Errno::ENETRESET
|
497
|
+
include RubyBreaker::Broken;
|
498
|
+
end # of Errno::ENETRESET
|
499
|
+
class Errno::ENETUNREACH
|
500
|
+
include RubyBreaker::Broken;
|
501
|
+
end # of Errno::ENETUNREACH
|
502
|
+
class Errno::ENFILE
|
503
|
+
include RubyBreaker::Broken;
|
504
|
+
end # of Errno::ENFILE
|
505
|
+
class Errno::ENOATTR
|
506
|
+
include RubyBreaker::Broken;
|
507
|
+
end # of Errno::ENOATTR
|
508
|
+
class Errno::ENOBUFS
|
509
|
+
include RubyBreaker::Broken;
|
510
|
+
end # of Errno::ENOBUFS
|
511
|
+
class Errno::ENODATA
|
512
|
+
include RubyBreaker::Broken;
|
513
|
+
end # of Errno::ENODATA
|
514
|
+
class Errno::ENODEV
|
515
|
+
include RubyBreaker::Broken;
|
516
|
+
end # of Errno::ENODEV
|
517
|
+
class Errno::ENOENT
|
518
|
+
include RubyBreaker::Broken;
|
519
|
+
end # of Errno::ENOENT
|
520
|
+
class Errno::ENOEXEC
|
521
|
+
include RubyBreaker::Broken;
|
522
|
+
end # of Errno::ENOEXEC
|
523
|
+
class Errno::ENOLCK
|
524
|
+
include RubyBreaker::Broken;
|
525
|
+
end # of Errno::ENOLCK
|
526
|
+
class Errno::ENOLINK
|
527
|
+
include RubyBreaker::Broken;
|
528
|
+
end # of Errno::ENOLINK
|
529
|
+
class Errno::ENOMEM
|
530
|
+
include RubyBreaker::Broken;
|
531
|
+
end # of Errno::ENOMEM
|
532
|
+
class Errno::ENOMSG
|
533
|
+
include RubyBreaker::Broken;
|
534
|
+
end # of Errno::ENOMSG
|
535
|
+
class Errno::ENOPROTOOPT
|
536
|
+
include RubyBreaker::Broken;
|
537
|
+
end # of Errno::ENOPROTOOPT
|
538
|
+
class Errno::ENOSPC
|
539
|
+
include RubyBreaker::Broken;
|
540
|
+
end # of Errno::ENOSPC
|
541
|
+
class Errno::ENOSR
|
542
|
+
include RubyBreaker::Broken;
|
543
|
+
end # of Errno::ENOSR
|
544
|
+
class Errno::ENOSTR
|
545
|
+
include RubyBreaker::Broken;
|
546
|
+
end # of Errno::ENOSTR
|
547
|
+
class Errno::ENOSYS
|
548
|
+
include RubyBreaker::Broken;
|
549
|
+
end # of Errno::ENOSYS
|
550
|
+
class Errno::ENOTBLK
|
551
|
+
include RubyBreaker::Broken;
|
552
|
+
end # of Errno::ENOTBLK
|
553
|
+
class Errno::ENOTCONN
|
554
|
+
include RubyBreaker::Broken;
|
555
|
+
end # of Errno::ENOTCONN
|
556
|
+
class Errno::ENOTDIR
|
557
|
+
include RubyBreaker::Broken;
|
558
|
+
end # of Errno::ENOTDIR
|
559
|
+
class Errno::ENOTEMPTY
|
560
|
+
include RubyBreaker::Broken;
|
561
|
+
end # of Errno::ENOTEMPTY
|
562
|
+
class Errno::ENOTRECOVERABLE
|
563
|
+
include RubyBreaker::Broken;
|
564
|
+
end # of Errno::ENOTRECOVERABLE
|
565
|
+
class Errno::ENOTSOCK
|
566
|
+
include RubyBreaker::Broken;
|
567
|
+
end # of Errno::ENOTSOCK
|
568
|
+
class Errno::ENOTSUP
|
569
|
+
include RubyBreaker::Broken;
|
570
|
+
end # of Errno::ENOTSUP
|
571
|
+
class Errno::ENOTTY
|
572
|
+
include RubyBreaker::Broken;
|
573
|
+
end # of Errno::ENOTTY
|
574
|
+
class Errno::ENXIO
|
575
|
+
include RubyBreaker::Broken;
|
576
|
+
end # of Errno::ENXIO
|
577
|
+
class Errno::EOPNOTSUPP
|
578
|
+
include RubyBreaker::Broken;
|
579
|
+
end # of Errno::EOPNOTSUPP
|
580
|
+
class Errno::EOVERFLOW
|
581
|
+
include RubyBreaker::Broken;
|
582
|
+
end # of Errno::EOVERFLOW
|
583
|
+
class Errno::EOWNERDEAD
|
584
|
+
include RubyBreaker::Broken;
|
585
|
+
end # of Errno::EOWNERDEAD
|
586
|
+
class Errno::EPERM
|
587
|
+
include RubyBreaker::Broken;
|
588
|
+
end # of Errno::EPERM
|
589
|
+
class Errno::EPFNOSUPPORT
|
590
|
+
include RubyBreaker::Broken;
|
591
|
+
end # of Errno::EPFNOSUPPORT
|
592
|
+
class Errno::EPIPE
|
593
|
+
include RubyBreaker::Broken;
|
594
|
+
end # of Errno::EPIPE
|
595
|
+
class Errno::EPROCLIM
|
596
|
+
include RubyBreaker::Broken;
|
597
|
+
end # of Errno::EPROCLIM
|
598
|
+
class Errno::EPROCUNAVAIL
|
599
|
+
include RubyBreaker::Broken;
|
600
|
+
end # of Errno::EPROCUNAVAIL
|
601
|
+
class Errno::EPROGMISMATCH
|
602
|
+
include RubyBreaker::Broken;
|
603
|
+
end # of Errno::EPROGMISMATCH
|
604
|
+
class Errno::EPROGUNAVAIL
|
605
|
+
include RubyBreaker::Broken;
|
606
|
+
end # of Errno::EPROGUNAVAIL
|
607
|
+
class Errno::EPROTO
|
608
|
+
include RubyBreaker::Broken;
|
609
|
+
end # of Errno::EPROTO
|
610
|
+
class Errno::EPROTONOSUPPORT
|
611
|
+
include RubyBreaker::Broken;
|
612
|
+
end # of Errno::EPROTONOSUPPORT
|
613
|
+
class Errno::EPROTOTYPE
|
614
|
+
include RubyBreaker::Broken;
|
615
|
+
end # of Errno::EPROTOTYPE
|
616
|
+
class Errno::ERANGE
|
617
|
+
include RubyBreaker::Broken;
|
618
|
+
end # of Errno::ERANGE
|
619
|
+
class Errno::EREMOTE
|
620
|
+
include RubyBreaker::Broken;
|
621
|
+
end # of Errno::EREMOTE
|
622
|
+
class Errno::EROFS
|
623
|
+
include RubyBreaker::Broken;
|
624
|
+
end # of Errno::EROFS
|
625
|
+
class Errno::ERPCMISMATCH
|
626
|
+
include RubyBreaker::Broken;
|
627
|
+
end # of Errno::ERPCMISMATCH
|
628
|
+
class Errno::ESHUTDOWN
|
629
|
+
include RubyBreaker::Broken;
|
630
|
+
end # of Errno::ESHUTDOWN
|
631
|
+
class Errno::ESOCKTNOSUPPORT
|
632
|
+
include RubyBreaker::Broken;
|
633
|
+
end # of Errno::ESOCKTNOSUPPORT
|
634
|
+
class Errno::ESPIPE
|
635
|
+
include RubyBreaker::Broken;
|
636
|
+
end # of Errno::ESPIPE
|
637
|
+
class Errno::ESRCH
|
638
|
+
include RubyBreaker::Broken;
|
639
|
+
end # of Errno::ESRCH
|
640
|
+
class Errno::ESTALE
|
641
|
+
include RubyBreaker::Broken;
|
642
|
+
end # of Errno::ESTALE
|
643
|
+
class Errno::ETIME
|
644
|
+
include RubyBreaker::Broken;
|
645
|
+
end # of Errno::ETIME
|
646
|
+
class Errno::ETIMEDOUT
|
647
|
+
include RubyBreaker::Broken;
|
648
|
+
end # of Errno::ETIMEDOUT
|
649
|
+
class Errno::ETOOMANYREFS
|
650
|
+
include RubyBreaker::Broken;
|
651
|
+
end # of Errno::ETOOMANYREFS
|
652
|
+
class Errno::ETXTBSY
|
653
|
+
include RubyBreaker::Broken;
|
654
|
+
end # of Errno::ETXTBSY
|
655
|
+
class Errno::EUSERS
|
656
|
+
include RubyBreaker::Broken;
|
657
|
+
end # of Errno::EUSERS
|
658
|
+
class Errno::EXDEV
|
659
|
+
include RubyBreaker::Broken;
|
660
|
+
end # of Errno::EXDEV
|
661
|
+
|
662
|
+
end # of Errno
|
663
|
+
class Exception
|
664
|
+
include RubyBreaker::Broken
|
665
|
+
typesig("==(?*) -> basic_object")
|
666
|
+
typesig("backtrace(?*) -> basic_object")
|
667
|
+
typesig("exception(?*) -> basic_object")
|
668
|
+
typesig("inspect(?*) -> basic_object")
|
669
|
+
typesig("message(?*) -> basic_object")
|
670
|
+
typesig("set_backtrace(?*) -> basic_object")
|
671
|
+
typesig("to_s(?*) -> basic_object")
|
672
|
+
|
673
|
+
end # of Exception
|
674
|
+
class FalseClass
|
675
|
+
include RubyBreaker::Broken
|
676
|
+
typesig("&(?*) -> basic_object")
|
677
|
+
typesig("^(?*) -> basic_object")
|
678
|
+
typesig("to_s(?*) -> basic_object")
|
679
|
+
typesig("|(?*) -> basic_object")
|
680
|
+
|
681
|
+
end # of FalseClass
|
682
|
+
class Fiber
|
683
|
+
include RubyBreaker::Broken;typesig("resume(?*) -> basic_object");
|
684
|
+
end # of Fiber
|
685
|
+
class FiberError
|
686
|
+
include RubyBreaker::Broken;
|
687
|
+
end # of FiberError
|
688
|
+
class File
|
689
|
+
include RubyBreaker::Broken
|
690
|
+
typesig("atime(?*) -> basic_object")
|
691
|
+
typesig("chmod(?*) -> basic_object")
|
692
|
+
typesig("chown(?*) -> basic_object")
|
693
|
+
typesig("ctime(?*) -> basic_object")
|
694
|
+
typesig("flock(?*) -> basic_object")
|
695
|
+
typesig("lstat(?*) -> basic_object")
|
696
|
+
typesig("mtime(?*) -> basic_object")
|
697
|
+
typesig("path(?*) -> basic_object")
|
698
|
+
typesig("size(?*) -> basic_object")
|
699
|
+
typesig("to_path(?*) -> basic_object")
|
700
|
+
typesig("truncate(?*) -> basic_object")
|
701
|
+
module File::Constants
|
702
|
+
include RubyBreaker::Broken;
|
703
|
+
end # of File::Constants
|
704
|
+
class File::Stat
|
705
|
+
include RubyBreaker::Broken
|
706
|
+
typesig("<=>(?*) -> basic_object")
|
707
|
+
typesig("atime(?*) -> basic_object")
|
708
|
+
typesig("blksize(?*) -> basic_object")
|
709
|
+
typesig("blockdev?(?*) -> basic_object")
|
710
|
+
typesig("blocks(?*) -> basic_object")
|
711
|
+
typesig("chardev?(?*) -> basic_object")
|
712
|
+
typesig("ctime(?*) -> basic_object")
|
713
|
+
typesig("dev(?*) -> basic_object")
|
714
|
+
typesig("dev_major(?*) -> basic_object")
|
715
|
+
typesig("dev_minor(?*) -> basic_object")
|
716
|
+
typesig("directory?(?*) -> basic_object")
|
717
|
+
typesig("executable?(?*) -> basic_object")
|
718
|
+
typesig("executable_real?(?*) -> basic_object")
|
719
|
+
typesig("file?(?*) -> basic_object")
|
720
|
+
typesig("ftype(?*) -> basic_object")
|
721
|
+
typesig("gid(?*) -> basic_object")
|
722
|
+
typesig("grpowned?(?*) -> basic_object")
|
723
|
+
typesig("ino(?*) -> basic_object")
|
724
|
+
typesig("inspect(?*) -> basic_object")
|
725
|
+
typesig("mode(?*) -> basic_object")
|
726
|
+
typesig("mtime(?*) -> basic_object")
|
727
|
+
typesig("nlink(?*) -> basic_object")
|
728
|
+
typesig("owned?(?*) -> basic_object")
|
729
|
+
typesig("pipe?(?*) -> basic_object")
|
730
|
+
typesig("rdev(?*) -> basic_object")
|
731
|
+
typesig("rdev_major(?*) -> basic_object")
|
732
|
+
typesig("rdev_minor(?*) -> basic_object")
|
733
|
+
typesig("readable?(?*) -> basic_object")
|
734
|
+
typesig("readable_real?(?*) -> basic_object")
|
735
|
+
typesig("setgid?(?*) -> basic_object")
|
736
|
+
typesig("setuid?(?*) -> basic_object")
|
737
|
+
typesig("size(?*) -> basic_object")
|
738
|
+
typesig("size?(?*) -> basic_object")
|
739
|
+
typesig("socket?(?*) -> basic_object")
|
740
|
+
typesig("sticky?(?*) -> basic_object")
|
741
|
+
typesig("symlink?(?*) -> basic_object")
|
742
|
+
typesig("uid(?*) -> basic_object")
|
743
|
+
typesig("world_readable?(?*) -> basic_object")
|
744
|
+
typesig("world_writable?(?*) -> basic_object")
|
745
|
+
typesig("writable?(?*) -> basic_object")
|
746
|
+
typesig("writable_real?(?*) -> basic_object")
|
747
|
+
typesig("zero?(?*) -> basic_object")
|
748
|
+
|
749
|
+
end # of File::Stat
|
750
|
+
module IO::WaitReadable
|
751
|
+
include RubyBreaker::Broken;
|
752
|
+
end # of IO::WaitReadable
|
753
|
+
module IO::WaitWritable
|
754
|
+
include RubyBreaker::Broken;
|
755
|
+
end # of IO::WaitWritable
|
756
|
+
|
757
|
+
end # of File
|
758
|
+
module FileTest
|
759
|
+
include RubyBreaker::Broken;
|
760
|
+
end # of FileTest
|
761
|
+
class Fixnum
|
762
|
+
include RubyBreaker::Broken
|
763
|
+
typesig("%(?*) -> basic_object")
|
764
|
+
typesig("&(?*) -> basic_object")
|
765
|
+
typesig("*(?*) -> basic_object")
|
766
|
+
typesig("**(?*) -> basic_object")
|
767
|
+
typesig("+(?*) -> basic_object")
|
768
|
+
typesig("-(?*) -> basic_object")
|
769
|
+
typesig("-@(?*) -> basic_object")
|
770
|
+
typesig("/(?*) -> basic_object")
|
771
|
+
typesig("<(?*) -> basic_object")
|
772
|
+
typesig("<<(?*) -> basic_object")
|
773
|
+
typesig("<=(?*) -> basic_object")
|
774
|
+
typesig("<=>(?*) -> basic_object")
|
775
|
+
typesig("==(?*) -> basic_object")
|
776
|
+
typesig("===(?*) -> basic_object")
|
777
|
+
typesig(">(?*) -> basic_object")
|
778
|
+
typesig(">=(?*) -> basic_object")
|
779
|
+
typesig(">>(?*) -> basic_object")
|
780
|
+
typesig("[](?*) -> basic_object")
|
781
|
+
typesig("^(?*) -> basic_object")
|
782
|
+
typesig("abs(?*) -> basic_object")
|
783
|
+
typesig("div(?*) -> basic_object")
|
784
|
+
typesig("divmod(?*) -> basic_object")
|
785
|
+
typesig("even?(?*) -> basic_object")
|
786
|
+
typesig("fdiv(?*) -> basic_object")
|
787
|
+
typesig("magnitude(?*) -> basic_object")
|
788
|
+
typesig("modulo(?*) -> basic_object")
|
789
|
+
typesig("odd?(?*) -> basic_object")
|
790
|
+
typesig("size(?*) -> basic_object")
|
791
|
+
typesig("succ(?*) -> basic_object")
|
792
|
+
typesig("to_f(?*) -> basic_object")
|
793
|
+
typesig("to_s(?*) -> basic_object")
|
794
|
+
typesig("zero?(?*) -> basic_object")
|
795
|
+
typesig("|(?*) -> basic_object")
|
796
|
+
typesig("~(?*) -> basic_object")
|
797
|
+
|
798
|
+
end # of Fixnum
|
799
|
+
class Float
|
800
|
+
include RubyBreaker::Broken
|
801
|
+
typesig("%(?*) -> basic_object")
|
802
|
+
typesig("*(?*) -> basic_object")
|
803
|
+
typesig("**(?*) -> basic_object")
|
804
|
+
typesig("+(?*) -> basic_object")
|
805
|
+
typesig("-(?*) -> basic_object")
|
806
|
+
typesig("-@(?*) -> basic_object")
|
807
|
+
typesig("/(?*) -> basic_object")
|
808
|
+
typesig("<(?*) -> basic_object")
|
809
|
+
typesig("<=(?*) -> basic_object")
|
810
|
+
typesig("<=>(?*) -> basic_object")
|
811
|
+
typesig("==(?*) -> basic_object")
|
812
|
+
typesig("===(?*) -> basic_object")
|
813
|
+
typesig(">(?*) -> basic_object")
|
814
|
+
typesig(">=(?*) -> basic_object")
|
815
|
+
typesig("abs(?*) -> basic_object")
|
816
|
+
typesig("angle(?*) -> basic_object")
|
817
|
+
typesig("arg(?*) -> basic_object")
|
818
|
+
typesig("ceil(?*) -> basic_object")
|
819
|
+
typesig("coerce(?*) -> basic_object")
|
820
|
+
typesig("denominator(?*) -> basic_object")
|
821
|
+
typesig("divmod(?*) -> basic_object")
|
822
|
+
typesig("eql?(?*) -> basic_object")
|
823
|
+
typesig("fdiv(?*) -> basic_object")
|
824
|
+
typesig("finite?(?*) -> basic_object")
|
825
|
+
typesig("floor(?*) -> basic_object")
|
826
|
+
typesig("hash(?*) -> basic_object")
|
827
|
+
typesig("infinite?(?*) -> basic_object")
|
828
|
+
typesig("magnitude(?*) -> basic_object")
|
829
|
+
typesig("modulo(?*) -> basic_object")
|
830
|
+
typesig("nan?(?*) -> basic_object")
|
831
|
+
typesig("numerator(?*) -> basic_object")
|
832
|
+
typesig("phase(?*) -> basic_object")
|
833
|
+
typesig("quo(?*) -> basic_object")
|
834
|
+
typesig("rationalize(?*) -> basic_object")
|
835
|
+
typesig("round(?*) -> basic_object")
|
836
|
+
typesig("to_f(?*) -> basic_object")
|
837
|
+
typesig("to_i(?*) -> basic_object")
|
838
|
+
typesig("to_int(?*) -> basic_object")
|
839
|
+
typesig("to_r(?*) -> basic_object")
|
840
|
+
typesig("to_s(?*) -> basic_object")
|
841
|
+
typesig("truncate(?*) -> basic_object")
|
842
|
+
typesig("zero?(?*) -> basic_object")
|
843
|
+
|
844
|
+
end # of Float
|
845
|
+
class FloatDomainError
|
846
|
+
include RubyBreaker::Broken;
|
847
|
+
end # of FloatDomainError
|
848
|
+
module GC
|
849
|
+
include RubyBreaker::Broken
|
850
|
+
typesig("garbage_collect(?*) -> basic_object")
|
851
|
+
module GC::Profiler
|
852
|
+
include RubyBreaker::Broken;
|
853
|
+
end # of GC::Profiler
|
854
|
+
|
855
|
+
end # of GC
|
856
|
+
module Gem
|
857
|
+
include RubyBreaker::Broken
|
858
|
+
class Gem::Builder
|
859
|
+
include RubyBreaker::Broken
|
860
|
+
typesig("build(?*) -> basic_object")
|
861
|
+
typesig("success(?*) -> basic_object")
|
862
|
+
|
863
|
+
end # of Gem::Builder
|
864
|
+
class Gem::SourceIndex
|
865
|
+
include RubyBreaker::Broken
|
866
|
+
typesig("==(?*) -> basic_object")
|
867
|
+
typesig("_deprecated_==(?*) -> basic_object")
|
868
|
+
typesig("_deprecated_add_spec(?*) -> basic_object")
|
869
|
+
typesig("_deprecated_add_specs(?*) -> basic_object")
|
870
|
+
typesig("_deprecated_all_gems(?*) -> basic_object")
|
871
|
+
typesig("_deprecated_each(?*) -> basic_object")
|
872
|
+
typesig("_deprecated_find_name(?*) -> basic_object")
|
873
|
+
typesig("_deprecated_gem_signature(?*) -> basic_object")
|
874
|
+
typesig("_deprecated_gems(?*) -> basic_object")
|
875
|
+
typesig("_deprecated_index_signature(?*) -> basic_object")
|
876
|
+
typesig("_deprecated_latest_specs(?*) -> basic_object")
|
877
|
+
typesig("_deprecated_length(?*) -> basic_object")
|
878
|
+
typesig("_deprecated_load_gems_in(?*) -> basic_object")
|
879
|
+
typesig("_deprecated_outdated(?*) -> basic_object")
|
880
|
+
typesig("_deprecated_prerelease_gems(?*) -> basic_object")
|
881
|
+
typesig("_deprecated_prerelease_specs(?*) -> basic_object")
|
882
|
+
typesig("_deprecated_refresh!(?*) -> basic_object")
|
883
|
+
typesig("_deprecated_released_gems(?*) -> basic_object")
|
884
|
+
typesig("_deprecated_released_specs(?*) -> basic_object")
|
885
|
+
typesig("_deprecated_remove_spec(?*) -> basic_object")
|
886
|
+
typesig("_deprecated_search(?*) -> basic_object")
|
887
|
+
typesig("_deprecated_size(?*) -> basic_object")
|
888
|
+
typesig("_deprecated_spec_dirs(?*) -> basic_object")
|
889
|
+
typesig("_deprecated_spec_dirs=(?*) -> basic_object")
|
890
|
+
typesig("_deprecated_specification(?*) -> basic_object")
|
891
|
+
typesig("add_spec(?*) -> basic_object")
|
892
|
+
typesig("add_specs(?*) -> basic_object")
|
893
|
+
typesig("all_gems(?*) -> basic_object")
|
894
|
+
typesig("dump(?*) -> basic_object")
|
895
|
+
typesig("each(?*) -> basic_object")
|
896
|
+
typesig("find_name(?*) -> basic_object")
|
897
|
+
typesig("gem_signature(?*) -> basic_object")
|
898
|
+
typesig("gems(?*) -> basic_object")
|
899
|
+
typesig("index_signature(?*) -> basic_object")
|
900
|
+
typesig("latest_specs(?*) -> basic_object")
|
901
|
+
typesig("length(?*) -> basic_object")
|
902
|
+
typesig("load_gems_in(?*) -> basic_object")
|
903
|
+
typesig("outdated(?*) -> basic_object")
|
904
|
+
typesig("prerelease_gems(?*) -> basic_object")
|
905
|
+
typesig("prerelease_specs(?*) -> basic_object")
|
906
|
+
typesig("refresh!(?*) -> basic_object")
|
907
|
+
typesig("released_gems(?*) -> basic_object")
|
908
|
+
typesig("released_specs(?*) -> basic_object")
|
909
|
+
typesig("remove_spec(?*) -> basic_object")
|
910
|
+
typesig("search(?*) -> basic_object")
|
911
|
+
typesig("size(?*) -> basic_object")
|
912
|
+
typesig("spec_dirs(?*) -> basic_object")
|
913
|
+
typesig("spec_dirs=(?*) -> basic_object")
|
914
|
+
typesig("specification(?*) -> basic_object")
|
915
|
+
|
916
|
+
end # of Gem::SourceIndex
|
917
|
+
class Gem::CommandLineError
|
918
|
+
include RubyBreaker::Broken;
|
919
|
+
end # of Gem::CommandLineError
|
920
|
+
class Gem::ConfigFile
|
921
|
+
include RubyBreaker::Broken
|
922
|
+
typesig("==(?*) -> basic_object")
|
923
|
+
typesig("[](?*) -> basic_object")
|
924
|
+
typesig("[]=(?*) -> basic_object")
|
925
|
+
typesig("api_keys(?*) -> basic_object")
|
926
|
+
typesig("args(?*) -> basic_object")
|
927
|
+
typesig("backtrace(?*) -> basic_object")
|
928
|
+
typesig("backtrace=(?*) -> basic_object")
|
929
|
+
typesig("benchmark(?*) -> basic_object")
|
930
|
+
typesig("benchmark=(?*) -> basic_object")
|
931
|
+
typesig("bulk_threshold(?*) -> basic_object")
|
932
|
+
typesig("bulk_threshold=(?*) -> basic_object")
|
933
|
+
typesig("config_file_name(?*) -> basic_object")
|
934
|
+
typesig("credentials_path(?*) -> basic_object")
|
935
|
+
typesig("each(?*) -> basic_object")
|
936
|
+
typesig("handle_arguments(?*) -> basic_object")
|
937
|
+
typesig("hash(?*) -> basic_object")
|
938
|
+
typesig("home(?*) -> basic_object")
|
939
|
+
typesig("home=(?*) -> basic_object")
|
940
|
+
typesig("load_api_keys(?*) -> basic_object")
|
941
|
+
typesig("load_file(?*) -> basic_object")
|
942
|
+
typesig("path(?*) -> basic_object")
|
943
|
+
typesig("path=(?*) -> basic_object")
|
944
|
+
typesig("really_verbose(?*) -> basic_object")
|
945
|
+
typesig("rubygems_api_key(?*) -> basic_object")
|
946
|
+
typesig("rubygems_api_key=(?*) -> basic_object")
|
947
|
+
typesig("ssl_ca_cert(?*) -> basic_object")
|
948
|
+
typesig("ssl_verify_mode(?*) -> basic_object")
|
949
|
+
typesig("to_yaml(?*) -> basic_object")
|
950
|
+
typesig("update_sources(?*) -> basic_object")
|
951
|
+
typesig("update_sources=(?*) -> basic_object")
|
952
|
+
typesig("verbose(?*) -> basic_object")
|
953
|
+
typesig("verbose=(?*) -> basic_object")
|
954
|
+
typesig("write(?*) -> basic_object")
|
955
|
+
|
956
|
+
end # of Gem::ConfigFile
|
957
|
+
class Gem::Dependency
|
958
|
+
include RubyBreaker::Broken
|
959
|
+
typesig("<=>(?*) -> basic_object")
|
960
|
+
typesig("==(?*) -> basic_object")
|
961
|
+
typesig("=~(?*) -> basic_object")
|
962
|
+
typesig("hash(?*) -> basic_object")
|
963
|
+
typesig("inspect(?*) -> basic_object")
|
964
|
+
typesig("match?(?*) -> basic_object")
|
965
|
+
typesig("matches_spec?(?*) -> basic_object")
|
966
|
+
typesig("matching_specs(?*) -> basic_object")
|
967
|
+
typesig("merge(?*) -> basic_object")
|
968
|
+
typesig("name(?*) -> basic_object")
|
969
|
+
typesig("name=(?*) -> basic_object")
|
970
|
+
typesig("prerelease=(?*) -> basic_object")
|
971
|
+
typesig("prerelease?(?*) -> basic_object")
|
972
|
+
typesig("pretty_print(?*) -> basic_object")
|
973
|
+
typesig("requirement(?*) -> basic_object")
|
974
|
+
typesig("requirements_list(?*) -> basic_object")
|
975
|
+
typesig("specific?(?*) -> basic_object")
|
976
|
+
typesig("to_s(?*) -> basic_object")
|
977
|
+
typesig("to_spec(?*) -> basic_object")
|
978
|
+
typesig("to_specs(?*) -> basic_object")
|
979
|
+
typesig("type(?*) -> basic_object")
|
980
|
+
|
981
|
+
end # of Gem::Dependency
|
982
|
+
class Gem::DependencyError
|
983
|
+
include RubyBreaker::Broken;
|
984
|
+
end # of Gem::DependencyError
|
985
|
+
class Gem::DependencyList
|
986
|
+
include RubyBreaker::Broken
|
987
|
+
typesig("add(?*) -> basic_object")
|
988
|
+
typesig("clear(?*) -> basic_object")
|
989
|
+
typesig("dependency_order(?*) -> basic_object")
|
990
|
+
typesig("development(?*) -> basic_object")
|
991
|
+
typesig("development=(?*) -> basic_object")
|
992
|
+
typesig("each(?*) -> basic_object")
|
993
|
+
typesig("find_name(?*) -> basic_object")
|
994
|
+
typesig("inspect(?*) -> basic_object")
|
995
|
+
typesig("ok?(?*) -> basic_object")
|
996
|
+
typesig("ok_to_remove?(?*) -> basic_object")
|
997
|
+
typesig("remove_by_name(?*) -> basic_object")
|
998
|
+
typesig("remove_specs_unsatisfied_by(?*) -> basic_object")
|
999
|
+
typesig("spec_predecessors(?*) -> basic_object")
|
1000
|
+
typesig("specs(?*) -> basic_object")
|
1001
|
+
typesig("tsort_each_child(?*) -> basic_object")
|
1002
|
+
typesig("tsort_each_node(?*) -> basic_object")
|
1003
|
+
typesig("why_not_ok?(?*) -> basic_object")
|
1004
|
+
class TSort::Cyclic
|
1005
|
+
include RubyBreaker::Broken;
|
1006
|
+
end # of TSort::Cyclic
|
1007
|
+
|
1008
|
+
end # of Gem::DependencyList
|
1009
|
+
class Gem::DependencyRemovalException
|
1010
|
+
include RubyBreaker::Broken;
|
1011
|
+
end # of Gem::DependencyRemovalException
|
1012
|
+
module Gem::Deprecate
|
1013
|
+
include RubyBreaker::Broken;
|
1014
|
+
end # of Gem::Deprecate
|
1015
|
+
class Gem::DocumentError
|
1016
|
+
include RubyBreaker::Broken;
|
1017
|
+
end # of Gem::DocumentError
|
1018
|
+
class Gem::EndOfYAMLException
|
1019
|
+
include RubyBreaker::Broken;
|
1020
|
+
end # of Gem::EndOfYAMLException
|
1021
|
+
class Gem::Exception
|
1022
|
+
include RubyBreaker::Broken;
|
1023
|
+
end # of Gem::Exception
|
1024
|
+
class Gem::FilePermissionError
|
1025
|
+
include RubyBreaker::Broken;
|
1026
|
+
end # of Gem::FilePermissionError
|
1027
|
+
class Gem::FormatException
|
1028
|
+
include RubyBreaker::Broken
|
1029
|
+
typesig("file_path(?*) -> basic_object")
|
1030
|
+
typesig("file_path=(?*) -> basic_object")
|
1031
|
+
|
1032
|
+
end # of Gem::FormatException
|
1033
|
+
class Gem::GemNotFoundException
|
1034
|
+
include RubyBreaker::Broken
|
1035
|
+
typesig("errors(?*) -> basic_object")
|
1036
|
+
typesig("name(?*) -> basic_object")
|
1037
|
+
typesig("version(?*) -> basic_object")
|
1038
|
+
|
1039
|
+
end # of Gem::GemNotFoundException
|
1040
|
+
class Gem::GemNotInHomeException
|
1041
|
+
include RubyBreaker::Broken
|
1042
|
+
typesig("spec(?*) -> basic_object")
|
1043
|
+
typesig("spec=(?*) -> basic_object")
|
1044
|
+
|
1045
|
+
end # of Gem::GemNotInHomeException
|
1046
|
+
class Gem::GemPathSearcher
|
1047
|
+
include RubyBreaker::Broken
|
1048
|
+
typesig("_deprecated_find(?*) -> basic_object")
|
1049
|
+
typesig("_deprecated_find_active(?*) -> basic_object")
|
1050
|
+
typesig("_deprecated_find_all(?*) -> basic_object")
|
1051
|
+
typesig("_deprecated_find_in_unresolved(?*) -> basic_object")
|
1052
|
+
typesig("_deprecated_find_in_unresolved_tree(?*) -> basic_object")
|
1053
|
+
typesig("_deprecated_find_spec_for_file(?*) -> basic_object")
|
1054
|
+
typesig("find(?*) -> basic_object")
|
1055
|
+
typesig("find_active(?*) -> basic_object")
|
1056
|
+
typesig("find_all(?*) -> basic_object")
|
1057
|
+
typesig("find_in_unresolved(?*) -> basic_object")
|
1058
|
+
typesig("find_in_unresolved_tree(?*) -> basic_object")
|
1059
|
+
typesig("find_spec_for_file(?*) -> basic_object")
|
1060
|
+
typesig("init_gemspecs(?*) -> basic_object")
|
1061
|
+
typesig("lib_dirs_for(?*) -> basic_object")
|
1062
|
+
typesig("matching_file?(?*) -> basic_object")
|
1063
|
+
typesig("matching_files(?*) -> basic_object")
|
1064
|
+
typesig("matching_paths(?*) -> basic_object")
|
1065
|
+
|
1066
|
+
end # of Gem::GemPathSearcher
|
1067
|
+
class Gem::InstallError
|
1068
|
+
include RubyBreaker::Broken;
|
1069
|
+
end # of Gem::InstallError
|
1070
|
+
class Gem::InvalidSpecificationException
|
1071
|
+
include RubyBreaker::Broken;
|
1072
|
+
end # of Gem::InvalidSpecificationException
|
1073
|
+
class Gem::LoadError
|
1074
|
+
include RubyBreaker::Broken
|
1075
|
+
typesig("name(?*) -> basic_object")
|
1076
|
+
typesig("name=(?*) -> basic_object")
|
1077
|
+
typesig("requirement(?*) -> basic_object")
|
1078
|
+
typesig("requirement=(?*) -> basic_object")
|
1079
|
+
|
1080
|
+
end # of Gem::LoadError
|
1081
|
+
class Gem::OperationNotSupportedError
|
1082
|
+
include RubyBreaker::Broken;
|
1083
|
+
end # of Gem::OperationNotSupportedError
|
1084
|
+
class Gem::PathSupport
|
1085
|
+
include RubyBreaker::Broken
|
1086
|
+
typesig("home(?*) -> basic_object")
|
1087
|
+
typesig("path(?*) -> basic_object")
|
1088
|
+
|
1089
|
+
end # of Gem::PathSupport
|
1090
|
+
class Gem::Platform
|
1091
|
+
include RubyBreaker::Broken
|
1092
|
+
typesig("==(?*) -> basic_object")
|
1093
|
+
typesig("===(?*) -> basic_object")
|
1094
|
+
typesig("=~(?*) -> basic_object")
|
1095
|
+
typesig("_deprecated_empty?(?*) -> basic_object")
|
1096
|
+
typesig("cpu(?*) -> basic_object")
|
1097
|
+
typesig("cpu=(?*) -> basic_object")
|
1098
|
+
typesig("empty?(?*) -> basic_object")
|
1099
|
+
typesig("eql?(?*) -> basic_object")
|
1100
|
+
typesig("hash(?*) -> basic_object")
|
1101
|
+
typesig("inspect(?*) -> basic_object")
|
1102
|
+
typesig("os(?*) -> basic_object")
|
1103
|
+
typesig("os=(?*) -> basic_object")
|
1104
|
+
typesig("to_a(?*) -> basic_object")
|
1105
|
+
typesig("to_s(?*) -> basic_object")
|
1106
|
+
typesig("version(?*) -> basic_object")
|
1107
|
+
typesig("version=(?*) -> basic_object")
|
1108
|
+
|
1109
|
+
end # of Gem::Platform
|
1110
|
+
class Gem::RemoteError
|
1111
|
+
include RubyBreaker::Broken;
|
1112
|
+
end # of Gem::RemoteError
|
1113
|
+
class Gem::RemoteInstallationCancelled
|
1114
|
+
include RubyBreaker::Broken;
|
1115
|
+
end # of Gem::RemoteInstallationCancelled
|
1116
|
+
class Gem::RemoteInstallationSkipped
|
1117
|
+
include RubyBreaker::Broken;
|
1118
|
+
end # of Gem::RemoteInstallationSkipped
|
1119
|
+
class Gem::RemoteSourceException
|
1120
|
+
include RubyBreaker::Broken;
|
1121
|
+
end # of Gem::RemoteSourceException
|
1122
|
+
class Gem::Requirement
|
1123
|
+
include RubyBreaker::Broken
|
1124
|
+
typesig("<=>(?*) -> basic_object")
|
1125
|
+
typesig("===(?*) -> basic_object")
|
1126
|
+
typesig("=~(?*) -> basic_object")
|
1127
|
+
typesig("as_list(?*) -> basic_object")
|
1128
|
+
typesig("hash(?*) -> basic_object")
|
1129
|
+
typesig("init_with(?*) -> basic_object")
|
1130
|
+
typesig("marshal_dump(?*) -> basic_object")
|
1131
|
+
typesig("marshal_load(?*) -> basic_object")
|
1132
|
+
typesig("none?(?*) -> basic_object")
|
1133
|
+
typesig("prerelease?(?*) -> basic_object")
|
1134
|
+
typesig("pretty_print(?*) -> basic_object")
|
1135
|
+
typesig("requirements(?*) -> basic_object")
|
1136
|
+
typesig("satisfied_by?(?*) -> basic_object")
|
1137
|
+
typesig("specific?(?*) -> basic_object")
|
1138
|
+
typesig("to_s(?*) -> basic_object")
|
1139
|
+
typesig("yaml_initialize(?*) -> basic_object")
|
1140
|
+
|
1141
|
+
end # of Gem::Requirement
|
1142
|
+
class Gem::SpecFetcher
|
1143
|
+
include RubyBreaker::Broken
|
1144
|
+
typesig("cache_dir(?*) -> basic_object")
|
1145
|
+
typesig("dir(?*) -> basic_object")
|
1146
|
+
typesig("fetch(?*) -> basic_object")
|
1147
|
+
typesig("fetch_spec(?*) -> basic_object")
|
1148
|
+
typesig("fetch_with_errors(?*) -> basic_object")
|
1149
|
+
typesig("find_matching(?*) -> basic_object")
|
1150
|
+
typesig("find_matching_with_errors(?*) -> basic_object")
|
1151
|
+
typesig("latest_specs(?*) -> basic_object")
|
1152
|
+
typesig("list(?*) -> basic_object")
|
1153
|
+
typesig("load_specs(?*) -> basic_object")
|
1154
|
+
typesig("prerelease_specs(?*) -> basic_object")
|
1155
|
+
typesig("specs(?*) -> basic_object")
|
1156
|
+
typesig("suggest_gems_from_name(?*) -> basic_object")
|
1157
|
+
|
1158
|
+
end # of Gem::SpecFetcher
|
1159
|
+
class Gem::Specification
|
1160
|
+
include RubyBreaker::Broken
|
1161
|
+
typesig("<=>(?*) -> basic_object")
|
1162
|
+
typesig("==(?*) -> basic_object")
|
1163
|
+
typesig("_deprecated_cache_gem(?*) -> basic_object")
|
1164
|
+
typesig("_deprecated_installation_path(?*) -> basic_object")
|
1165
|
+
typesig("_deprecated_loaded(?*) -> basic_object")
|
1166
|
+
typesig("_deprecated_loaded=(?*) -> basic_object")
|
1167
|
+
typesig("_deprecated_loaded?(?*) -> basic_object")
|
1168
|
+
typesig("_deprecated_test_suite_file(?*) -> basic_object")
|
1169
|
+
typesig("_deprecated_test_suite_file=(?*) -> basic_object")
|
1170
|
+
typesig("_dump(?*) -> basic_object")
|
1171
|
+
typesig("activate(?*) -> basic_object")
|
1172
|
+
typesig("activate_dependencies(?*) -> basic_object")
|
1173
|
+
typesig("activated(?*) -> basic_object")
|
1174
|
+
typesig("activated=(?*) -> basic_object")
|
1175
|
+
typesig("activated?(?*) -> basic_object")
|
1176
|
+
typesig("add_bindir(?*) -> basic_object")
|
1177
|
+
typesig("add_dependency(?*) -> basic_object")
|
1178
|
+
typesig("add_development_dependency(?*) -> basic_object")
|
1179
|
+
typesig("add_runtime_dependency(?*) -> basic_object")
|
1180
|
+
typesig("add_self_to_load_path(?*) -> basic_object")
|
1181
|
+
typesig("author(?*) -> basic_object")
|
1182
|
+
typesig("author=(?*) -> basic_object")
|
1183
|
+
typesig("authors(?*) -> basic_object")
|
1184
|
+
typesig("authors=(?*) -> basic_object")
|
1185
|
+
typesig("autorequire(?*) -> basic_object")
|
1186
|
+
typesig("autorequire=(?*) -> basic_object")
|
1187
|
+
typesig("base_dir(?*) -> basic_object")
|
1188
|
+
typesig("bin_dir(?*) -> basic_object")
|
1189
|
+
typesig("bin_file(?*) -> basic_object")
|
1190
|
+
typesig("bindir(?*) -> basic_object")
|
1191
|
+
typesig("bindir=(?*) -> basic_object")
|
1192
|
+
typesig("cache_dir(?*) -> basic_object")
|
1193
|
+
typesig("cache_file(?*) -> basic_object")
|
1194
|
+
typesig("cache_gem(?*) -> basic_object")
|
1195
|
+
typesig("cert_chain(?*) -> basic_object")
|
1196
|
+
typesig("cert_chain=(?*) -> basic_object")
|
1197
|
+
typesig("conflicts(?*) -> basic_object")
|
1198
|
+
typesig("contains_requirable_file?(?*) -> basic_object")
|
1199
|
+
typesig("date(?*) -> basic_object")
|
1200
|
+
typesig("date=(?*) -> basic_object")
|
1201
|
+
typesig("default_executable(?*) -> basic_object")
|
1202
|
+
typesig("default_executable=(?*) -> basic_object")
|
1203
|
+
typesig("default_value(?*) -> basic_object")
|
1204
|
+
typesig("dependencies(?*) -> basic_object")
|
1205
|
+
typesig("dependent_gems(?*) -> basic_object")
|
1206
|
+
typesig("dependent_specs(?*) -> basic_object")
|
1207
|
+
typesig("description(?*) -> basic_object")
|
1208
|
+
typesig("description=(?*) -> basic_object")
|
1209
|
+
typesig("development_dependencies(?*) -> basic_object")
|
1210
|
+
typesig("doc_dir(?*) -> basic_object")
|
1211
|
+
typesig("email(?*) -> basic_object")
|
1212
|
+
typesig("email=(?*) -> basic_object")
|
1213
|
+
typesig("encode_with(?*) -> basic_object")
|
1214
|
+
typesig("eql?(?*) -> basic_object")
|
1215
|
+
typesig("executable(?*) -> basic_object")
|
1216
|
+
typesig("executable=(?*) -> basic_object")
|
1217
|
+
typesig("executables(?*) -> basic_object")
|
1218
|
+
typesig("executables=(?*) -> basic_object")
|
1219
|
+
typesig("extensions(?*) -> basic_object")
|
1220
|
+
typesig("extensions=(?*) -> basic_object")
|
1221
|
+
typesig("extra_rdoc_files(?*) -> basic_object")
|
1222
|
+
typesig("extra_rdoc_files=(?*) -> basic_object")
|
1223
|
+
typesig("file_name(?*) -> basic_object")
|
1224
|
+
typesig("files(?*) -> basic_object")
|
1225
|
+
typesig("files=(?*) -> basic_object")
|
1226
|
+
typesig("for_cache(?*) -> basic_object")
|
1227
|
+
typesig("full_gem_path(?*) -> basic_object")
|
1228
|
+
typesig("full_name(?*) -> basic_object")
|
1229
|
+
typesig("gem_dir(?*) -> basic_object")
|
1230
|
+
typesig("gems_dir(?*) -> basic_object")
|
1231
|
+
typesig("has_rdoc(?*) -> basic_object")
|
1232
|
+
typesig("has_rdoc=(?*) -> basic_object")
|
1233
|
+
typesig("has_rdoc?(?*) -> basic_object")
|
1234
|
+
typesig("has_test_suite?(?*) -> basic_object")
|
1235
|
+
typesig("has_unit_tests?(?*) -> basic_object")
|
1236
|
+
typesig("hash(?*) -> basic_object")
|
1237
|
+
typesig("homepage(?*) -> basic_object")
|
1238
|
+
typesig("homepage=(?*) -> basic_object")
|
1239
|
+
typesig("init_with(?*) -> basic_object")
|
1240
|
+
typesig("installation_path(?*) -> basic_object")
|
1241
|
+
typesig("lib_dirs_glob(?*) -> basic_object")
|
1242
|
+
typesig("lib_files(?*) -> basic_object")
|
1243
|
+
typesig("license(?*) -> basic_object")
|
1244
|
+
typesig("license=(?*) -> basic_object")
|
1245
|
+
typesig("licenses(?*) -> basic_object")
|
1246
|
+
typesig("licenses=(?*) -> basic_object")
|
1247
|
+
typesig("loaded(?*) -> basic_object")
|
1248
|
+
typesig("loaded=(?*) -> basic_object")
|
1249
|
+
typesig("loaded?(?*) -> basic_object")
|
1250
|
+
typesig("loaded_from(?*) -> basic_object")
|
1251
|
+
typesig("loaded_from=(?*) -> basic_object")
|
1252
|
+
typesig("mark_version(?*) -> basic_object")
|
1253
|
+
typesig("matches_for_glob(?*) -> basic_object")
|
1254
|
+
typesig("method_missing(?*) -> basic_object")
|
1255
|
+
typesig("name(?*) -> basic_object")
|
1256
|
+
typesig("name=(?*) -> basic_object")
|
1257
|
+
typesig("normalize(?*) -> basic_object")
|
1258
|
+
typesig("original_name(?*) -> basic_object")
|
1259
|
+
typesig("original_platform(?*) -> basic_object")
|
1260
|
+
typesig("original_platform=(?*) -> basic_object")
|
1261
|
+
typesig("platform(?*) -> basic_object")
|
1262
|
+
typesig("platform=(?*) -> basic_object")
|
1263
|
+
typesig("post_install_message(?*) -> basic_object")
|
1264
|
+
typesig("post_install_message=(?*) -> basic_object")
|
1265
|
+
typesig("pretty_print(?*) -> basic_object")
|
1266
|
+
typesig("raise_if_conflicts(?*) -> basic_object")
|
1267
|
+
typesig("rdoc_options(?*) -> basic_object")
|
1268
|
+
typesig("rdoc_options=(?*) -> basic_object")
|
1269
|
+
typesig("require_path(?*) -> basic_object")
|
1270
|
+
typesig("require_path=(?*) -> basic_object")
|
1271
|
+
typesig("require_paths(?*) -> basic_object")
|
1272
|
+
typesig("require_paths=(?*) -> basic_object")
|
1273
|
+
typesig("required_ruby_version(?*) -> basic_object")
|
1274
|
+
typesig("required_ruby_version=(?*) -> basic_object")
|
1275
|
+
typesig("required_rubygems_version(?*) -> basic_object")
|
1276
|
+
typesig("required_rubygems_version=(?*) -> basic_object")
|
1277
|
+
typesig("requirements(?*) -> basic_object")
|
1278
|
+
typesig("requirements=(?*) -> basic_object")
|
1279
|
+
typesig("ri_dir(?*) -> basic_object")
|
1280
|
+
typesig("rubyforge_project(?*) -> basic_object")
|
1281
|
+
typesig("rubyforge_project=(?*) -> basic_object")
|
1282
|
+
typesig("rubygems_version(?*) -> basic_object")
|
1283
|
+
typesig("rubygems_version=(?*) -> basic_object")
|
1284
|
+
typesig("runtime_dependencies(?*) -> basic_object")
|
1285
|
+
typesig("satisfies_requirement?(?*) -> basic_object")
|
1286
|
+
typesig("signing_key(?*) -> basic_object")
|
1287
|
+
typesig("signing_key=(?*) -> basic_object")
|
1288
|
+
typesig("sort_obj(?*) -> basic_object")
|
1289
|
+
typesig("spec_dir(?*) -> basic_object")
|
1290
|
+
typesig("spec_file(?*) -> basic_object")
|
1291
|
+
typesig("spec_name(?*) -> basic_object")
|
1292
|
+
typesig("specification_version(?*) -> basic_object")
|
1293
|
+
typesig("specification_version=(?*) -> basic_object")
|
1294
|
+
typesig("summary(?*) -> basic_object")
|
1295
|
+
typesig("summary=(?*) -> basic_object")
|
1296
|
+
typesig("test_file(?*) -> basic_object")
|
1297
|
+
typesig("test_file=(?*) -> basic_object")
|
1298
|
+
typesig("test_files(?*) -> basic_object")
|
1299
|
+
typesig("test_files=(?*) -> basic_object")
|
1300
|
+
typesig("test_suite_file(?*) -> basic_object")
|
1301
|
+
typesig("test_suite_file=(?*) -> basic_object")
|
1302
|
+
typesig("to_ruby(?*) -> basic_object")
|
1303
|
+
typesig("to_ruby_for_cache(?*) -> basic_object")
|
1304
|
+
typesig("to_s(?*) -> basic_object")
|
1305
|
+
typesig("to_yaml(?*) -> basic_object")
|
1306
|
+
typesig("traverse(?*) -> basic_object")
|
1307
|
+
typesig("validate(?*) -> basic_object")
|
1308
|
+
typesig("version(?*) -> basic_object")
|
1309
|
+
typesig("version=(?*) -> basic_object")
|
1310
|
+
typesig("yaml_initialize(?*) -> basic_object")
|
1311
|
+
|
1312
|
+
end # of Gem::Specification
|
1313
|
+
class Gem::SystemExitException
|
1314
|
+
include RubyBreaker::Broken
|
1315
|
+
typesig("exit_code(?*) -> basic_object")
|
1316
|
+
typesig("exit_code=(?*) -> basic_object")
|
1317
|
+
|
1318
|
+
end # of Gem::SystemExitException
|
1319
|
+
class Gem::VerificationError
|
1320
|
+
include RubyBreaker::Broken;
|
1321
|
+
end # of Gem::VerificationError
|
1322
|
+
class Gem::Version
|
1323
|
+
include RubyBreaker::Broken
|
1324
|
+
typesig("<=>(?*) -> basic_object")
|
1325
|
+
typesig("bump(?*) -> basic_object")
|
1326
|
+
typesig("eql?(?*) -> basic_object")
|
1327
|
+
typesig("hash(?*) -> basic_object")
|
1328
|
+
typesig("init_with(?*) -> basic_object")
|
1329
|
+
typesig("inspect(?*) -> basic_object")
|
1330
|
+
typesig("marshal_dump(?*) -> basic_object")
|
1331
|
+
typesig("marshal_load(?*) -> basic_object")
|
1332
|
+
typesig("prerelease?(?*) -> basic_object")
|
1333
|
+
typesig("pretty_print(?*) -> basic_object")
|
1334
|
+
typesig("release(?*) -> basic_object")
|
1335
|
+
typesig("segments(?*) -> basic_object")
|
1336
|
+
typesig("spermy_recommendation(?*) -> basic_object")
|
1337
|
+
typesig("to_s(?*) -> basic_object")
|
1338
|
+
typesig("version(?*) -> basic_object")
|
1339
|
+
typesig("yaml_initialize(?*) -> basic_object")
|
1340
|
+
|
1341
|
+
end # of Gem::Version
|
1342
|
+
|
1343
|
+
end # of Gem
|
1344
|
+
class Hash
|
1345
|
+
include RubyBreaker::Broken
|
1346
|
+
typesig("==(?*) -> basic_object")
|
1347
|
+
typesig("[](?*) -> basic_object")
|
1348
|
+
typesig("[]=(?*) -> basic_object")
|
1349
|
+
typesig("assoc(?*) -> basic_object")
|
1350
|
+
typesig("clear(?*) -> basic_object")
|
1351
|
+
typesig("compare_by_identity(?*) -> basic_object")
|
1352
|
+
typesig("compare_by_identity?(?*) -> basic_object")
|
1353
|
+
typesig("default(?*) -> basic_object")
|
1354
|
+
typesig("default=(?*) -> basic_object")
|
1355
|
+
typesig("default_proc(?*) -> basic_object")
|
1356
|
+
typesig("default_proc=(?*) -> basic_object")
|
1357
|
+
typesig("delete(?*) -> basic_object")
|
1358
|
+
typesig("delete_if(?*) -> basic_object")
|
1359
|
+
typesig("each(?*) -> basic_object")
|
1360
|
+
typesig("each_key(?*) -> basic_object")
|
1361
|
+
typesig("each_pair(?*) -> basic_object")
|
1362
|
+
typesig("each_value(?*) -> basic_object")
|
1363
|
+
typesig("empty?(?*) -> basic_object")
|
1364
|
+
typesig("eql?(?*) -> basic_object")
|
1365
|
+
typesig("fetch(?*) -> basic_object")
|
1366
|
+
typesig("flatten(?*) -> basic_object")
|
1367
|
+
typesig("has_key?(?*) -> basic_object")
|
1368
|
+
typesig("has_value?(?*) -> basic_object")
|
1369
|
+
typesig("hash(?*) -> basic_object")
|
1370
|
+
typesig("include?(?*) -> basic_object")
|
1371
|
+
typesig("index(?*) -> basic_object")
|
1372
|
+
typesig("inspect(?*) -> basic_object")
|
1373
|
+
typesig("invert(?*) -> basic_object")
|
1374
|
+
typesig("keep_if(?*) -> basic_object")
|
1375
|
+
typesig("key(?*) -> basic_object")
|
1376
|
+
typesig("key?(?*) -> basic_object")
|
1377
|
+
typesig("keys(?*) -> basic_object")
|
1378
|
+
typesig("length(?*) -> basic_object")
|
1379
|
+
typesig("member?(?*) -> basic_object")
|
1380
|
+
typesig("merge(?*) -> basic_object")
|
1381
|
+
typesig("merge!(?*) -> basic_object")
|
1382
|
+
typesig("rassoc(?*) -> basic_object")
|
1383
|
+
typesig("rehash(?*) -> basic_object")
|
1384
|
+
typesig("reject(?*) -> basic_object")
|
1385
|
+
typesig("reject!(?*) -> basic_object")
|
1386
|
+
typesig("replace(?*) -> basic_object")
|
1387
|
+
typesig("select(?*) -> basic_object")
|
1388
|
+
typesig("select!(?*) -> basic_object")
|
1389
|
+
typesig("shift(?*) -> basic_object")
|
1390
|
+
typesig("size(?*) -> basic_object")
|
1391
|
+
typesig("store(?*) -> basic_object")
|
1392
|
+
typesig("to_a(?*) -> basic_object")
|
1393
|
+
typesig("to_hash(?*) -> basic_object")
|
1394
|
+
typesig("to_s(?*) -> basic_object")
|
1395
|
+
typesig("update(?*) -> basic_object")
|
1396
|
+
typesig("value?(?*) -> basic_object")
|
1397
|
+
typesig("values(?*) -> basic_object")
|
1398
|
+
typesig("values_at(?*) -> basic_object")
|
1399
|
+
|
1400
|
+
end # of Hash
|
1401
|
+
class IO
|
1402
|
+
include RubyBreaker::Broken
|
1403
|
+
typesig("<<(?*) -> basic_object")
|
1404
|
+
typesig("advise(?*) -> basic_object")
|
1405
|
+
typesig("autoclose=(?*) -> basic_object")
|
1406
|
+
typesig("autoclose?(?*) -> basic_object")
|
1407
|
+
typesig("binmode(?*) -> basic_object")
|
1408
|
+
typesig("binmode?(?*) -> basic_object")
|
1409
|
+
typesig("bytes(?*) -> basic_object")
|
1410
|
+
typesig("chars(?*) -> basic_object")
|
1411
|
+
typesig("close(?*) -> basic_object")
|
1412
|
+
typesig("close_on_exec=(?*) -> basic_object")
|
1413
|
+
typesig("close_on_exec?(?*) -> basic_object")
|
1414
|
+
typesig("close_read(?*) -> basic_object")
|
1415
|
+
typesig("close_write(?*) -> basic_object")
|
1416
|
+
typesig("closed?(?*) -> basic_object")
|
1417
|
+
typesig("codepoints(?*) -> basic_object")
|
1418
|
+
typesig("each(?*) -> basic_object")
|
1419
|
+
typesig("each_byte(?*) -> basic_object")
|
1420
|
+
typesig("each_char(?*) -> basic_object")
|
1421
|
+
typesig("each_codepoint(?*) -> basic_object")
|
1422
|
+
typesig("each_line(?*) -> basic_object")
|
1423
|
+
typesig("eof(?*) -> basic_object")
|
1424
|
+
typesig("eof?(?*) -> basic_object")
|
1425
|
+
typesig("external_encoding(?*) -> basic_object")
|
1426
|
+
typesig("fcntl(?*) -> basic_object")
|
1427
|
+
typesig("fdatasync(?*) -> basic_object")
|
1428
|
+
typesig("fileno(?*) -> basic_object")
|
1429
|
+
typesig("flush(?*) -> basic_object")
|
1430
|
+
typesig("fsync(?*) -> basic_object")
|
1431
|
+
typesig("getbyte(?*) -> basic_object")
|
1432
|
+
typesig("getc(?*) -> basic_object")
|
1433
|
+
typesig("gets(?*) -> basic_object")
|
1434
|
+
typesig("inspect(?*) -> basic_object")
|
1435
|
+
typesig("internal_encoding(?*) -> basic_object")
|
1436
|
+
typesig("ioctl(?*) -> basic_object")
|
1437
|
+
typesig("isatty(?*) -> basic_object")
|
1438
|
+
typesig("lineno(?*) -> basic_object")
|
1439
|
+
typesig("lineno=(?*) -> basic_object")
|
1440
|
+
typesig("lines(?*) -> basic_object")
|
1441
|
+
typesig("pid(?*) -> basic_object")
|
1442
|
+
typesig("pos(?*) -> basic_object")
|
1443
|
+
typesig("pos=(?*) -> basic_object")
|
1444
|
+
typesig("print(?*) -> basic_object")
|
1445
|
+
typesig("printf(?*) -> basic_object")
|
1446
|
+
typesig("putc(?*) -> basic_object")
|
1447
|
+
typesig("puts(?*) -> basic_object")
|
1448
|
+
typesig("read(?*) -> basic_object")
|
1449
|
+
typesig("read_nonblock(?*) -> basic_object")
|
1450
|
+
typesig("readbyte(?*) -> basic_object")
|
1451
|
+
typesig("readchar(?*) -> basic_object")
|
1452
|
+
typesig("readline(?*) -> basic_object")
|
1453
|
+
typesig("readlines(?*) -> basic_object")
|
1454
|
+
typesig("readpartial(?*) -> basic_object")
|
1455
|
+
typesig("reopen(?*) -> basic_object")
|
1456
|
+
typesig("rewind(?*) -> basic_object")
|
1457
|
+
typesig("seek(?*) -> basic_object")
|
1458
|
+
typesig("set_encoding(?*) -> basic_object")
|
1459
|
+
typesig("stat(?*) -> basic_object")
|
1460
|
+
typesig("sync(?*) -> basic_object")
|
1461
|
+
typesig("sync=(?*) -> basic_object")
|
1462
|
+
typesig("sysread(?*) -> basic_object")
|
1463
|
+
typesig("sysseek(?*) -> basic_object")
|
1464
|
+
typesig("syswrite(?*) -> basic_object")
|
1465
|
+
typesig("tell(?*) -> basic_object")
|
1466
|
+
typesig("to_i(?*) -> basic_object")
|
1467
|
+
typesig("to_io(?*) -> basic_object")
|
1468
|
+
typesig("tty?(?*) -> basic_object")
|
1469
|
+
typesig("ungetbyte(?*) -> basic_object")
|
1470
|
+
typesig("ungetc(?*) -> basic_object")
|
1471
|
+
typesig("write(?*) -> basic_object")
|
1472
|
+
typesig("write_nonblock(?*) -> basic_object")
|
1473
|
+
|
1474
|
+
end # of IO
|
1475
|
+
class IOError
|
1476
|
+
include RubyBreaker::Broken;
|
1477
|
+
end # of IOError
|
1478
|
+
class IndexError
|
1479
|
+
include RubyBreaker::Broken;
|
1480
|
+
end # of IndexError
|
1481
|
+
class Integer
|
1482
|
+
include RubyBreaker::Broken
|
1483
|
+
typesig("ceil(?*) -> basic_object")
|
1484
|
+
typesig("chr(?*) -> basic_object")
|
1485
|
+
typesig("denominator(?*) -> basic_object")
|
1486
|
+
typesig("downto(?*) -> basic_object")
|
1487
|
+
typesig("even?(?*) -> basic_object")
|
1488
|
+
typesig("floor(?*) -> basic_object")
|
1489
|
+
typesig("gcd(?*) -> basic_object")
|
1490
|
+
typesig("gcdlcm(?*) -> basic_object")
|
1491
|
+
typesig("integer?(?*) -> basic_object")
|
1492
|
+
typesig("lcm(?*) -> basic_object")
|
1493
|
+
typesig("next(?*) -> basic_object")
|
1494
|
+
typesig("numerator(?*) -> basic_object")
|
1495
|
+
typesig("odd?(?*) -> basic_object")
|
1496
|
+
typesig("ord(?*) -> basic_object")
|
1497
|
+
typesig("pred(?*) -> basic_object")
|
1498
|
+
typesig("rationalize(?*) -> basic_object")
|
1499
|
+
typesig("round(?*) -> basic_object")
|
1500
|
+
typesig("succ(?*) -> basic_object")
|
1501
|
+
typesig("times(?*) -> basic_object")
|
1502
|
+
typesig("to_i(?*) -> basic_object")
|
1503
|
+
typesig("to_int(?*) -> basic_object")
|
1504
|
+
typesig("to_r(?*) -> basic_object")
|
1505
|
+
typesig("truncate(?*) -> basic_object")
|
1506
|
+
typesig("upto(?*) -> basic_object")
|
1507
|
+
|
1508
|
+
end # of Integer
|
1509
|
+
class Interrupt
|
1510
|
+
include RubyBreaker::Broken;
|
1511
|
+
end # of Interrupt
|
1512
|
+
module Kernel
|
1513
|
+
include RubyBreaker::Broken
|
1514
|
+
typesig("!~(?*) -> basic_object")
|
1515
|
+
typesig("<=>(?*) -> basic_object")
|
1516
|
+
typesig("===(?*) -> basic_object")
|
1517
|
+
typesig("=~(?*) -> basic_object")
|
1518
|
+
typesig("class(?*) -> basic_object")
|
1519
|
+
typesig("clone(?*) -> basic_object")
|
1520
|
+
typesig("define_singleton_method(?*) -> basic_object")
|
1521
|
+
typesig("display(?*) -> basic_object")
|
1522
|
+
typesig("dup(?*) -> basic_object")
|
1523
|
+
typesig("enum_for(?*) -> basic_object")
|
1524
|
+
typesig("eql?(?*) -> basic_object")
|
1525
|
+
typesig("extend(?*) -> basic_object")
|
1526
|
+
typesig("freeze(?*) -> basic_object")
|
1527
|
+
typesig("frozen?(?*) -> basic_object")
|
1528
|
+
typesig("hash(?*) -> basic_object")
|
1529
|
+
typesig("initialize_clone(?*) -> basic_object")
|
1530
|
+
typesig("initialize_dup(?*) -> basic_object")
|
1531
|
+
typesig("inspect(?*) -> basic_object")
|
1532
|
+
typesig("instance_of?(?*) -> basic_object")
|
1533
|
+
typesig("instance_variable_defined?(?*) -> basic_object")
|
1534
|
+
typesig("instance_variable_get(?*) -> basic_object")
|
1535
|
+
typesig("instance_variable_set(?*) -> basic_object")
|
1536
|
+
typesig("instance_variables(?*) -> basic_object")
|
1537
|
+
typesig("is_a?(?*) -> basic_object")
|
1538
|
+
typesig("kind_of?(?*) -> basic_object")
|
1539
|
+
typesig("method(?*) -> basic_object")
|
1540
|
+
typesig("methods(?*) -> basic_object")
|
1541
|
+
typesig("nil?(?*) -> basic_object")
|
1542
|
+
typesig("object_id(?*) -> basic_object")
|
1543
|
+
typesig("private_methods(?*) -> basic_object")
|
1544
|
+
typesig("protected_methods(?*) -> basic_object")
|
1545
|
+
typesig("public_method(?*) -> basic_object")
|
1546
|
+
typesig("public_methods(?*) -> basic_object")
|
1547
|
+
typesig("public_send(?*) -> basic_object")
|
1548
|
+
typesig("respond_to?(?*) -> basic_object")
|
1549
|
+
typesig("respond_to_missing?(?*) -> basic_object")
|
1550
|
+
typesig("send(?*) -> basic_object")
|
1551
|
+
typesig("singleton_class(?*) -> basic_object")
|
1552
|
+
typesig("singleton_methods(?*) -> basic_object")
|
1553
|
+
typesig("taint(?*) -> basic_object")
|
1554
|
+
typesig("tainted?(?*) -> basic_object")
|
1555
|
+
typesig("tap(?*) -> basic_object")
|
1556
|
+
typesig("to_enum(?*) -> basic_object")
|
1557
|
+
typesig("to_s(?*) -> basic_object")
|
1558
|
+
typesig("trust(?*) -> basic_object")
|
1559
|
+
typesig("untaint(?*) -> basic_object")
|
1560
|
+
typesig("untrust(?*) -> basic_object")
|
1561
|
+
typesig("untrusted?(?*) -> basic_object")
|
1562
|
+
|
1563
|
+
end # of Kernel
|
1564
|
+
class KeyError
|
1565
|
+
include RubyBreaker::Broken;
|
1566
|
+
end # of KeyError
|
1567
|
+
class LoadError
|
1568
|
+
include RubyBreaker::Broken;
|
1569
|
+
end # of LoadError
|
1570
|
+
class LocalJumpError
|
1571
|
+
include RubyBreaker::Broken
|
1572
|
+
typesig("exit_value(?*) -> basic_object")
|
1573
|
+
typesig("reason(?*) -> basic_object")
|
1574
|
+
|
1575
|
+
end # of LocalJumpError
|
1576
|
+
module Marshal
|
1577
|
+
include RubyBreaker::Broken;
|
1578
|
+
end # of Marshal
|
1579
|
+
class MatchData
|
1580
|
+
include RubyBreaker::Broken
|
1581
|
+
typesig("==(?*) -> basic_object")
|
1582
|
+
typesig("[](?*) -> basic_object")
|
1583
|
+
typesig("begin(?*) -> basic_object")
|
1584
|
+
typesig("captures(?*) -> basic_object")
|
1585
|
+
typesig("end(?*) -> basic_object")
|
1586
|
+
typesig("eql?(?*) -> basic_object")
|
1587
|
+
typesig("hash(?*) -> basic_object")
|
1588
|
+
typesig("inspect(?*) -> basic_object")
|
1589
|
+
typesig("length(?*) -> basic_object")
|
1590
|
+
typesig("names(?*) -> basic_object")
|
1591
|
+
typesig("offset(?*) -> basic_object")
|
1592
|
+
typesig("post_match(?*) -> basic_object")
|
1593
|
+
typesig("pre_match(?*) -> basic_object")
|
1594
|
+
typesig("regexp(?*) -> basic_object")
|
1595
|
+
typesig("size(?*) -> basic_object")
|
1596
|
+
typesig("string(?*) -> basic_object")
|
1597
|
+
typesig("to_a(?*) -> basic_object")
|
1598
|
+
typesig("to_s(?*) -> basic_object")
|
1599
|
+
typesig("values_at(?*) -> basic_object")
|
1600
|
+
|
1601
|
+
end # of MatchData
|
1602
|
+
module Math
|
1603
|
+
include RubyBreaker::Broken
|
1604
|
+
class Math::DomainError
|
1605
|
+
include RubyBreaker::Broken;
|
1606
|
+
end # of Math::DomainError
|
1607
|
+
|
1608
|
+
end # of Math
|
1609
|
+
class Method
|
1610
|
+
include RubyBreaker::Broken
|
1611
|
+
typesig("==(?*) -> basic_object")
|
1612
|
+
typesig("[](?*) -> basic_object")
|
1613
|
+
typesig("arity(?*) -> basic_object")
|
1614
|
+
typesig("call(?*) -> basic_object")
|
1615
|
+
typesig("clone(?*) -> basic_object")
|
1616
|
+
typesig("eql?(?*) -> basic_object")
|
1617
|
+
typesig("hash(?*) -> basic_object")
|
1618
|
+
typesig("inspect(?*) -> basic_object")
|
1619
|
+
typesig("name(?*) -> basic_object")
|
1620
|
+
typesig("owner(?*) -> basic_object")
|
1621
|
+
typesig("parameters(?*) -> basic_object")
|
1622
|
+
typesig("receiver(?*) -> basic_object")
|
1623
|
+
typesig("source_location(?*) -> basic_object")
|
1624
|
+
typesig("to_proc(?*) -> basic_object")
|
1625
|
+
typesig("to_s(?*) -> basic_object")
|
1626
|
+
typesig("unbind(?*) -> basic_object")
|
1627
|
+
|
1628
|
+
end # of Method
|
1629
|
+
class Mutex
|
1630
|
+
include RubyBreaker::Broken
|
1631
|
+
typesig("lock(?*) -> basic_object")
|
1632
|
+
typesig("locked?(?*) -> basic_object")
|
1633
|
+
typesig("sleep(?*) -> basic_object")
|
1634
|
+
typesig("synchronize(?*) -> basic_object")
|
1635
|
+
typesig("try_lock(?*) -> basic_object")
|
1636
|
+
typesig("unlock(?*) -> basic_object")
|
1637
|
+
|
1638
|
+
end # of Mutex
|
1639
|
+
class NameError
|
1640
|
+
include RubyBreaker::Broken
|
1641
|
+
typesig("name(?*) -> basic_object")
|
1642
|
+
typesig("to_s(?*) -> basic_object")
|
1643
|
+
|
1644
|
+
end # of NameError
|
1645
|
+
class NilClass
|
1646
|
+
include RubyBreaker::Broken
|
1647
|
+
typesig("&(?*) -> basic_object")
|
1648
|
+
typesig("^(?*) -> basic_object")
|
1649
|
+
typesig("inspect(?*) -> basic_object")
|
1650
|
+
typesig("nil?(?*) -> basic_object")
|
1651
|
+
typesig("rationalize(?*) -> basic_object")
|
1652
|
+
typesig("to_a(?*) -> basic_object")
|
1653
|
+
typesig("to_c(?*) -> basic_object")
|
1654
|
+
typesig("to_f(?*) -> basic_object")
|
1655
|
+
typesig("to_i(?*) -> basic_object")
|
1656
|
+
typesig("to_r(?*) -> basic_object")
|
1657
|
+
typesig("to_s(?*) -> basic_object")
|
1658
|
+
typesig("|(?*) -> basic_object")
|
1659
|
+
|
1660
|
+
end # of NilClass
|
1661
|
+
class NoMemoryError
|
1662
|
+
include RubyBreaker::Broken;
|
1663
|
+
end # of NoMemoryError
|
1664
|
+
class NoMethodError
|
1665
|
+
include RubyBreaker::Broken;typesig("args(?*) -> basic_object");
|
1666
|
+
end # of NoMethodError
|
1667
|
+
class NotImplementedError
|
1668
|
+
include RubyBreaker::Broken;
|
1669
|
+
end # of NotImplementedError
|
1670
|
+
class Numeric
|
1671
|
+
include RubyBreaker::Broken
|
1672
|
+
typesig("%(?*) -> basic_object")
|
1673
|
+
typesig("+@(?*) -> basic_object")
|
1674
|
+
typesig("-@(?*) -> basic_object")
|
1675
|
+
typesig("<=>(?*) -> basic_object")
|
1676
|
+
typesig("abs(?*) -> basic_object")
|
1677
|
+
typesig("abs2(?*) -> basic_object")
|
1678
|
+
typesig("angle(?*) -> basic_object")
|
1679
|
+
typesig("arg(?*) -> basic_object")
|
1680
|
+
typesig("ceil(?*) -> basic_object")
|
1681
|
+
typesig("coerce(?*) -> basic_object")
|
1682
|
+
typesig("conj(?*) -> basic_object")
|
1683
|
+
typesig("conjugate(?*) -> basic_object")
|
1684
|
+
typesig("denominator(?*) -> basic_object")
|
1685
|
+
typesig("div(?*) -> basic_object")
|
1686
|
+
typesig("divmod(?*) -> basic_object")
|
1687
|
+
typesig("eql?(?*) -> basic_object")
|
1688
|
+
typesig("fdiv(?*) -> basic_object")
|
1689
|
+
typesig("floor(?*) -> basic_object")
|
1690
|
+
typesig("i(?*) -> basic_object")
|
1691
|
+
typesig("imag(?*) -> basic_object")
|
1692
|
+
typesig("imaginary(?*) -> basic_object")
|
1693
|
+
typesig("integer?(?*) -> basic_object")
|
1694
|
+
typesig("magnitude(?*) -> basic_object")
|
1695
|
+
typesig("modulo(?*) -> basic_object")
|
1696
|
+
typesig("nonzero?(?*) -> basic_object")
|
1697
|
+
typesig("numerator(?*) -> basic_object")
|
1698
|
+
typesig("phase(?*) -> basic_object")
|
1699
|
+
typesig("polar(?*) -> basic_object")
|
1700
|
+
typesig("quo(?*) -> basic_object")
|
1701
|
+
typesig("real(?*) -> basic_object")
|
1702
|
+
typesig("real?(?*) -> basic_object")
|
1703
|
+
typesig("rect(?*) -> basic_object")
|
1704
|
+
typesig("rectangular(?*) -> basic_object")
|
1705
|
+
typesig("remainder(?*) -> basic_object")
|
1706
|
+
typesig("round(?*) -> basic_object")
|
1707
|
+
typesig("singleton_method_added(?*) -> basic_object")
|
1708
|
+
typesig("step(?*) -> basic_object")
|
1709
|
+
typesig("to_c(?*) -> basic_object")
|
1710
|
+
typesig("to_int(?*) -> basic_object")
|
1711
|
+
typesig("truncate(?*) -> basic_object")
|
1712
|
+
typesig("zero?(?*) -> basic_object")
|
1713
|
+
|
1714
|
+
end # of Numeric
|
1715
|
+
module ObjectSpace
|
1716
|
+
include RubyBreaker::Broken;
|
1717
|
+
end # of ObjectSpace
|
1718
|
+
class PrettyPrint
|
1719
|
+
include RubyBreaker::Broken
|
1720
|
+
typesig("break_outmost_groups(?*) -> basic_object")
|
1721
|
+
typesig("breakable(?*) -> basic_object")
|
1722
|
+
typesig("current_group(?*) -> basic_object")
|
1723
|
+
typesig("fill_breakable(?*) -> basic_object")
|
1724
|
+
typesig("first?(?*) -> basic_object")
|
1725
|
+
typesig("flush(?*) -> basic_object")
|
1726
|
+
typesig("genspace(?*) -> basic_object")
|
1727
|
+
typesig("group(?*) -> basic_object")
|
1728
|
+
typesig("group_queue(?*) -> basic_object")
|
1729
|
+
typesig("group_sub(?*) -> basic_object")
|
1730
|
+
typesig("indent(?*) -> basic_object")
|
1731
|
+
typesig("maxwidth(?*) -> basic_object")
|
1732
|
+
typesig("nest(?*) -> basic_object")
|
1733
|
+
typesig("newline(?*) -> basic_object")
|
1734
|
+
typesig("output(?*) -> basic_object")
|
1735
|
+
typesig("text(?*) -> basic_object")
|
1736
|
+
class PrettyPrint::Breakable
|
1737
|
+
include RubyBreaker::Broken
|
1738
|
+
typesig("indent(?*) -> basic_object")
|
1739
|
+
typesig("obj(?*) -> basic_object")
|
1740
|
+
typesig("output(?*) -> basic_object")
|
1741
|
+
typesig("width(?*) -> basic_object")
|
1742
|
+
|
1743
|
+
end # of PrettyPrint::Breakable
|
1744
|
+
class PrettyPrint::Group
|
1745
|
+
include RubyBreaker::Broken
|
1746
|
+
typesig("break(?*) -> basic_object")
|
1747
|
+
typesig("break?(?*) -> basic_object")
|
1748
|
+
typesig("breakables(?*) -> basic_object")
|
1749
|
+
typesig("depth(?*) -> basic_object")
|
1750
|
+
typesig("first?(?*) -> basic_object")
|
1751
|
+
|
1752
|
+
end # of PrettyPrint::Group
|
1753
|
+
class PrettyPrint::GroupQueue
|
1754
|
+
include RubyBreaker::Broken
|
1755
|
+
typesig("delete(?*) -> basic_object")
|
1756
|
+
typesig("deq(?*) -> basic_object")
|
1757
|
+
typesig("enq(?*) -> basic_object")
|
1758
|
+
|
1759
|
+
end # of PrettyPrint::GroupQueue
|
1760
|
+
class PrettyPrint::SingleLine
|
1761
|
+
include RubyBreaker::Broken
|
1762
|
+
typesig("breakable(?*) -> basic_object")
|
1763
|
+
typesig("first?(?*) -> basic_object")
|
1764
|
+
typesig("flush(?*) -> basic_object")
|
1765
|
+
typesig("group(?*) -> basic_object")
|
1766
|
+
typesig("nest(?*) -> basic_object")
|
1767
|
+
typesig("text(?*) -> basic_object")
|
1768
|
+
|
1769
|
+
end # of PrettyPrint::SingleLine
|
1770
|
+
class PrettyPrint::Text
|
1771
|
+
include RubyBreaker::Broken
|
1772
|
+
typesig("add(?*) -> basic_object")
|
1773
|
+
typesig("output(?*) -> basic_object")
|
1774
|
+
typesig("width(?*) -> basic_object")
|
1775
|
+
|
1776
|
+
end # of PrettyPrint::Text
|
1777
|
+
|
1778
|
+
end # of PrettyPrint
|
1779
|
+
class Proc
|
1780
|
+
include RubyBreaker::Broken
|
1781
|
+
typesig("==(?*) -> basic_object")
|
1782
|
+
typesig("===(?*) -> basic_object")
|
1783
|
+
typesig("[](?*) -> basic_object")
|
1784
|
+
typesig("arity(?*) -> basic_object")
|
1785
|
+
typesig("binding(?*) -> basic_object")
|
1786
|
+
typesig("call(?*) -> basic_object")
|
1787
|
+
typesig("clone(?*) -> basic_object")
|
1788
|
+
typesig("curry(?*) -> basic_object")
|
1789
|
+
typesig("dup(?*) -> basic_object")
|
1790
|
+
typesig("eql?(?*) -> basic_object")
|
1791
|
+
typesig("hash(?*) -> basic_object")
|
1792
|
+
typesig("lambda?(?*) -> basic_object")
|
1793
|
+
typesig("parameters(?*) -> basic_object")
|
1794
|
+
typesig("source_location(?*) -> basic_object")
|
1795
|
+
typesig("to_proc(?*) -> basic_object")
|
1796
|
+
typesig("to_s(?*) -> basic_object")
|
1797
|
+
typesig("yield(?*) -> basic_object")
|
1798
|
+
|
1799
|
+
end # of Proc
|
1800
|
+
module Process
|
1801
|
+
include RubyBreaker::Broken
|
1802
|
+
module Process::GID
|
1803
|
+
include RubyBreaker::Broken;
|
1804
|
+
end # of Process::GID
|
1805
|
+
class Process::Status
|
1806
|
+
include RubyBreaker::Broken
|
1807
|
+
typesig("&(?*) -> basic_object")
|
1808
|
+
typesig("==(?*) -> basic_object")
|
1809
|
+
typesig(">>(?*) -> basic_object")
|
1810
|
+
typesig("coredump?(?*) -> basic_object")
|
1811
|
+
typesig("exited?(?*) -> basic_object")
|
1812
|
+
typesig("exitstatus(?*) -> basic_object")
|
1813
|
+
typesig("inspect(?*) -> basic_object")
|
1814
|
+
typesig("pid(?*) -> basic_object")
|
1815
|
+
typesig("signaled?(?*) -> basic_object")
|
1816
|
+
typesig("stopped?(?*) -> basic_object")
|
1817
|
+
typesig("stopsig(?*) -> basic_object")
|
1818
|
+
typesig("success?(?*) -> basic_object")
|
1819
|
+
typesig("termsig(?*) -> basic_object")
|
1820
|
+
typesig("to_i(?*) -> basic_object")
|
1821
|
+
typesig("to_s(?*) -> basic_object")
|
1822
|
+
|
1823
|
+
end # of Process::Status
|
1824
|
+
module Process::Sys
|
1825
|
+
include RubyBreaker::Broken;
|
1826
|
+
end # of Process::Sys
|
1827
|
+
module Process::UID
|
1828
|
+
include RubyBreaker::Broken;
|
1829
|
+
end # of Process::UID
|
1830
|
+
|
1831
|
+
end # of Process
|
1832
|
+
class Random
|
1833
|
+
include RubyBreaker::Broken
|
1834
|
+
typesig("==(?*) -> basic_object")
|
1835
|
+
typesig("bytes(?*) -> basic_object")
|
1836
|
+
typesig("marshal_dump(?*) -> basic_object")
|
1837
|
+
typesig("marshal_load(?*) -> basic_object")
|
1838
|
+
typesig("rand(?*) -> basic_object")
|
1839
|
+
typesig("seed(?*) -> basic_object")
|
1840
|
+
|
1841
|
+
end # of Random
|
1842
|
+
class Range
|
1843
|
+
include RubyBreaker::Broken
|
1844
|
+
typesig("==(?*) -> basic_object")
|
1845
|
+
typesig("===(?*) -> basic_object")
|
1846
|
+
typesig("begin(?*) -> basic_object")
|
1847
|
+
typesig("cover?(?*) -> basic_object")
|
1848
|
+
typesig("each(?*) -> basic_object")
|
1849
|
+
typesig("end(?*) -> basic_object")
|
1850
|
+
typesig("eql?(?*) -> basic_object")
|
1851
|
+
typesig("exclude_end?(?*) -> basic_object")
|
1852
|
+
typesig("first(?*) -> basic_object")
|
1853
|
+
typesig("hash(?*) -> basic_object")
|
1854
|
+
typesig("include?(?*) -> basic_object")
|
1855
|
+
typesig("inspect(?*) -> basic_object")
|
1856
|
+
typesig("last(?*) -> basic_object")
|
1857
|
+
typesig("max(?*) -> basic_object")
|
1858
|
+
typesig("member?(?*) -> basic_object")
|
1859
|
+
typesig("min(?*) -> basic_object")
|
1860
|
+
typesig("step(?*) -> basic_object")
|
1861
|
+
typesig("to_s(?*) -> basic_object")
|
1862
|
+
|
1863
|
+
end # of Range
|
1864
|
+
class RangeError
|
1865
|
+
include RubyBreaker::Broken;
|
1866
|
+
end # of RangeError
|
1867
|
+
class Rational
|
1868
|
+
include RubyBreaker::Broken
|
1869
|
+
typesig("*(?*) -> basic_object")
|
1870
|
+
typesig("**(?*) -> basic_object")
|
1871
|
+
typesig("+(?*) -> basic_object")
|
1872
|
+
typesig("-(?*) -> basic_object")
|
1873
|
+
typesig("/(?*) -> basic_object")
|
1874
|
+
typesig("<=>(?*) -> basic_object")
|
1875
|
+
typesig("==(?*) -> basic_object")
|
1876
|
+
typesig("ceil(?*) -> basic_object")
|
1877
|
+
typesig("coerce(?*) -> basic_object")
|
1878
|
+
typesig("denominator(?*) -> basic_object")
|
1879
|
+
typesig("fdiv(?*) -> basic_object")
|
1880
|
+
typesig("floor(?*) -> basic_object")
|
1881
|
+
typesig("hash(?*) -> basic_object")
|
1882
|
+
typesig("inspect(?*) -> basic_object")
|
1883
|
+
typesig("marshal_dump(?*) -> basic_object")
|
1884
|
+
typesig("marshal_load(?*) -> basic_object")
|
1885
|
+
typesig("numerator(?*) -> basic_object")
|
1886
|
+
typesig("quo(?*) -> basic_object")
|
1887
|
+
typesig("rationalize(?*) -> basic_object")
|
1888
|
+
typesig("round(?*) -> basic_object")
|
1889
|
+
typesig("to_f(?*) -> basic_object")
|
1890
|
+
typesig("to_i(?*) -> basic_object")
|
1891
|
+
typesig("to_r(?*) -> basic_object")
|
1892
|
+
typesig("to_s(?*) -> basic_object")
|
1893
|
+
typesig("truncate(?*) -> basic_object")
|
1894
|
+
|
1895
|
+
end # of Rational
|
1896
|
+
module RbConfig
|
1897
|
+
include RubyBreaker::Broken;
|
1898
|
+
end # of RbConfig
|
1899
|
+
class Regexp
|
1900
|
+
include RubyBreaker::Broken
|
1901
|
+
typesig("==(?*) -> basic_object")
|
1902
|
+
typesig("===(?*) -> basic_object")
|
1903
|
+
typesig("=~(?*) -> basic_object")
|
1904
|
+
typesig("casefold?(?*) -> basic_object")
|
1905
|
+
typesig("encoding(?*) -> basic_object")
|
1906
|
+
typesig("eql?(?*) -> basic_object")
|
1907
|
+
typesig("fixed_encoding?(?*) -> basic_object")
|
1908
|
+
typesig("hash(?*) -> basic_object")
|
1909
|
+
typesig("inspect(?*) -> basic_object")
|
1910
|
+
typesig("match(?*) -> basic_object")
|
1911
|
+
typesig("named_captures(?*) -> basic_object")
|
1912
|
+
typesig("names(?*) -> basic_object")
|
1913
|
+
typesig("options(?*) -> basic_object")
|
1914
|
+
typesig("source(?*) -> basic_object")
|
1915
|
+
typesig("to_s(?*) -> basic_object")
|
1916
|
+
typesig("~(?*) -> basic_object")
|
1917
|
+
|
1918
|
+
end # of Regexp
|
1919
|
+
class RegexpError
|
1920
|
+
include RubyBreaker::Broken;
|
1921
|
+
end # of RegexpError
|
1922
|
+
class RubyVM
|
1923
|
+
include RubyBreaker::Broken
|
1924
|
+
class RubyVM::Env
|
1925
|
+
include RubyBreaker::Broken;
|
1926
|
+
end # of RubyVM::Env
|
1927
|
+
class RubyVM::InstructionSequence
|
1928
|
+
include RubyBreaker::Broken
|
1929
|
+
typesig("disasm(?*) -> basic_object")
|
1930
|
+
typesig("disassemble(?*) -> basic_object")
|
1931
|
+
typesig("eval(?*) -> basic_object")
|
1932
|
+
typesig("inspect(?*) -> basic_object")
|
1933
|
+
typesig("to_a(?*) -> basic_object")
|
1934
|
+
|
1935
|
+
end # of RubyVM::InstructionSequence
|
1936
|
+
|
1937
|
+
end # of RubyVM
|
1938
|
+
class RuntimeError
|
1939
|
+
include RubyBreaker::Broken;
|
1940
|
+
end # of RuntimeError
|
1941
|
+
class ScriptError
|
1942
|
+
include RubyBreaker::Broken;
|
1943
|
+
end # of ScriptError
|
1944
|
+
class SecurityError
|
1945
|
+
include RubyBreaker::Broken;
|
1946
|
+
end # of SecurityError
|
1947
|
+
module Signal
|
1948
|
+
include RubyBreaker::Broken;
|
1949
|
+
end # of Signal
|
1950
|
+
class SignalException
|
1951
|
+
include RubyBreaker::Broken
|
1952
|
+
typesig("signm(?*) -> basic_object")
|
1953
|
+
typesig("signo(?*) -> basic_object")
|
1954
|
+
|
1955
|
+
end # of SignalException
|
1956
|
+
class StandardError
|
1957
|
+
include RubyBreaker::Broken;
|
1958
|
+
end # of StandardError
|
1959
|
+
class StopIteration
|
1960
|
+
include RubyBreaker::Broken;typesig("result(?*) -> basic_object");
|
1961
|
+
end # of StopIteration
|
1962
|
+
class String
|
1963
|
+
include RubyBreaker::Broken
|
1964
|
+
typesig("%(?*) -> basic_object")
|
1965
|
+
typesig("*(?*) -> basic_object")
|
1966
|
+
typesig("+(?*) -> basic_object")
|
1967
|
+
typesig("<<(?*) -> basic_object")
|
1968
|
+
typesig("<=>(?*) -> basic_object")
|
1969
|
+
typesig("==(?*) -> basic_object")
|
1970
|
+
typesig("===(?*) -> basic_object")
|
1971
|
+
typesig("=~(?*) -> basic_object")
|
1972
|
+
typesig("[](?*) -> basic_object")
|
1973
|
+
typesig("[]=(?*) -> basic_object")
|
1974
|
+
typesig("ascii_only?(?*) -> basic_object")
|
1975
|
+
typesig("bytes(?*) -> basic_object")
|
1976
|
+
typesig("bytesize(?*) -> basic_object")
|
1977
|
+
typesig("byteslice(?*) -> basic_object")
|
1978
|
+
typesig("capitalize(?*) -> basic_object")
|
1979
|
+
typesig("capitalize!(?*) -> basic_object")
|
1980
|
+
typesig("casecmp(?*) -> basic_object")
|
1981
|
+
typesig("center(?*) -> basic_object")
|
1982
|
+
typesig("chars(?*) -> basic_object")
|
1983
|
+
typesig("chomp(?*) -> basic_object")
|
1984
|
+
typesig("chomp!(?*) -> basic_object")
|
1985
|
+
typesig("chop(?*) -> basic_object")
|
1986
|
+
typesig("chop!(?*) -> basic_object")
|
1987
|
+
typesig("chr(?*) -> basic_object")
|
1988
|
+
typesig("clear(?*) -> basic_object")
|
1989
|
+
typesig("codepoints(?*) -> basic_object")
|
1990
|
+
typesig("concat(?*) -> basic_object")
|
1991
|
+
typesig("count(?*) -> basic_object")
|
1992
|
+
typesig("crypt(?*) -> basic_object")
|
1993
|
+
typesig("delete(?*) -> basic_object")
|
1994
|
+
typesig("delete!(?*) -> basic_object")
|
1995
|
+
typesig("downcase(?*) -> basic_object")
|
1996
|
+
typesig("downcase!(?*) -> basic_object")
|
1997
|
+
typesig("dump(?*) -> basic_object")
|
1998
|
+
typesig("each_byte(?*) -> basic_object")
|
1999
|
+
typesig("each_char(?*) -> basic_object")
|
2000
|
+
typesig("each_codepoint(?*) -> basic_object")
|
2001
|
+
typesig("each_line(?*) -> basic_object")
|
2002
|
+
typesig("empty?(?*) -> basic_object")
|
2003
|
+
typesig("encode(?*) -> basic_object")
|
2004
|
+
typesig("encode!(?*) -> basic_object")
|
2005
|
+
typesig("encoding(?*) -> basic_object")
|
2006
|
+
typesig("end_with?(?*) -> basic_object")
|
2007
|
+
typesig("eql?(?*) -> basic_object")
|
2008
|
+
typesig("force_encoding(?*) -> basic_object")
|
2009
|
+
typesig("getbyte(?*) -> basic_object")
|
2010
|
+
typesig("gsub(?*) -> basic_object")
|
2011
|
+
typesig("gsub!(?*) -> basic_object")
|
2012
|
+
typesig("hash(?*) -> basic_object")
|
2013
|
+
typesig("hex(?*) -> basic_object")
|
2014
|
+
typesig("include?(?*) -> basic_object")
|
2015
|
+
typesig("index(?*) -> basic_object")
|
2016
|
+
typesig("insert(?*) -> basic_object")
|
2017
|
+
typesig("inspect(?*) -> basic_object")
|
2018
|
+
typesig("intern(?*) -> basic_object")
|
2019
|
+
typesig("length(?*) -> basic_object")
|
2020
|
+
typesig("lines(?*) -> basic_object")
|
2021
|
+
typesig("ljust(?*) -> basic_object")
|
2022
|
+
typesig("lstrip(?*) -> basic_object")
|
2023
|
+
typesig("lstrip!(?*) -> basic_object")
|
2024
|
+
typesig("match(?*) -> basic_object")
|
2025
|
+
typesig("next(?*) -> basic_object")
|
2026
|
+
typesig("next!(?*) -> basic_object")
|
2027
|
+
typesig("oct(?*) -> basic_object")
|
2028
|
+
typesig("ord(?*) -> basic_object")
|
2029
|
+
typesig("partition(?*) -> basic_object")
|
2030
|
+
typesig("prepend(?*) -> basic_object")
|
2031
|
+
typesig("replace(?*) -> basic_object")
|
2032
|
+
typesig("reverse(?*) -> basic_object")
|
2033
|
+
typesig("reverse!(?*) -> basic_object")
|
2034
|
+
typesig("rindex(?*) -> basic_object")
|
2035
|
+
typesig("rjust(?*) -> basic_object")
|
2036
|
+
typesig("rpartition(?*) -> basic_object")
|
2037
|
+
typesig("rstrip(?*) -> basic_object")
|
2038
|
+
typesig("rstrip!(?*) -> basic_object")
|
2039
|
+
typesig("scan(?*) -> basic_object")
|
2040
|
+
typesig("setbyte(?*) -> basic_object")
|
2041
|
+
typesig("size(?*) -> basic_object")
|
2042
|
+
typesig("slice(?*) -> basic_object")
|
2043
|
+
typesig("slice!(?*) -> basic_object")
|
2044
|
+
typesig("split(?*) -> basic_object")
|
2045
|
+
typesig("squeeze(?*) -> basic_object")
|
2046
|
+
typesig("squeeze!(?*) -> basic_object")
|
2047
|
+
typesig("start_with?(?*) -> basic_object")
|
2048
|
+
typesig("strip(?*) -> basic_object")
|
2049
|
+
typesig("strip!(?*) -> basic_object")
|
2050
|
+
typesig("sub(?*) -> basic_object")
|
2051
|
+
typesig("sub!(?*) -> basic_object")
|
2052
|
+
typesig("succ(?*) -> basic_object")
|
2053
|
+
typesig("succ!(?*) -> basic_object")
|
2054
|
+
typesig("sum(?*) -> basic_object")
|
2055
|
+
typesig("swapcase(?*) -> basic_object")
|
2056
|
+
typesig("swapcase!(?*) -> basic_object")
|
2057
|
+
typesig("to_c(?*) -> basic_object")
|
2058
|
+
typesig("to_f(?*) -> basic_object")
|
2059
|
+
typesig("to_i(?*) -> basic_object")
|
2060
|
+
typesig("to_r(?*) -> basic_object")
|
2061
|
+
typesig("to_s(?*) -> basic_object")
|
2062
|
+
typesig("to_str(?*) -> basic_object")
|
2063
|
+
typesig("to_sym(?*) -> basic_object")
|
2064
|
+
typesig("tr(?*) -> basic_object")
|
2065
|
+
typesig("tr!(?*) -> basic_object")
|
2066
|
+
typesig("tr_s(?*) -> basic_object")
|
2067
|
+
typesig("tr_s!(?*) -> basic_object")
|
2068
|
+
typesig("unpack(?*) -> basic_object")
|
2069
|
+
typesig("upcase(?*) -> basic_object")
|
2070
|
+
typesig("upcase!(?*) -> basic_object")
|
2071
|
+
typesig("upto(?*) -> basic_object")
|
2072
|
+
typesig("valid_encoding?(?*) -> basic_object")
|
2073
|
+
|
2074
|
+
end # of String
|
2075
|
+
class Struct
|
2076
|
+
include RubyBreaker::Broken
|
2077
|
+
typesig("==(?*) -> basic_object")
|
2078
|
+
typesig("[](?*) -> basic_object")
|
2079
|
+
typesig("[]=(?*) -> basic_object")
|
2080
|
+
typesig("each(?*) -> basic_object")
|
2081
|
+
typesig("each_pair(?*) -> basic_object")
|
2082
|
+
typesig("eql?(?*) -> basic_object")
|
2083
|
+
typesig("hash(?*) -> basic_object")
|
2084
|
+
typesig("inspect(?*) -> basic_object")
|
2085
|
+
typesig("length(?*) -> basic_object")
|
2086
|
+
typesig("members(?*) -> basic_object")
|
2087
|
+
typesig("select(?*) -> basic_object")
|
2088
|
+
typesig("size(?*) -> basic_object")
|
2089
|
+
typesig("to_a(?*) -> basic_object")
|
2090
|
+
typesig("to_s(?*) -> basic_object")
|
2091
|
+
typesig("values(?*) -> basic_object")
|
2092
|
+
typesig("values_at(?*) -> basic_object")
|
2093
|
+
class Struct::Group
|
2094
|
+
include RubyBreaker::Broken
|
2095
|
+
typesig("gid(?*) -> basic_object")
|
2096
|
+
typesig("gid=(?*) -> basic_object")
|
2097
|
+
typesig("mem(?*) -> basic_object")
|
2098
|
+
typesig("mem=(?*) -> basic_object")
|
2099
|
+
typesig("name(?*) -> basic_object")
|
2100
|
+
typesig("name=(?*) -> basic_object")
|
2101
|
+
typesig("passwd(?*) -> basic_object")
|
2102
|
+
typesig("passwd=(?*) -> basic_object")
|
2103
|
+
class Struct::Passwd
|
2104
|
+
include RubyBreaker::Broken
|
2105
|
+
typesig("change(?*) -> basic_object")
|
2106
|
+
typesig("change=(?*) -> basic_object")
|
2107
|
+
typesig("dir(?*) -> basic_object")
|
2108
|
+
typesig("dir=(?*) -> basic_object")
|
2109
|
+
typesig("expire(?*) -> basic_object")
|
2110
|
+
typesig("expire=(?*) -> basic_object")
|
2111
|
+
typesig("gecos(?*) -> basic_object")
|
2112
|
+
typesig("gecos=(?*) -> basic_object")
|
2113
|
+
typesig("gid(?*) -> basic_object")
|
2114
|
+
typesig("gid=(?*) -> basic_object")
|
2115
|
+
typesig("name(?*) -> basic_object")
|
2116
|
+
typesig("name=(?*) -> basic_object")
|
2117
|
+
typesig("passwd(?*) -> basic_object")
|
2118
|
+
typesig("passwd=(?*) -> basic_object")
|
2119
|
+
typesig("shell(?*) -> basic_object")
|
2120
|
+
typesig("shell=(?*) -> basic_object")
|
2121
|
+
typesig("uclass(?*) -> basic_object")
|
2122
|
+
typesig("uclass=(?*) -> basic_object")
|
2123
|
+
typesig("uid(?*) -> basic_object")
|
2124
|
+
typesig("uid=(?*) -> basic_object")
|
2125
|
+
class Struct::Tms
|
2126
|
+
include RubyBreaker::Broken
|
2127
|
+
typesig("cstime(?*) -> basic_object")
|
2128
|
+
typesig("cstime=(?*) -> basic_object")
|
2129
|
+
typesig("cutime(?*) -> basic_object")
|
2130
|
+
typesig("cutime=(?*) -> basic_object")
|
2131
|
+
typesig("stime(?*) -> basic_object")
|
2132
|
+
typesig("stime=(?*) -> basic_object")
|
2133
|
+
typesig("utime(?*) -> basic_object")
|
2134
|
+
typesig("utime=(?*) -> basic_object")
|
2135
|
+
|
2136
|
+
end # of Struct::Tms
|
2137
|
+
|
2138
|
+
end # of Struct::Passwd
|
2139
|
+
|
2140
|
+
end # of Struct::Group
|
2141
|
+
|
2142
|
+
end # of Struct
|
2143
|
+
class Symbol
|
2144
|
+
include RubyBreaker::Broken
|
2145
|
+
typesig("<=>(?*) -> basic_object")
|
2146
|
+
typesig("==(?*) -> basic_object")
|
2147
|
+
typesig("===(?*) -> basic_object")
|
2148
|
+
typesig("=~(?*) -> basic_object")
|
2149
|
+
typesig("[](?*) -> basic_object")
|
2150
|
+
typesig("capitalize(?*) -> basic_object")
|
2151
|
+
typesig("casecmp(?*) -> basic_object")
|
2152
|
+
typesig("downcase(?*) -> basic_object")
|
2153
|
+
typesig("empty?(?*) -> basic_object")
|
2154
|
+
typesig("encoding(?*) -> basic_object")
|
2155
|
+
typesig("id2name(?*) -> basic_object")
|
2156
|
+
typesig("inspect(?*) -> basic_object")
|
2157
|
+
typesig("intern(?*) -> basic_object")
|
2158
|
+
typesig("length(?*) -> basic_object")
|
2159
|
+
typesig("match(?*) -> basic_object")
|
2160
|
+
typesig("next(?*) -> basic_object")
|
2161
|
+
typesig("size(?*) -> basic_object")
|
2162
|
+
typesig("slice(?*) -> basic_object")
|
2163
|
+
typesig("succ(?*) -> basic_object")
|
2164
|
+
typesig("swapcase(?*) -> basic_object")
|
2165
|
+
typesig("to_proc(?*) -> basic_object")
|
2166
|
+
typesig("to_s(?*) -> basic_object")
|
2167
|
+
typesig("to_sym(?*) -> basic_object")
|
2168
|
+
typesig("upcase(?*) -> basic_object")
|
2169
|
+
|
2170
|
+
end # of Symbol
|
2171
|
+
class SyntaxError
|
2172
|
+
include RubyBreaker::Broken;
|
2173
|
+
end # of SyntaxError
|
2174
|
+
class SystemCallError
|
2175
|
+
include RubyBreaker::Broken;typesig("errno(?*) -> basic_object");
|
2176
|
+
end # of SystemCallError
|
2177
|
+
class SystemExit
|
2178
|
+
include RubyBreaker::Broken
|
2179
|
+
typesig("status(?*) -> basic_object")
|
2180
|
+
typesig("success?(?*) -> basic_object")
|
2181
|
+
|
2182
|
+
end # of SystemExit
|
2183
|
+
class SystemStackError
|
2184
|
+
include RubyBreaker::Broken;
|
2185
|
+
end # of SystemStackError
|
2186
|
+
class Thread
|
2187
|
+
include RubyBreaker::Broken
|
2188
|
+
typesig("[](?*) -> basic_object")
|
2189
|
+
typesig("[]=(?*) -> basic_object")
|
2190
|
+
typesig("abort_on_exception(?*) -> basic_object")
|
2191
|
+
typesig("abort_on_exception=(?*) -> basic_object")
|
2192
|
+
typesig("add_trace_func(?*) -> basic_object")
|
2193
|
+
typesig("alive?(?*) -> basic_object")
|
2194
|
+
typesig("backtrace(?*) -> basic_object")
|
2195
|
+
typesig("exit(?*) -> basic_object")
|
2196
|
+
typesig("group(?*) -> basic_object")
|
2197
|
+
typesig("inspect(?*) -> basic_object")
|
2198
|
+
typesig("join(?*) -> basic_object")
|
2199
|
+
typesig("key?(?*) -> basic_object")
|
2200
|
+
typesig("keys(?*) -> basic_object")
|
2201
|
+
typesig("kill(?*) -> basic_object")
|
2202
|
+
typesig("priority(?*) -> basic_object")
|
2203
|
+
typesig("priority=(?*) -> basic_object")
|
2204
|
+
typesig("raise(?*) -> basic_object")
|
2205
|
+
typesig("run(?*) -> basic_object")
|
2206
|
+
typesig("safe_level(?*) -> basic_object")
|
2207
|
+
typesig("set_trace_func(?*) -> basic_object")
|
2208
|
+
typesig("status(?*) -> basic_object")
|
2209
|
+
typesig("stop?(?*) -> basic_object")
|
2210
|
+
typesig("terminate(?*) -> basic_object")
|
2211
|
+
typesig("value(?*) -> basic_object")
|
2212
|
+
typesig("wakeup(?*) -> basic_object")
|
2213
|
+
|
2214
|
+
end # of Thread
|
2215
|
+
class ThreadError
|
2216
|
+
include RubyBreaker::Broken;
|
2217
|
+
end # of ThreadError
|
2218
|
+
class ThreadGroup
|
2219
|
+
include RubyBreaker::Broken
|
2220
|
+
typesig("add(?*) -> basic_object")
|
2221
|
+
typesig("enclose(?*) -> basic_object")
|
2222
|
+
typesig("enclosed?(?*) -> basic_object")
|
2223
|
+
typesig("list(?*) -> basic_object")
|
2224
|
+
|
2225
|
+
end # of ThreadGroup
|
2226
|
+
class Time
|
2227
|
+
include RubyBreaker::Broken
|
2228
|
+
typesig("+(?*) -> basic_object")
|
2229
|
+
typesig("-(?*) -> basic_object")
|
2230
|
+
typesig("<=>(?*) -> basic_object")
|
2231
|
+
typesig("_dump(?*) -> basic_object")
|
2232
|
+
typesig("asctime(?*) -> basic_object")
|
2233
|
+
typesig("ctime(?*) -> basic_object")
|
2234
|
+
typesig("day(?*) -> basic_object")
|
2235
|
+
typesig("dst?(?*) -> basic_object")
|
2236
|
+
typesig("eql?(?*) -> basic_object")
|
2237
|
+
typesig("friday?(?*) -> basic_object")
|
2238
|
+
typesig("getgm(?*) -> basic_object")
|
2239
|
+
typesig("getlocal(?*) -> basic_object")
|
2240
|
+
typesig("getutc(?*) -> basic_object")
|
2241
|
+
typesig("gmt?(?*) -> basic_object")
|
2242
|
+
typesig("gmt_offset(?*) -> basic_object")
|
2243
|
+
typesig("gmtime(?*) -> basic_object")
|
2244
|
+
typesig("gmtoff(?*) -> basic_object")
|
2245
|
+
typesig("hash(?*) -> basic_object")
|
2246
|
+
typesig("hour(?*) -> basic_object")
|
2247
|
+
typesig("inspect(?*) -> basic_object")
|
2248
|
+
typesig("isdst(?*) -> basic_object")
|
2249
|
+
typesig("localtime(?*) -> basic_object")
|
2250
|
+
typesig("mday(?*) -> basic_object")
|
2251
|
+
typesig("min(?*) -> basic_object")
|
2252
|
+
typesig("mon(?*) -> basic_object")
|
2253
|
+
typesig("monday?(?*) -> basic_object")
|
2254
|
+
typesig("month(?*) -> basic_object")
|
2255
|
+
typesig("nsec(?*) -> basic_object")
|
2256
|
+
typesig("round(?*) -> basic_object")
|
2257
|
+
typesig("saturday?(?*) -> basic_object")
|
2258
|
+
typesig("sec(?*) -> basic_object")
|
2259
|
+
typesig("strftime(?*) -> basic_object")
|
2260
|
+
typesig("subsec(?*) -> basic_object")
|
2261
|
+
typesig("succ(?*) -> basic_object")
|
2262
|
+
typesig("sunday?(?*) -> basic_object")
|
2263
|
+
typesig("thursday?(?*) -> basic_object")
|
2264
|
+
typesig("to_a(?*) -> basic_object")
|
2265
|
+
typesig("to_date(?*) -> basic_object")
|
2266
|
+
typesig("to_datetime(?*) -> basic_object")
|
2267
|
+
typesig("to_f(?*) -> basic_object")
|
2268
|
+
typesig("to_i(?*) -> basic_object")
|
2269
|
+
typesig("to_r(?*) -> basic_object")
|
2270
|
+
typesig("to_s(?*) -> basic_object")
|
2271
|
+
typesig("to_time(?*) -> basic_object")
|
2272
|
+
typesig("tuesday?(?*) -> basic_object")
|
2273
|
+
typesig("tv_nsec(?*) -> basic_object")
|
2274
|
+
typesig("tv_sec(?*) -> basic_object")
|
2275
|
+
typesig("tv_usec(?*) -> basic_object")
|
2276
|
+
typesig("usec(?*) -> basic_object")
|
2277
|
+
typesig("utc(?*) -> basic_object")
|
2278
|
+
typesig("utc?(?*) -> basic_object")
|
2279
|
+
typesig("utc_offset(?*) -> basic_object")
|
2280
|
+
typesig("wday(?*) -> basic_object")
|
2281
|
+
typesig("wednesday?(?*) -> basic_object")
|
2282
|
+
typesig("yday(?*) -> basic_object")
|
2283
|
+
typesig("year(?*) -> basic_object")
|
2284
|
+
typesig("zone(?*) -> basic_object")
|
2285
|
+
|
2286
|
+
end # of Time
|
2287
|
+
class TrueClass
|
2288
|
+
include RubyBreaker::Broken
|
2289
|
+
typesig("&(?*) -> basic_object")
|
2290
|
+
typesig("^(?*) -> basic_object")
|
2291
|
+
typesig("to_s(?*) -> basic_object")
|
2292
|
+
typesig("|(?*) -> basic_object")
|
2293
|
+
|
2294
|
+
end # of TrueClass
|
2295
|
+
class TypeError
|
2296
|
+
include RubyBreaker::Broken;
|
2297
|
+
end # of TypeError
|
2298
|
+
class UnboundMethod
|
2299
|
+
include RubyBreaker::Broken
|
2300
|
+
typesig("==(?*) -> basic_object")
|
2301
|
+
typesig("arity(?*) -> basic_object")
|
2302
|
+
typesig("bind(?*) -> basic_object")
|
2303
|
+
typesig("clone(?*) -> basic_object")
|
2304
|
+
typesig("eql?(?*) -> basic_object")
|
2305
|
+
typesig("hash(?*) -> basic_object")
|
2306
|
+
typesig("inspect(?*) -> basic_object")
|
2307
|
+
typesig("name(?*) -> basic_object")
|
2308
|
+
typesig("owner(?*) -> basic_object")
|
2309
|
+
typesig("parameters(?*) -> basic_object")
|
2310
|
+
typesig("source_location(?*) -> basic_object")
|
2311
|
+
typesig("to_s(?*) -> basic_object")
|
2312
|
+
|
2313
|
+
end # of UnboundMethod
|
2314
|
+
class ZeroDivisionError
|
2315
|
+
include RubyBreaker::Broken;
|
2316
|
+
end # of ZeroDivisionError
|