rubybreaker 0.0.4 → 0.0.5

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