rubybreaker 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (122) hide show
  1. data/NEWS +48 -0
  2. data/README.md +56 -20
  3. data/Rakefile +9 -34
  4. data/TODO +10 -10
  5. data/VERSION +1 -0
  6. data/bin/gen_stub_rubylib +35 -36
  7. data/bin/rubybreaker +1 -4
  8. data/lib/rubybreaker/debug.rb +8 -4
  9. data/lib/rubybreaker/rubylib/core.rb +738 -571
  10. data/lib/rubybreaker/runtime/inspector.rb +16 -7
  11. data/lib/rubybreaker/runtime/monitor.rb +14 -18
  12. data/lib/rubybreaker/runtime/object_wrapper.rb +9 -3
  13. data/lib/rubybreaker/runtime/overrides.rb +51 -8
  14. data/lib/rubybreaker/runtime/pluggable.rb +1 -3
  15. data/lib/rubybreaker/runtime/type_placeholder.rb +2 -6
  16. data/lib/rubybreaker/runtime/type_system.rb +53 -17
  17. data/lib/rubybreaker/runtime/typesig_parser.rb +1 -0
  18. data/lib/rubybreaker/runtime/util.rb +18 -0
  19. data/lib/rubybreaker/runtime.rb +42 -15
  20. data/lib/rubybreaker/type/type_comparer.rb +10 -10
  21. data/lib/rubybreaker/type/type_grammar.treetop +30 -21
  22. data/lib/rubybreaker/type/type_unparser.rb +2 -2
  23. data/lib/rubybreaker/typing/subtyping.rb +21 -21
  24. data/lib/rubybreaker/util.rb +11 -1
  25. data/lib/rubybreaker.rb +75 -54
  26. data/test/integrated/tc_class_methods.rb +35 -0
  27. data/test/integrated/tc_inherit_broken.rb +29 -0
  28. data/test/integrated/tc_method_missing.rb +1 -1
  29. data/test/runtime/tc_obj_wrapper.rb +104 -4
  30. data/test/ts_integrated.rb +2 -0
  31. data/test/type/tc_comparer.rb +96 -96
  32. data/test/type/tc_parser.rb +18 -0
  33. data/test/type/tc_unparser.rb +16 -0
  34. data/test/typing/tc_typing.rb +20 -20
  35. data/webpage/footer.html +1 -1
  36. data/webpage/header.html +7 -7
  37. data/webpage/index.html +65 -28
  38. data/webpage/rdoc/RubyBreaker/Breakable.html +280 -0
  39. data/webpage/rdoc/RubyBreaker/Broken/BrokenEigen.html +304 -0
  40. data/webpage/rdoc/RubyBreaker/Broken.html +308 -0
  41. data/webpage/rdoc/RubyBreaker/Context.html +421 -0
  42. data/webpage/rdoc/RubyBreaker/Debug.html +411 -0
  43. data/webpage/rdoc/RubyBreaker/Errors/InternalError.html +263 -0
  44. data/webpage/rdoc/RubyBreaker/Errors/InvalidSubtypeCheck.html +263 -0
  45. data/webpage/rdoc/RubyBreaker/Errors/InvalidTypeConstruction.html +214 -0
  46. data/webpage/rdoc/RubyBreaker/Errors/SubtypeFailure.html +212 -0
  47. data/webpage/rdoc/RubyBreaker/Errors/TypeError.html +212 -0
  48. data/webpage/rdoc/RubyBreaker/Errors/UserError.html +264 -0
  49. data/webpage/rdoc/RubyBreaker/Errors.html +209 -0
  50. data/webpage/rdoc/RubyBreaker/Kernel.html +259 -0
  51. data/webpage/rdoc/RubyBreaker/Main.html +560 -0
  52. data/webpage/rdoc/RubyBreaker/ObjectPosition.html +334 -0
  53. data/webpage/rdoc/RubyBreaker/Position.html +463 -0
  54. data/webpage/rdoc/RubyBreaker/RubyTypeUtils.html +308 -0
  55. data/webpage/rdoc/RubyBreaker/Runtime/Inspector.html +380 -0
  56. data/webpage/rdoc/RubyBreaker/Runtime/MethodInfo.html +324 -0
  57. data/webpage/rdoc/RubyBreaker/Runtime/Monitor.html +354 -0
  58. data/webpage/rdoc/RubyBreaker/Runtime/MonitorInstaller.html +379 -0
  59. data/webpage/rdoc/RubyBreaker/Runtime/MonitorSwitch.html +382 -0
  60. data/webpage/rdoc/RubyBreaker/Runtime/MonitorUtils.html +400 -0
  61. data/webpage/rdoc/RubyBreaker/Runtime/ObjectWrapper.html +411 -0
  62. data/webpage/rdoc/RubyBreaker/Runtime/Pluggable.html +305 -0
  63. data/webpage/rdoc/RubyBreaker/Runtime/TypePlaceholder.html +280 -0
  64. data/webpage/rdoc/RubyBreaker/Runtime/TypeSigParser.html +283 -0
  65. data/webpage/rdoc/RubyBreaker/Runtime/TypeSystem.html +630 -0
  66. data/webpage/rdoc/RubyBreaker/Runtime.html +255 -0
  67. data/webpage/rdoc/RubyBreaker/TestCase.html +332 -0
  68. data/webpage/rdoc/RubyBreaker/TypeComparer.html +304 -0
  69. data/webpage/rdoc/RubyBreaker/TypeDefs/AnyType.html +260 -0
  70. data/webpage/rdoc/RubyBreaker/TypeDefs/BlockType.html +310 -0
  71. data/webpage/rdoc/RubyBreaker/TypeDefs/DuckType.html +320 -0
  72. data/webpage/rdoc/RubyBreaker/TypeDefs/FusionType.html +323 -0
  73. data/webpage/rdoc/RubyBreaker/TypeDefs/MethodListType.html +281 -0
  74. data/webpage/rdoc/RubyBreaker/TypeDefs/MethodType.html +282 -0
  75. data/webpage/rdoc/RubyBreaker/TypeDefs/NilType.html +260 -0
  76. data/webpage/rdoc/RubyBreaker/TypeDefs/NominalType.html +282 -0
  77. data/webpage/rdoc/RubyBreaker/TypeDefs/OptionalType.html +281 -0
  78. data/webpage/rdoc/RubyBreaker/TypeDefs/OrType.html +281 -0
  79. data/webpage/rdoc/RubyBreaker/TypeDefs/SelfType.html +329 -0
  80. data/webpage/rdoc/RubyBreaker/TypeDefs/Type.html +409 -0
  81. data/webpage/rdoc/RubyBreaker/TypeDefs/VarLengthType.html +282 -0
  82. data/webpage/rdoc/RubyBreaker/TypeDefs.html +212 -0
  83. data/webpage/rdoc/RubyBreaker/TypeUnparser.html +273 -0
  84. data/webpage/rdoc/RubyBreaker/Typing.html +305 -0
  85. data/webpage/rdoc/RubyBreaker/Utilities.html +294 -0
  86. data/webpage/rdoc/RubyBreaker.html +337 -0
  87. data/webpage/rdoc/created.rid +26 -0
  88. data/webpage/rdoc/images/add.png +0 -0
  89. data/webpage/rdoc/images/brick.png +0 -0
  90. data/webpage/rdoc/images/brick_link.png +0 -0
  91. data/webpage/rdoc/images/bug.png +0 -0
  92. data/webpage/rdoc/images/bullet_black.png +0 -0
  93. data/webpage/rdoc/images/bullet_toggle_minus.png +0 -0
  94. data/webpage/rdoc/images/bullet_toggle_plus.png +0 -0
  95. data/webpage/rdoc/images/date.png +0 -0
  96. data/webpage/rdoc/images/delete.png +0 -0
  97. data/webpage/rdoc/images/find.png +0 -0
  98. data/webpage/rdoc/images/loadingAnimation.gif +0 -0
  99. data/webpage/rdoc/images/macFFBgHack.png +0 -0
  100. data/webpage/rdoc/images/package.png +0 -0
  101. data/webpage/rdoc/images/page_green.png +0 -0
  102. data/webpage/rdoc/images/page_white_text.png +0 -0
  103. data/webpage/rdoc/images/page_white_width.png +0 -0
  104. data/webpage/rdoc/images/plugin.png +0 -0
  105. data/webpage/rdoc/images/ruby.png +0 -0
  106. data/webpage/rdoc/images/tag_blue.png +0 -0
  107. data/webpage/rdoc/images/tag_green.png +0 -0
  108. data/webpage/rdoc/images/transparent.png +0 -0
  109. data/webpage/rdoc/images/wrench.png +0 -0
  110. data/webpage/rdoc/images/wrench_orange.png +0 -0
  111. data/webpage/rdoc/images/zoom.png +0 -0
  112. data/webpage/rdoc/index.html +165 -0
  113. data/webpage/rdoc/js/darkfish.js +153 -0
  114. data/webpage/rdoc/js/jquery.js +18 -0
  115. data/webpage/rdoc/js/navigation.js +142 -0
  116. data/webpage/rdoc/js/search.js +94 -0
  117. data/webpage/rdoc/js/search_index.js +1 -0
  118. data/webpage/rdoc/js/searcher.js +228 -0
  119. data/webpage/rdoc/rdoc.css +543 -0
  120. data/webpage/rdoc/table_of_contents.html +376 -0
  121. data/webpage/rubybreaker.css +31 -31
  122. metadata +93 -6
@@ -1,8 +1,11 @@
1
- class ArgumentError
2
- include RubyBreaker::Broken;
1
+ # This file is auto-generated.
2
+
3
+ class ArgumentError #:nodoc:
4
+ include ::RubyBreaker::Broken
3
5
  end # of ArgumentError
4
- class Array
5
- include RubyBreaker::Broken
6
+
7
+ class Array #:nodoc:
8
+ include ::RubyBreaker::Broken
6
9
  typesig("&(?*) -> basic_object")
7
10
  typesig("*(?*) -> basic_object")
8
11
  typesig("+(?*) -> basic_object")
@@ -91,22 +94,22 @@ class Array
91
94
  typesig("values_at(?*) -> basic_object")
92
95
  typesig("zip(?*) -> basic_object")
93
96
  typesig("|(?*) -> basic_object")
94
-
95
97
  end # of Array
96
- class BasicObject
97
- include RubyBreaker::Broken
98
- typesig("!(?*) -> basic_object")
99
- typesig("!=(?*) -> basic_object")
100
- typesig("==(?*) -> basic_object")
101
- typesig("__id__(?*) -> basic_object")
102
- typesig("__send__(?*) -> basic_object")
103
- typesig("equal?(?*) -> basic_object")
104
- typesig("instance_eval(?*) -> basic_object")
105
- typesig("instance_exec(?*) -> basic_object")
106
-
107
- end # of BasicObject
108
- class Bignum
109
- include RubyBreaker::Broken
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
110
113
  typesig("%(?*) -> basic_object")
111
114
  typesig("&(?*) -> basic_object")
112
115
  typesig("*(?*) -> basic_object")
@@ -143,27 +146,27 @@ class Bignum
143
146
  typesig("to_s(?*) -> basic_object")
144
147
  typesig("|(?*) -> basic_object")
145
148
  typesig("~(?*) -> basic_object")
146
-
147
149
  end # of Bignum
148
- class Binding
149
- include RubyBreaker::Broken
150
+
151
+ class Binding #:nodoc:
152
+ include ::RubyBreaker::Broken
150
153
  typesig("clone(?*) -> basic_object")
151
154
  typesig("dup(?*) -> basic_object")
152
155
  typesig("eval(?*) -> basic_object")
153
-
154
156
  end # of Binding
155
- module Comparable
156
- include RubyBreaker::Broken
157
+
158
+ module Comparable #:nodoc:
159
+ include ::RubyBreaker::Broken
157
160
  typesig("<(?*) -> basic_object")
158
161
  typesig("<=(?*) -> basic_object")
159
162
  typesig("==(?*) -> basic_object")
160
163
  typesig(">(?*) -> basic_object")
161
164
  typesig(">=(?*) -> basic_object")
162
165
  typesig("between?(?*) -> basic_object")
163
-
164
166
  end # of Comparable
165
- class Complex
166
- include RubyBreaker::Broken
167
+
168
+ class Complex #:nodoc:
169
+ include ::RubyBreaker::Broken
167
170
  typesig("*(?*) -> basic_object")
168
171
  typesig("**(?*) -> basic_object")
169
172
  typesig("+(?*) -> basic_object")
@@ -201,13 +204,14 @@ class Complex
201
204
  typesig("to_i(?*) -> basic_object")
202
205
  typesig("to_r(?*) -> basic_object")
203
206
  typesig("to_s(?*) -> basic_object")
204
-
205
207
  end # of Complex
206
- class Data
207
- include RubyBreaker::Broken;
208
+
209
+ class Data #:nodoc:
210
+ include ::RubyBreaker::Broken
208
211
  end # of Data
209
- class Dir
210
- include RubyBreaker::Broken
212
+
213
+ class Dir #:nodoc:
214
+ include ::RubyBreaker::Broken
211
215
  typesig("close(?*) -> basic_object")
212
216
  typesig("each(?*) -> basic_object")
213
217
  typesig("inspect(?*) -> basic_object")
@@ -219,13 +223,14 @@ class Dir
219
223
  typesig("seek(?*) -> basic_object")
220
224
  typesig("tell(?*) -> basic_object")
221
225
  typesig("to_path(?*) -> basic_object")
222
-
223
226
  end # of Dir
224
- class EOFError
225
- include RubyBreaker::Broken;
227
+
228
+ class EOFError #:nodoc:
229
+ include ::RubyBreaker::Broken
226
230
  end # of EOFError
227
- class Encoding
228
- include RubyBreaker::Broken
231
+
232
+ class Encoding #:nodoc:
233
+ include ::RubyBreaker::Broken
229
234
  typesig("_dump(?*) -> basic_object")
230
235
  typesig("ascii_compatible?(?*) -> basic_object")
231
236
  typesig("dummy?(?*) -> basic_object")
@@ -234,11 +239,13 @@ class Encoding
234
239
  typesig("names(?*) -> basic_object")
235
240
  typesig("replicate(?*) -> basic_object")
236
241
  typesig("to_s(?*) -> basic_object")
237
- class Encoding::CompatibilityError
238
- include RubyBreaker::Broken;
242
+
243
+ class Encoding::CompatibilityError #:nodoc:
244
+ include ::RubyBreaker::Broken
239
245
  end # of Encoding::CompatibilityError
240
- class Encoding::Converter
241
- include RubyBreaker::Broken
246
+
247
+ class Encoding::Converter #:nodoc:
248
+ include ::RubyBreaker::Broken
242
249
  typesig("==(?*) -> basic_object")
243
250
  typesig("convert(?*) -> basic_object")
244
251
  typesig("convpath(?*) -> basic_object")
@@ -253,13 +260,14 @@ class Encoding
253
260
  typesig("replacement(?*) -> basic_object")
254
261
  typesig("replacement=(?*) -> basic_object")
255
262
  typesig("source_encoding(?*) -> basic_object")
256
-
257
263
  end # of Encoding::Converter
258
- class Encoding::ConverterNotFoundError
259
- include RubyBreaker::Broken;
264
+
265
+ class Encoding::ConverterNotFoundError #:nodoc:
266
+ include ::RubyBreaker::Broken
260
267
  end # of Encoding::ConverterNotFoundError
261
- class Encoding::InvalidByteSequenceError
262
- include RubyBreaker::Broken
268
+
269
+ class Encoding::InvalidByteSequenceError #:nodoc:
270
+ include ::RubyBreaker::Broken
263
271
  typesig("destination_encoding(?*) -> basic_object")
264
272
  typesig("destination_encoding_name(?*) -> basic_object")
265
273
  typesig("error_bytes(?*) -> basic_object")
@@ -267,24 +275,24 @@ class Encoding
267
275
  typesig("readagain_bytes(?*) -> basic_object")
268
276
  typesig("source_encoding(?*) -> basic_object")
269
277
  typesig("source_encoding_name(?*) -> basic_object")
270
-
271
278
  end # of Encoding::InvalidByteSequenceError
272
- class Encoding::UndefinedConversionError
273
- include RubyBreaker::Broken
279
+
280
+ class Encoding::UndefinedConversionError #:nodoc:
281
+ include ::RubyBreaker::Broken
274
282
  typesig("destination_encoding(?*) -> basic_object")
275
283
  typesig("destination_encoding_name(?*) -> basic_object")
276
284
  typesig("error_char(?*) -> basic_object")
277
285
  typesig("source_encoding(?*) -> basic_object")
278
286
  typesig("source_encoding_name(?*) -> basic_object")
279
-
280
287
  end # of Encoding::UndefinedConversionError
281
-
282
288
  end # of Encoding
283
- class EncodingError
284
- include RubyBreaker::Broken;
289
+
290
+ class EncodingError #:nodoc:
291
+ include ::RubyBreaker::Broken
285
292
  end # of EncodingError
286
- module Enumerable
287
- include RubyBreaker::Broken
293
+
294
+ module Enumerable #:nodoc:
295
+ include ::RubyBreaker::Broken
288
296
  typesig("all?(?*) -> basic_object")
289
297
  typesig("any?(?*) -> basic_object")
290
298
  typesig("chunk(?*) -> basic_object")
@@ -332,10 +340,10 @@ module Enumerable
332
340
  typesig("take_while(?*) -> basic_object")
333
341
  typesig("to_a(?*) -> basic_object")
334
342
  typesig("zip(?*) -> basic_object")
335
-
336
343
  end # of Enumerable
337
- class Enumerator
338
- include RubyBreaker::Broken
344
+
345
+ class Enumerator #:nodoc:
346
+ include ::RubyBreaker::Broken
339
347
  typesig("each(?*) -> basic_object")
340
348
  typesig("each_with_index(?*) -> basic_object")
341
349
  typesig("each_with_object(?*) -> basic_object")
@@ -348,320 +356,421 @@ class Enumerator
348
356
  typesig("rewind(?*) -> basic_object")
349
357
  typesig("with_index(?*) -> basic_object")
350
358
  typesig("with_object(?*) -> basic_object")
351
- class Enumerator::Generator
352
- include RubyBreaker::Broken;typesig("each(?*) -> basic_object");
359
+
360
+ class Enumerator::Generator #:nodoc:
361
+ include ::RubyBreaker::Broken
362
+ typesig("each(?*) -> basic_object")
353
363
  end # of Enumerator::Generator
354
- class Enumerator::Yielder
355
- include RubyBreaker::Broken
364
+
365
+ class Enumerator::Yielder #:nodoc:
366
+ include ::RubyBreaker::Broken
356
367
  typesig("<<(?*) -> basic_object")
357
368
  typesig("yield(?*) -> basic_object")
358
-
359
369
  end # of Enumerator::Yielder
360
-
361
370
  end # of Enumerator
362
- module Errno
363
- include RubyBreaker::Broken
364
- class Errno::E2BIG
365
- include RubyBreaker::Broken;
371
+
372
+ module Errno #:nodoc:
373
+ include ::RubyBreaker::Broken
374
+
375
+ class Errno::E2BIG #:nodoc:
376
+ include ::RubyBreaker::Broken
366
377
  end # of Errno::E2BIG
367
- class Errno::EACCES
368
- include RubyBreaker::Broken;
378
+
379
+ class Errno::EACCES #:nodoc:
380
+ include ::RubyBreaker::Broken
369
381
  end # of Errno::EACCES
370
- class Errno::EADDRINUSE
371
- include RubyBreaker::Broken;
382
+
383
+ class Errno::EADDRINUSE #:nodoc:
384
+ include ::RubyBreaker::Broken
372
385
  end # of Errno::EADDRINUSE
373
- class Errno::EADDRNOTAVAIL
374
- include RubyBreaker::Broken;
386
+
387
+ class Errno::EADDRNOTAVAIL #:nodoc:
388
+ include ::RubyBreaker::Broken
375
389
  end # of Errno::EADDRNOTAVAIL
376
- class Errno::NOERROR
377
- include RubyBreaker::Broken;
390
+
391
+ class Errno::NOERROR #:nodoc:
392
+ include ::RubyBreaker::Broken
378
393
  end # of Errno::NOERROR
379
- class Errno::EAFNOSUPPORT
380
- include RubyBreaker::Broken;
394
+
395
+ class Errno::EAFNOSUPPORT #:nodoc:
396
+ include ::RubyBreaker::Broken
381
397
  end # of Errno::EAFNOSUPPORT
382
- class Errno::EAGAIN
383
- include RubyBreaker::Broken;
398
+
399
+ class Errno::EAGAIN #:nodoc:
400
+ include ::RubyBreaker::Broken
384
401
  end # of Errno::EAGAIN
385
- class Errno::EALREADY
386
- include RubyBreaker::Broken;
402
+
403
+ class Errno::EALREADY #:nodoc:
404
+ include ::RubyBreaker::Broken
387
405
  end # of Errno::EALREADY
388
- class Errno::EAUTH
389
- include RubyBreaker::Broken;
406
+
407
+ class Errno::EAUTH #:nodoc:
408
+ include ::RubyBreaker::Broken
390
409
  end # of Errno::EAUTH
391
- class Errno::EBADF
392
- include RubyBreaker::Broken;
410
+
411
+ class Errno::EBADF #:nodoc:
412
+ include ::RubyBreaker::Broken
393
413
  end # of Errno::EBADF
394
- class Errno::EBADMSG
395
- include RubyBreaker::Broken;
414
+
415
+ class Errno::EBADMSG #:nodoc:
416
+ include ::RubyBreaker::Broken
396
417
  end # of Errno::EBADMSG
397
- class Errno::EBADRPC
398
- include RubyBreaker::Broken;
418
+
419
+ class Errno::EBADRPC #:nodoc:
420
+ include ::RubyBreaker::Broken
399
421
  end # of Errno::EBADRPC
400
- class Errno::EBUSY
401
- include RubyBreaker::Broken;
422
+
423
+ class Errno::EBUSY #:nodoc:
424
+ include ::RubyBreaker::Broken
402
425
  end # of Errno::EBUSY
403
- class Errno::ECANCELED
404
- include RubyBreaker::Broken;
426
+
427
+ class Errno::ECANCELED #:nodoc:
428
+ include ::RubyBreaker::Broken
405
429
  end # of Errno::ECANCELED
406
- class Errno::ECHILD
407
- include RubyBreaker::Broken;
430
+
431
+ class Errno::ECHILD #:nodoc:
432
+ include ::RubyBreaker::Broken
408
433
  end # of Errno::ECHILD
409
- class Errno::ECONNABORTED
410
- include RubyBreaker::Broken;
434
+
435
+ class Errno::ECONNABORTED #:nodoc:
436
+ include ::RubyBreaker::Broken
411
437
  end # of Errno::ECONNABORTED
412
- class Errno::ECONNREFUSED
413
- include RubyBreaker::Broken;
438
+
439
+ class Errno::ECONNREFUSED #:nodoc:
440
+ include ::RubyBreaker::Broken
414
441
  end # of Errno::ECONNREFUSED
415
- class Errno::ECONNRESET
416
- include RubyBreaker::Broken;
442
+
443
+ class Errno::ECONNRESET #:nodoc:
444
+ include ::RubyBreaker::Broken
417
445
  end # of Errno::ECONNRESET
418
- class Errno::EDEADLK
419
- include RubyBreaker::Broken;
446
+
447
+ class Errno::EDEADLK #:nodoc:
448
+ include ::RubyBreaker::Broken
420
449
  end # of Errno::EDEADLK
421
- class Errno::EDESTADDRREQ
422
- include RubyBreaker::Broken;
450
+
451
+ class Errno::EDESTADDRREQ #:nodoc:
452
+ include ::RubyBreaker::Broken
423
453
  end # of Errno::EDESTADDRREQ
424
- class Errno::EDOM
425
- include RubyBreaker::Broken;
454
+
455
+ class Errno::EDOM #:nodoc:
456
+ include ::RubyBreaker::Broken
426
457
  end # of Errno::EDOM
427
- class Errno::EDQUOT
428
- include RubyBreaker::Broken;
458
+
459
+ class Errno::EDQUOT #:nodoc:
460
+ include ::RubyBreaker::Broken
429
461
  end # of Errno::EDQUOT
430
- class Errno::EEXIST
431
- include RubyBreaker::Broken;
462
+
463
+ class Errno::EEXIST #:nodoc:
464
+ include ::RubyBreaker::Broken
432
465
  end # of Errno::EEXIST
433
- class Errno::EFAULT
434
- include RubyBreaker::Broken;
466
+
467
+ class Errno::EFAULT #:nodoc:
468
+ include ::RubyBreaker::Broken
435
469
  end # of Errno::EFAULT
436
- class Errno::EFBIG
437
- include RubyBreaker::Broken;
470
+
471
+ class Errno::EFBIG #:nodoc:
472
+ include ::RubyBreaker::Broken
438
473
  end # of Errno::EFBIG
439
- class Errno::EFTYPE
440
- include RubyBreaker::Broken;
474
+
475
+ class Errno::EFTYPE #:nodoc:
476
+ include ::RubyBreaker::Broken
441
477
  end # of Errno::EFTYPE
442
- class Errno::EHOSTDOWN
443
- include RubyBreaker::Broken;
478
+
479
+ class Errno::EHOSTDOWN #:nodoc:
480
+ include ::RubyBreaker::Broken
444
481
  end # of Errno::EHOSTDOWN
445
- class Errno::EHOSTUNREACH
446
- include RubyBreaker::Broken;
482
+
483
+ class Errno::EHOSTUNREACH #:nodoc:
484
+ include ::RubyBreaker::Broken
447
485
  end # of Errno::EHOSTUNREACH
448
- class Errno::EIDRM
449
- include RubyBreaker::Broken;
486
+
487
+ class Errno::EIDRM #:nodoc:
488
+ include ::RubyBreaker::Broken
450
489
  end # of Errno::EIDRM
451
- class Errno::EILSEQ
452
- include RubyBreaker::Broken;
490
+
491
+ class Errno::EILSEQ #:nodoc:
492
+ include ::RubyBreaker::Broken
453
493
  end # of Errno::EILSEQ
454
- class Errno::EINPROGRESS
455
- include RubyBreaker::Broken;
494
+
495
+ class Errno::EINPROGRESS #:nodoc:
496
+ include ::RubyBreaker::Broken
456
497
  end # of Errno::EINPROGRESS
457
- class Errno::EINTR
458
- include RubyBreaker::Broken;
498
+
499
+ class Errno::EINTR #:nodoc:
500
+ include ::RubyBreaker::Broken
459
501
  end # of Errno::EINTR
460
- class Errno::EINVAL
461
- include RubyBreaker::Broken;
502
+
503
+ class Errno::EINVAL #:nodoc:
504
+ include ::RubyBreaker::Broken
462
505
  end # of Errno::EINVAL
463
- class Errno::EIO
464
- include RubyBreaker::Broken;
506
+
507
+ class Errno::EIO #:nodoc:
508
+ include ::RubyBreaker::Broken
465
509
  end # of Errno::EIO
466
- class Errno::EISCONN
467
- include RubyBreaker::Broken;
510
+
511
+ class Errno::EISCONN #:nodoc:
512
+ include ::RubyBreaker::Broken
468
513
  end # of Errno::EISCONN
469
- class Errno::EISDIR
470
- include RubyBreaker::Broken;
514
+
515
+ class Errno::EISDIR #:nodoc:
516
+ include ::RubyBreaker::Broken
471
517
  end # of Errno::EISDIR
472
- class Errno::ELOOP
473
- include RubyBreaker::Broken;
518
+
519
+ class Errno::ELOOP #:nodoc:
520
+ include ::RubyBreaker::Broken
474
521
  end # of Errno::ELOOP
475
- class Errno::EMFILE
476
- include RubyBreaker::Broken;
522
+
523
+ class Errno::EMFILE #:nodoc:
524
+ include ::RubyBreaker::Broken
477
525
  end # of Errno::EMFILE
478
- class Errno::EMLINK
479
- include RubyBreaker::Broken;
526
+
527
+ class Errno::EMLINK #:nodoc:
528
+ include ::RubyBreaker::Broken
480
529
  end # of Errno::EMLINK
481
- class Errno::EMSGSIZE
482
- include RubyBreaker::Broken;
530
+
531
+ class Errno::EMSGSIZE #:nodoc:
532
+ include ::RubyBreaker::Broken
483
533
  end # of Errno::EMSGSIZE
484
- class Errno::EMULTIHOP
485
- include RubyBreaker::Broken;
534
+
535
+ class Errno::EMULTIHOP #:nodoc:
536
+ include ::RubyBreaker::Broken
486
537
  end # of Errno::EMULTIHOP
487
- class Errno::ENAMETOOLONG
488
- include RubyBreaker::Broken;
538
+
539
+ class Errno::ENAMETOOLONG #:nodoc:
540
+ include ::RubyBreaker::Broken
489
541
  end # of Errno::ENAMETOOLONG
490
- class Errno::ENEEDAUTH
491
- include RubyBreaker::Broken;
542
+
543
+ class Errno::ENEEDAUTH #:nodoc:
544
+ include ::RubyBreaker::Broken
492
545
  end # of Errno::ENEEDAUTH
493
- class Errno::ENETDOWN
494
- include RubyBreaker::Broken;
546
+
547
+ class Errno::ENETDOWN #:nodoc:
548
+ include ::RubyBreaker::Broken
495
549
  end # of Errno::ENETDOWN
496
- class Errno::ENETRESET
497
- include RubyBreaker::Broken;
550
+
551
+ class Errno::ENETRESET #:nodoc:
552
+ include ::RubyBreaker::Broken
498
553
  end # of Errno::ENETRESET
499
- class Errno::ENETUNREACH
500
- include RubyBreaker::Broken;
554
+
555
+ class Errno::ENETUNREACH #:nodoc:
556
+ include ::RubyBreaker::Broken
501
557
  end # of Errno::ENETUNREACH
502
- class Errno::ENFILE
503
- include RubyBreaker::Broken;
558
+
559
+ class Errno::ENFILE #:nodoc:
560
+ include ::RubyBreaker::Broken
504
561
  end # of Errno::ENFILE
505
- class Errno::ENOATTR
506
- include RubyBreaker::Broken;
562
+
563
+ class Errno::ENOATTR #:nodoc:
564
+ include ::RubyBreaker::Broken
507
565
  end # of Errno::ENOATTR
508
- class Errno::ENOBUFS
509
- include RubyBreaker::Broken;
566
+
567
+ class Errno::ENOBUFS #:nodoc:
568
+ include ::RubyBreaker::Broken
510
569
  end # of Errno::ENOBUFS
511
- class Errno::ENODATA
512
- include RubyBreaker::Broken;
570
+
571
+ class Errno::ENODATA #:nodoc:
572
+ include ::RubyBreaker::Broken
513
573
  end # of Errno::ENODATA
514
- class Errno::ENODEV
515
- include RubyBreaker::Broken;
574
+
575
+ class Errno::ENODEV #:nodoc:
576
+ include ::RubyBreaker::Broken
516
577
  end # of Errno::ENODEV
517
- class Errno::ENOENT
518
- include RubyBreaker::Broken;
578
+
579
+ class Errno::ENOENT #:nodoc:
580
+ include ::RubyBreaker::Broken
519
581
  end # of Errno::ENOENT
520
- class Errno::ENOEXEC
521
- include RubyBreaker::Broken;
582
+
583
+ class Errno::ENOEXEC #:nodoc:
584
+ include ::RubyBreaker::Broken
522
585
  end # of Errno::ENOEXEC
523
- class Errno::ENOLCK
524
- include RubyBreaker::Broken;
586
+
587
+ class Errno::ENOLCK #:nodoc:
588
+ include ::RubyBreaker::Broken
525
589
  end # of Errno::ENOLCK
526
- class Errno::ENOLINK
527
- include RubyBreaker::Broken;
590
+
591
+ class Errno::ENOLINK #:nodoc:
592
+ include ::RubyBreaker::Broken
528
593
  end # of Errno::ENOLINK
529
- class Errno::ENOMEM
530
- include RubyBreaker::Broken;
594
+
595
+ class Errno::ENOMEM #:nodoc:
596
+ include ::RubyBreaker::Broken
531
597
  end # of Errno::ENOMEM
532
- class Errno::ENOMSG
533
- include RubyBreaker::Broken;
598
+
599
+ class Errno::ENOMSG #:nodoc:
600
+ include ::RubyBreaker::Broken
534
601
  end # of Errno::ENOMSG
535
- class Errno::ENOPROTOOPT
536
- include RubyBreaker::Broken;
602
+
603
+ class Errno::ENOPROTOOPT #:nodoc:
604
+ include ::RubyBreaker::Broken
537
605
  end # of Errno::ENOPROTOOPT
538
- class Errno::ENOSPC
539
- include RubyBreaker::Broken;
606
+
607
+ class Errno::ENOSPC #:nodoc:
608
+ include ::RubyBreaker::Broken
540
609
  end # of Errno::ENOSPC
541
- class Errno::ENOSR
542
- include RubyBreaker::Broken;
610
+
611
+ class Errno::ENOSR #:nodoc:
612
+ include ::RubyBreaker::Broken
543
613
  end # of Errno::ENOSR
544
- class Errno::ENOSTR
545
- include RubyBreaker::Broken;
614
+
615
+ class Errno::ENOSTR #:nodoc:
616
+ include ::RubyBreaker::Broken
546
617
  end # of Errno::ENOSTR
547
- class Errno::ENOSYS
548
- include RubyBreaker::Broken;
618
+
619
+ class Errno::ENOSYS #:nodoc:
620
+ include ::RubyBreaker::Broken
549
621
  end # of Errno::ENOSYS
550
- class Errno::ENOTBLK
551
- include RubyBreaker::Broken;
622
+
623
+ class Errno::ENOTBLK #:nodoc:
624
+ include ::RubyBreaker::Broken
552
625
  end # of Errno::ENOTBLK
553
- class Errno::ENOTCONN
554
- include RubyBreaker::Broken;
626
+
627
+ class Errno::ENOTCONN #:nodoc:
628
+ include ::RubyBreaker::Broken
555
629
  end # of Errno::ENOTCONN
556
- class Errno::ENOTDIR
557
- include RubyBreaker::Broken;
630
+
631
+ class Errno::ENOTDIR #:nodoc:
632
+ include ::RubyBreaker::Broken
558
633
  end # of Errno::ENOTDIR
559
- class Errno::ENOTEMPTY
560
- include RubyBreaker::Broken;
634
+
635
+ class Errno::ENOTEMPTY #:nodoc:
636
+ include ::RubyBreaker::Broken
561
637
  end # of Errno::ENOTEMPTY
562
- class Errno::ENOTRECOVERABLE
563
- include RubyBreaker::Broken;
638
+
639
+ class Errno::ENOTRECOVERABLE #:nodoc:
640
+ include ::RubyBreaker::Broken
564
641
  end # of Errno::ENOTRECOVERABLE
565
- class Errno::ENOTSOCK
566
- include RubyBreaker::Broken;
642
+
643
+ class Errno::ENOTSOCK #:nodoc:
644
+ include ::RubyBreaker::Broken
567
645
  end # of Errno::ENOTSOCK
568
- class Errno::ENOTSUP
569
- include RubyBreaker::Broken;
646
+
647
+ class Errno::ENOTSUP #:nodoc:
648
+ include ::RubyBreaker::Broken
570
649
  end # of Errno::ENOTSUP
571
- class Errno::ENOTTY
572
- include RubyBreaker::Broken;
650
+
651
+ class Errno::ENOTTY #:nodoc:
652
+ include ::RubyBreaker::Broken
573
653
  end # of Errno::ENOTTY
574
- class Errno::ENXIO
575
- include RubyBreaker::Broken;
654
+
655
+ class Errno::ENXIO #:nodoc:
656
+ include ::RubyBreaker::Broken
576
657
  end # of Errno::ENXIO
577
- class Errno::EOPNOTSUPP
578
- include RubyBreaker::Broken;
658
+
659
+ class Errno::EOPNOTSUPP #:nodoc:
660
+ include ::RubyBreaker::Broken
579
661
  end # of Errno::EOPNOTSUPP
580
- class Errno::EOVERFLOW
581
- include RubyBreaker::Broken;
662
+
663
+ class Errno::EOVERFLOW #:nodoc:
664
+ include ::RubyBreaker::Broken
582
665
  end # of Errno::EOVERFLOW
583
- class Errno::EOWNERDEAD
584
- include RubyBreaker::Broken;
666
+
667
+ class Errno::EOWNERDEAD #:nodoc:
668
+ include ::RubyBreaker::Broken
585
669
  end # of Errno::EOWNERDEAD
586
- class Errno::EPERM
587
- include RubyBreaker::Broken;
670
+
671
+ class Errno::EPERM #:nodoc:
672
+ include ::RubyBreaker::Broken
588
673
  end # of Errno::EPERM
589
- class Errno::EPFNOSUPPORT
590
- include RubyBreaker::Broken;
674
+
675
+ class Errno::EPFNOSUPPORT #:nodoc:
676
+ include ::RubyBreaker::Broken
591
677
  end # of Errno::EPFNOSUPPORT
592
- class Errno::EPIPE
593
- include RubyBreaker::Broken;
678
+
679
+ class Errno::EPIPE #:nodoc:
680
+ include ::RubyBreaker::Broken
594
681
  end # of Errno::EPIPE
595
- class Errno::EPROCLIM
596
- include RubyBreaker::Broken;
682
+
683
+ class Errno::EPROCLIM #:nodoc:
684
+ include ::RubyBreaker::Broken
597
685
  end # of Errno::EPROCLIM
598
- class Errno::EPROCUNAVAIL
599
- include RubyBreaker::Broken;
686
+
687
+ class Errno::EPROCUNAVAIL #:nodoc:
688
+ include ::RubyBreaker::Broken
600
689
  end # of Errno::EPROCUNAVAIL
601
- class Errno::EPROGMISMATCH
602
- include RubyBreaker::Broken;
690
+
691
+ class Errno::EPROGMISMATCH #:nodoc:
692
+ include ::RubyBreaker::Broken
603
693
  end # of Errno::EPROGMISMATCH
604
- class Errno::EPROGUNAVAIL
605
- include RubyBreaker::Broken;
694
+
695
+ class Errno::EPROGUNAVAIL #:nodoc:
696
+ include ::RubyBreaker::Broken
606
697
  end # of Errno::EPROGUNAVAIL
607
- class Errno::EPROTO
608
- include RubyBreaker::Broken;
698
+
699
+ class Errno::EPROTO #:nodoc:
700
+ include ::RubyBreaker::Broken
609
701
  end # of Errno::EPROTO
610
- class Errno::EPROTONOSUPPORT
611
- include RubyBreaker::Broken;
702
+
703
+ class Errno::EPROTONOSUPPORT #:nodoc:
704
+ include ::RubyBreaker::Broken
612
705
  end # of Errno::EPROTONOSUPPORT
613
- class Errno::EPROTOTYPE
614
- include RubyBreaker::Broken;
706
+
707
+ class Errno::EPROTOTYPE #:nodoc:
708
+ include ::RubyBreaker::Broken
615
709
  end # of Errno::EPROTOTYPE
616
- class Errno::ERANGE
617
- include RubyBreaker::Broken;
710
+
711
+ class Errno::ERANGE #:nodoc:
712
+ include ::RubyBreaker::Broken
618
713
  end # of Errno::ERANGE
619
- class Errno::EREMOTE
620
- include RubyBreaker::Broken;
714
+
715
+ class Errno::EREMOTE #:nodoc:
716
+ include ::RubyBreaker::Broken
621
717
  end # of Errno::EREMOTE
622
- class Errno::EROFS
623
- include RubyBreaker::Broken;
718
+
719
+ class Errno::EROFS #:nodoc:
720
+ include ::RubyBreaker::Broken
624
721
  end # of Errno::EROFS
625
- class Errno::ERPCMISMATCH
626
- include RubyBreaker::Broken;
722
+
723
+ class Errno::ERPCMISMATCH #:nodoc:
724
+ include ::RubyBreaker::Broken
627
725
  end # of Errno::ERPCMISMATCH
628
- class Errno::ESHUTDOWN
629
- include RubyBreaker::Broken;
726
+
727
+ class Errno::ESHUTDOWN #:nodoc:
728
+ include ::RubyBreaker::Broken
630
729
  end # of Errno::ESHUTDOWN
631
- class Errno::ESOCKTNOSUPPORT
632
- include RubyBreaker::Broken;
730
+
731
+ class Errno::ESOCKTNOSUPPORT #:nodoc:
732
+ include ::RubyBreaker::Broken
633
733
  end # of Errno::ESOCKTNOSUPPORT
634
- class Errno::ESPIPE
635
- include RubyBreaker::Broken;
734
+
735
+ class Errno::ESPIPE #:nodoc:
736
+ include ::RubyBreaker::Broken
636
737
  end # of Errno::ESPIPE
637
- class Errno::ESRCH
638
- include RubyBreaker::Broken;
738
+
739
+ class Errno::ESRCH #:nodoc:
740
+ include ::RubyBreaker::Broken
639
741
  end # of Errno::ESRCH
640
- class Errno::ESTALE
641
- include RubyBreaker::Broken;
742
+
743
+ class Errno::ESTALE #:nodoc:
744
+ include ::RubyBreaker::Broken
642
745
  end # of Errno::ESTALE
643
- class Errno::ETIME
644
- include RubyBreaker::Broken;
746
+
747
+ class Errno::ETIME #:nodoc:
748
+ include ::RubyBreaker::Broken
645
749
  end # of Errno::ETIME
646
- class Errno::ETIMEDOUT
647
- include RubyBreaker::Broken;
750
+
751
+ class Errno::ETIMEDOUT #:nodoc:
752
+ include ::RubyBreaker::Broken
648
753
  end # of Errno::ETIMEDOUT
649
- class Errno::ETOOMANYREFS
650
- include RubyBreaker::Broken;
754
+
755
+ class Errno::ETOOMANYREFS #:nodoc:
756
+ include ::RubyBreaker::Broken
651
757
  end # of Errno::ETOOMANYREFS
652
- class Errno::ETXTBSY
653
- include RubyBreaker::Broken;
758
+
759
+ class Errno::ETXTBSY #:nodoc:
760
+ include ::RubyBreaker::Broken
654
761
  end # of Errno::ETXTBSY
655
- class Errno::EUSERS
656
- include RubyBreaker::Broken;
762
+
763
+ class Errno::EUSERS #:nodoc:
764
+ include ::RubyBreaker::Broken
657
765
  end # of Errno::EUSERS
658
- class Errno::EXDEV
659
- include RubyBreaker::Broken;
660
- end # of Errno::EXDEV
661
766
 
767
+ class Errno::EXDEV #:nodoc:
768
+ include ::RubyBreaker::Broken
769
+ end # of Errno::EXDEV
662
770
  end # of Errno
663
- class Exception
664
- include RubyBreaker::Broken
771
+
772
+ class Exception #:nodoc:
773
+ include ::RubyBreaker::Broken
665
774
  typesig("==(?*) -> basic_object")
666
775
  typesig("backtrace(?*) -> basic_object")
667
776
  typesig("exception(?*) -> basic_object")
@@ -669,24 +778,27 @@ class Exception
669
778
  typesig("message(?*) -> basic_object")
670
779
  typesig("set_backtrace(?*) -> basic_object")
671
780
  typesig("to_s(?*) -> basic_object")
672
-
673
781
  end # of Exception
674
- class FalseClass
675
- include RubyBreaker::Broken
782
+
783
+ class FalseClass #:nodoc:
784
+ include ::RubyBreaker::Broken
676
785
  typesig("&(?*) -> basic_object")
677
786
  typesig("^(?*) -> basic_object")
678
787
  typesig("to_s(?*) -> basic_object")
679
788
  typesig("|(?*) -> basic_object")
680
-
681
789
  end # of FalseClass
682
- class Fiber
683
- include RubyBreaker::Broken;typesig("resume(?*) -> basic_object");
790
+
791
+ class Fiber #:nodoc:
792
+ include ::RubyBreaker::Broken
793
+ typesig("resume(?*) -> basic_object")
684
794
  end # of Fiber
685
- class FiberError
686
- include RubyBreaker::Broken;
795
+
796
+ class FiberError #:nodoc:
797
+ include ::RubyBreaker::Broken
687
798
  end # of FiberError
688
- class File
689
- include RubyBreaker::Broken
799
+
800
+ class File #:nodoc:
801
+ include ::RubyBreaker::Broken
690
802
  typesig("atime(?*) -> basic_object")
691
803
  typesig("chmod(?*) -> basic_object")
692
804
  typesig("chown(?*) -> basic_object")
@@ -698,11 +810,13 @@ class File
698
810
  typesig("size(?*) -> basic_object")
699
811
  typesig("to_path(?*) -> basic_object")
700
812
  typesig("truncate(?*) -> basic_object")
701
- module File::Constants
702
- include RubyBreaker::Broken;
813
+
814
+ module File::Constants #:nodoc:
815
+ include ::RubyBreaker::Broken
703
816
  end # of File::Constants
704
- class File::Stat
705
- include RubyBreaker::Broken
817
+
818
+ class File::Stat #:nodoc:
819
+ include ::RubyBreaker::Broken
706
820
  typesig("<=>(?*) -> basic_object")
707
821
  typesig("atime(?*) -> basic_object")
708
822
  typesig("blksize(?*) -> basic_object")
@@ -745,21 +859,23 @@ class File
745
859
  typesig("writable?(?*) -> basic_object")
746
860
  typesig("writable_real?(?*) -> basic_object")
747
861
  typesig("zero?(?*) -> basic_object")
748
-
749
862
  end # of File::Stat
750
- module IO::WaitReadable
751
- include RubyBreaker::Broken;
863
+
864
+ module IO::WaitReadable #:nodoc:
865
+ include ::RubyBreaker::Broken
752
866
  end # of IO::WaitReadable
753
- module IO::WaitWritable
754
- include RubyBreaker::Broken;
755
- end # of IO::WaitWritable
756
867
 
868
+ module IO::WaitWritable #:nodoc:
869
+ include ::RubyBreaker::Broken
870
+ end # of IO::WaitWritable
757
871
  end # of File
758
- module FileTest
759
- include RubyBreaker::Broken;
872
+
873
+ module FileTest #:nodoc:
874
+ include ::RubyBreaker::Broken
760
875
  end # of FileTest
761
- class Fixnum
762
- include RubyBreaker::Broken
876
+
877
+ class Fixnum #:nodoc:
878
+ include ::RubyBreaker::Broken
763
879
  typesig("%(?*) -> basic_object")
764
880
  typesig("&(?*) -> basic_object")
765
881
  typesig("*(?*) -> basic_object")
@@ -794,10 +910,10 @@ class Fixnum
794
910
  typesig("zero?(?*) -> basic_object")
795
911
  typesig("|(?*) -> basic_object")
796
912
  typesig("~(?*) -> basic_object")
797
-
798
913
  end # of Fixnum
799
- class Float
800
- include RubyBreaker::Broken
914
+
915
+ class Float #:nodoc:
916
+ include ::RubyBreaker::Broken
801
917
  typesig("%(?*) -> basic_object")
802
918
  typesig("*(?*) -> basic_object")
803
919
  typesig("**(?*) -> basic_object")
@@ -840,29 +956,32 @@ class Float
840
956
  typesig("to_s(?*) -> basic_object")
841
957
  typesig("truncate(?*) -> basic_object")
842
958
  typesig("zero?(?*) -> basic_object")
843
-
844
959
  end # of Float
845
- class FloatDomainError
846
- include RubyBreaker::Broken;
960
+
961
+ class FloatDomainError #:nodoc:
962
+ include ::RubyBreaker::Broken
847
963
  end # of FloatDomainError
848
- module GC
849
- include RubyBreaker::Broken
964
+
965
+ module GC #:nodoc:
966
+ include ::RubyBreaker::Broken
850
967
  typesig("garbage_collect(?*) -> basic_object")
851
- module GC::Profiler
852
- include RubyBreaker::Broken;
853
- end # of GC::Profiler
854
968
 
969
+ module GC::Profiler #:nodoc:
970
+ include ::RubyBreaker::Broken
971
+ end # of GC::Profiler
855
972
  end # of GC
856
- module Gem
857
- include RubyBreaker::Broken
858
- class Gem::Builder
859
- include RubyBreaker::Broken
973
+
974
+ module Gem #:nodoc:
975
+ include ::RubyBreaker::Broken
976
+
977
+ class Gem::Builder #:nodoc:
978
+ include ::RubyBreaker::Broken
860
979
  typesig("build(?*) -> basic_object")
861
980
  typesig("success(?*) -> basic_object")
862
-
863
981
  end # of Gem::Builder
864
- class Gem::SourceIndex
865
- include RubyBreaker::Broken
982
+
983
+ class Gem::SourceIndex #:nodoc:
984
+ include ::RubyBreaker::Broken
866
985
  typesig("==(?*) -> basic_object")
867
986
  typesig("_deprecated_==(?*) -> basic_object")
868
987
  typesig("_deprecated_add_spec(?*) -> basic_object")
@@ -912,13 +1031,14 @@ module Gem
912
1031
  typesig("spec_dirs(?*) -> basic_object")
913
1032
  typesig("spec_dirs=(?*) -> basic_object")
914
1033
  typesig("specification(?*) -> basic_object")
915
-
916
1034
  end # of Gem::SourceIndex
917
- class Gem::CommandLineError
918
- include RubyBreaker::Broken;
1035
+
1036
+ class Gem::CommandLineError #:nodoc:
1037
+ include ::RubyBreaker::Broken
919
1038
  end # of Gem::CommandLineError
920
- class Gem::ConfigFile
921
- include RubyBreaker::Broken
1039
+
1040
+ class Gem::ConfigFile #:nodoc:
1041
+ include ::RubyBreaker::Broken
922
1042
  typesig("==(?*) -> basic_object")
923
1043
  typesig("[](?*) -> basic_object")
924
1044
  typesig("[]=(?*) -> basic_object")
@@ -952,10 +1072,10 @@ module Gem
952
1072
  typesig("verbose(?*) -> basic_object")
953
1073
  typesig("verbose=(?*) -> basic_object")
954
1074
  typesig("write(?*) -> basic_object")
955
-
956
1075
  end # of Gem::ConfigFile
957
- class Gem::Dependency
958
- include RubyBreaker::Broken
1076
+
1077
+ class Gem::Dependency #:nodoc:
1078
+ include ::RubyBreaker::Broken
959
1079
  typesig("<=>(?*) -> basic_object")
960
1080
  typesig("==(?*) -> basic_object")
961
1081
  typesig("=~(?*) -> basic_object")
@@ -977,13 +1097,14 @@ module Gem
977
1097
  typesig("to_spec(?*) -> basic_object")
978
1098
  typesig("to_specs(?*) -> basic_object")
979
1099
  typesig("type(?*) -> basic_object")
980
-
981
1100
  end # of Gem::Dependency
982
- class Gem::DependencyError
983
- include RubyBreaker::Broken;
1101
+
1102
+ class Gem::DependencyError #:nodoc:
1103
+ include ::RubyBreaker::Broken
984
1104
  end # of Gem::DependencyError
985
- class Gem::DependencyList
986
- include RubyBreaker::Broken
1105
+
1106
+ class Gem::DependencyList #:nodoc:
1107
+ include ::RubyBreaker::Broken
987
1108
  typesig("add(?*) -> basic_object")
988
1109
  typesig("clear(?*) -> basic_object")
989
1110
  typesig("dependency_order(?*) -> basic_object")
@@ -1001,50 +1122,57 @@ module Gem
1001
1122
  typesig("tsort_each_child(?*) -> basic_object")
1002
1123
  typesig("tsort_each_node(?*) -> basic_object")
1003
1124
  typesig("why_not_ok?(?*) -> basic_object")
1004
- class TSort::Cyclic
1005
- include RubyBreaker::Broken;
1006
- end # of TSort::Cyclic
1007
1125
 
1126
+ class TSort::Cyclic #:nodoc:
1127
+ include ::RubyBreaker::Broken
1128
+ end # of TSort::Cyclic
1008
1129
  end # of Gem::DependencyList
1009
- class Gem::DependencyRemovalException
1010
- include RubyBreaker::Broken;
1130
+
1131
+ class Gem::DependencyRemovalException #:nodoc:
1132
+ include ::RubyBreaker::Broken
1011
1133
  end # of Gem::DependencyRemovalException
1012
- module Gem::Deprecate
1013
- include RubyBreaker::Broken;
1134
+
1135
+ module Gem::Deprecate #:nodoc:
1136
+ include ::RubyBreaker::Broken
1014
1137
  end # of Gem::Deprecate
1015
- class Gem::DocumentError
1016
- include RubyBreaker::Broken;
1138
+
1139
+ class Gem::DocumentError #:nodoc:
1140
+ include ::RubyBreaker::Broken
1017
1141
  end # of Gem::DocumentError
1018
- class Gem::EndOfYAMLException
1019
- include RubyBreaker::Broken;
1142
+
1143
+ class Gem::EndOfYAMLException #:nodoc:
1144
+ include ::RubyBreaker::Broken
1020
1145
  end # of Gem::EndOfYAMLException
1021
- class Gem::Exception
1022
- include RubyBreaker::Broken;
1146
+
1147
+ class Gem::Exception #:nodoc:
1148
+ include ::RubyBreaker::Broken
1023
1149
  end # of Gem::Exception
1024
- class Gem::FilePermissionError
1025
- include RubyBreaker::Broken;
1150
+
1151
+ class Gem::FilePermissionError #:nodoc:
1152
+ include ::RubyBreaker::Broken
1026
1153
  end # of Gem::FilePermissionError
1027
- class Gem::FormatException
1028
- include RubyBreaker::Broken
1154
+
1155
+ class Gem::FormatException #:nodoc:
1156
+ include ::RubyBreaker::Broken
1029
1157
  typesig("file_path(?*) -> basic_object")
1030
1158
  typesig("file_path=(?*) -> basic_object")
1031
-
1032
1159
  end # of Gem::FormatException
1033
- class Gem::GemNotFoundException
1034
- include RubyBreaker::Broken
1160
+
1161
+ class Gem::GemNotFoundException #:nodoc:
1162
+ include ::RubyBreaker::Broken
1035
1163
  typesig("errors(?*) -> basic_object")
1036
1164
  typesig("name(?*) -> basic_object")
1037
1165
  typesig("version(?*) -> basic_object")
1038
-
1039
1166
  end # of Gem::GemNotFoundException
1040
- class Gem::GemNotInHomeException
1041
- include RubyBreaker::Broken
1167
+
1168
+ class Gem::GemNotInHomeException #:nodoc:
1169
+ include ::RubyBreaker::Broken
1042
1170
  typesig("spec(?*) -> basic_object")
1043
1171
  typesig("spec=(?*) -> basic_object")
1044
-
1045
1172
  end # of Gem::GemNotInHomeException
1046
- class Gem::GemPathSearcher
1047
- include RubyBreaker::Broken
1173
+
1174
+ class Gem::GemPathSearcher #:nodoc:
1175
+ include ::RubyBreaker::Broken
1048
1176
  typesig("_deprecated_find(?*) -> basic_object")
1049
1177
  typesig("_deprecated_find_active(?*) -> basic_object")
1050
1178
  typesig("_deprecated_find_all(?*) -> basic_object")
@@ -1062,33 +1190,36 @@ module Gem
1062
1190
  typesig("matching_file?(?*) -> basic_object")
1063
1191
  typesig("matching_files(?*) -> basic_object")
1064
1192
  typesig("matching_paths(?*) -> basic_object")
1065
-
1066
1193
  end # of Gem::GemPathSearcher
1067
- class Gem::InstallError
1068
- include RubyBreaker::Broken;
1194
+
1195
+ class Gem::InstallError #:nodoc:
1196
+ include ::RubyBreaker::Broken
1069
1197
  end # of Gem::InstallError
1070
- class Gem::InvalidSpecificationException
1071
- include RubyBreaker::Broken;
1198
+
1199
+ class Gem::InvalidSpecificationException #:nodoc:
1200
+ include ::RubyBreaker::Broken
1072
1201
  end # of Gem::InvalidSpecificationException
1073
- class Gem::LoadError
1074
- include RubyBreaker::Broken
1202
+
1203
+ class Gem::LoadError #:nodoc:
1204
+ include ::RubyBreaker::Broken
1075
1205
  typesig("name(?*) -> basic_object")
1076
1206
  typesig("name=(?*) -> basic_object")
1077
1207
  typesig("requirement(?*) -> basic_object")
1078
1208
  typesig("requirement=(?*) -> basic_object")
1079
-
1080
1209
  end # of Gem::LoadError
1081
- class Gem::OperationNotSupportedError
1082
- include RubyBreaker::Broken;
1210
+
1211
+ class Gem::OperationNotSupportedError #:nodoc:
1212
+ include ::RubyBreaker::Broken
1083
1213
  end # of Gem::OperationNotSupportedError
1084
- class Gem::PathSupport
1085
- include RubyBreaker::Broken
1214
+
1215
+ class Gem::PathSupport #:nodoc:
1216
+ include ::RubyBreaker::Broken
1086
1217
  typesig("home(?*) -> basic_object")
1087
1218
  typesig("path(?*) -> basic_object")
1088
-
1089
1219
  end # of Gem::PathSupport
1090
- class Gem::Platform
1091
- include RubyBreaker::Broken
1220
+
1221
+ class Gem::Platform #:nodoc:
1222
+ include ::RubyBreaker::Broken
1092
1223
  typesig("==(?*) -> basic_object")
1093
1224
  typesig("===(?*) -> basic_object")
1094
1225
  typesig("=~(?*) -> basic_object")
@@ -1105,22 +1236,26 @@ module Gem
1105
1236
  typesig("to_s(?*) -> basic_object")
1106
1237
  typesig("version(?*) -> basic_object")
1107
1238
  typesig("version=(?*) -> basic_object")
1108
-
1109
1239
  end # of Gem::Platform
1110
- class Gem::RemoteError
1111
- include RubyBreaker::Broken;
1240
+
1241
+ class Gem::RemoteError #:nodoc:
1242
+ include ::RubyBreaker::Broken
1112
1243
  end # of Gem::RemoteError
1113
- class Gem::RemoteInstallationCancelled
1114
- include RubyBreaker::Broken;
1244
+
1245
+ class Gem::RemoteInstallationCancelled #:nodoc:
1246
+ include ::RubyBreaker::Broken
1115
1247
  end # of Gem::RemoteInstallationCancelled
1116
- class Gem::RemoteInstallationSkipped
1117
- include RubyBreaker::Broken;
1248
+
1249
+ class Gem::RemoteInstallationSkipped #:nodoc:
1250
+ include ::RubyBreaker::Broken
1118
1251
  end # of Gem::RemoteInstallationSkipped
1119
- class Gem::RemoteSourceException
1120
- include RubyBreaker::Broken;
1252
+
1253
+ class Gem::RemoteSourceException #:nodoc:
1254
+ include ::RubyBreaker::Broken
1121
1255
  end # of Gem::RemoteSourceException
1122
- class Gem::Requirement
1123
- include RubyBreaker::Broken
1256
+
1257
+ class Gem::Requirement #:nodoc:
1258
+ include ::RubyBreaker::Broken
1124
1259
  typesig("<=>(?*) -> basic_object")
1125
1260
  typesig("===(?*) -> basic_object")
1126
1261
  typesig("=~(?*) -> basic_object")
@@ -1137,10 +1272,10 @@ module Gem
1137
1272
  typesig("specific?(?*) -> basic_object")
1138
1273
  typesig("to_s(?*) -> basic_object")
1139
1274
  typesig("yaml_initialize(?*) -> basic_object")
1140
-
1141
1275
  end # of Gem::Requirement
1142
- class Gem::SpecFetcher
1143
- include RubyBreaker::Broken
1276
+
1277
+ class Gem::SpecFetcher #:nodoc:
1278
+ include ::RubyBreaker::Broken
1144
1279
  typesig("cache_dir(?*) -> basic_object")
1145
1280
  typesig("dir(?*) -> basic_object")
1146
1281
  typesig("fetch(?*) -> basic_object")
@@ -1154,10 +1289,10 @@ module Gem
1154
1289
  typesig("prerelease_specs(?*) -> basic_object")
1155
1290
  typesig("specs(?*) -> basic_object")
1156
1291
  typesig("suggest_gems_from_name(?*) -> basic_object")
1157
-
1158
1292
  end # of Gem::SpecFetcher
1159
- class Gem::Specification
1160
- include RubyBreaker::Broken
1293
+
1294
+ class Gem::Specification #:nodoc:
1295
+ include ::RubyBreaker::Broken
1161
1296
  typesig("<=>(?*) -> basic_object")
1162
1297
  typesig("==(?*) -> basic_object")
1163
1298
  typesig("_deprecated_cache_gem(?*) -> basic_object")
@@ -1308,19 +1443,20 @@ module Gem
1308
1443
  typesig("version(?*) -> basic_object")
1309
1444
  typesig("version=(?*) -> basic_object")
1310
1445
  typesig("yaml_initialize(?*) -> basic_object")
1311
-
1312
1446
  end # of Gem::Specification
1313
- class Gem::SystemExitException
1314
- include RubyBreaker::Broken
1447
+
1448
+ class Gem::SystemExitException #:nodoc:
1449
+ include ::RubyBreaker::Broken
1315
1450
  typesig("exit_code(?*) -> basic_object")
1316
1451
  typesig("exit_code=(?*) -> basic_object")
1317
-
1318
1452
  end # of Gem::SystemExitException
1319
- class Gem::VerificationError
1320
- include RubyBreaker::Broken;
1453
+
1454
+ class Gem::VerificationError #:nodoc:
1455
+ include ::RubyBreaker::Broken
1321
1456
  end # of Gem::VerificationError
1322
- class Gem::Version
1323
- include RubyBreaker::Broken
1457
+
1458
+ class Gem::Version #:nodoc:
1459
+ include ::RubyBreaker::Broken
1324
1460
  typesig("<=>(?*) -> basic_object")
1325
1461
  typesig("bump(?*) -> basic_object")
1326
1462
  typesig("eql?(?*) -> basic_object")
@@ -1337,12 +1473,11 @@ module Gem
1337
1473
  typesig("to_s(?*) -> basic_object")
1338
1474
  typesig("version(?*) -> basic_object")
1339
1475
  typesig("yaml_initialize(?*) -> basic_object")
1340
-
1341
1476
  end # of Gem::Version
1342
-
1343
1477
  end # of Gem
1344
- class Hash
1345
- include RubyBreaker::Broken
1478
+
1479
+ class Hash #:nodoc:
1480
+ include ::RubyBreaker::Broken
1346
1481
  typesig("==(?*) -> basic_object")
1347
1482
  typesig("[](?*) -> basic_object")
1348
1483
  typesig("[]=(?*) -> basic_object")
@@ -1396,10 +1531,10 @@ class Hash
1396
1531
  typesig("value?(?*) -> basic_object")
1397
1532
  typesig("values(?*) -> basic_object")
1398
1533
  typesig("values_at(?*) -> basic_object")
1399
-
1400
1534
  end # of Hash
1401
- class IO
1402
- include RubyBreaker::Broken
1535
+
1536
+ class IO #:nodoc:
1537
+ include ::RubyBreaker::Broken
1403
1538
  typesig("<<(?*) -> basic_object")
1404
1539
  typesig("advise(?*) -> basic_object")
1405
1540
  typesig("autoclose=(?*) -> basic_object")
@@ -1470,16 +1605,18 @@ class IO
1470
1605
  typesig("ungetc(?*) -> basic_object")
1471
1606
  typesig("write(?*) -> basic_object")
1472
1607
  typesig("write_nonblock(?*) -> basic_object")
1473
-
1474
1608
  end # of IO
1475
- class IOError
1476
- include RubyBreaker::Broken;
1609
+
1610
+ class IOError #:nodoc:
1611
+ include ::RubyBreaker::Broken
1477
1612
  end # of IOError
1478
- class IndexError
1479
- include RubyBreaker::Broken;
1613
+
1614
+ class IndexError #:nodoc:
1615
+ include ::RubyBreaker::Broken
1480
1616
  end # of IndexError
1481
- class Integer
1482
- include RubyBreaker::Broken
1617
+
1618
+ class Integer #:nodoc:
1619
+ include ::RubyBreaker::Broken
1483
1620
  typesig("ceil(?*) -> basic_object")
1484
1621
  typesig("chr(?*) -> basic_object")
1485
1622
  typesig("denominator(?*) -> basic_object")
@@ -1504,13 +1641,14 @@ class Integer
1504
1641
  typesig("to_r(?*) -> basic_object")
1505
1642
  typesig("truncate(?*) -> basic_object")
1506
1643
  typesig("upto(?*) -> basic_object")
1507
-
1508
1644
  end # of Integer
1509
- class Interrupt
1510
- include RubyBreaker::Broken;
1645
+
1646
+ class Interrupt #:nodoc:
1647
+ include ::RubyBreaker::Broken
1511
1648
  end # of Interrupt
1512
- module Kernel
1513
- include RubyBreaker::Broken
1649
+
1650
+ module Kernel #:nodoc:
1651
+ include ::RubyBreaker::Broken
1514
1652
  typesig("!~(?*) -> basic_object")
1515
1653
  typesig("<=>(?*) -> basic_object")
1516
1654
  typesig("===(?*) -> basic_object")
@@ -1559,25 +1697,28 @@ module Kernel
1559
1697
  typesig("untaint(?*) -> basic_object")
1560
1698
  typesig("untrust(?*) -> basic_object")
1561
1699
  typesig("untrusted?(?*) -> basic_object")
1562
-
1563
1700
  end # of Kernel
1564
- class KeyError
1565
- include RubyBreaker::Broken;
1701
+
1702
+ class KeyError #:nodoc:
1703
+ include ::RubyBreaker::Broken
1566
1704
  end # of KeyError
1567
- class LoadError
1568
- include RubyBreaker::Broken;
1705
+
1706
+ class LoadError #:nodoc:
1707
+ include ::RubyBreaker::Broken
1569
1708
  end # of LoadError
1570
- class LocalJumpError
1571
- include RubyBreaker::Broken
1709
+
1710
+ class LocalJumpError #:nodoc:
1711
+ include ::RubyBreaker::Broken
1572
1712
  typesig("exit_value(?*) -> basic_object")
1573
1713
  typesig("reason(?*) -> basic_object")
1574
-
1575
1714
  end # of LocalJumpError
1576
- module Marshal
1577
- include RubyBreaker::Broken;
1715
+
1716
+ module Marshal #:nodoc:
1717
+ include ::RubyBreaker::Broken
1578
1718
  end # of Marshal
1579
- class MatchData
1580
- include RubyBreaker::Broken
1719
+
1720
+ class MatchData #:nodoc:
1721
+ include ::RubyBreaker::Broken
1581
1722
  typesig("==(?*) -> basic_object")
1582
1723
  typesig("[](?*) -> basic_object")
1583
1724
  typesig("begin(?*) -> basic_object")
@@ -1597,17 +1738,18 @@ class MatchData
1597
1738
  typesig("to_a(?*) -> basic_object")
1598
1739
  typesig("to_s(?*) -> basic_object")
1599
1740
  typesig("values_at(?*) -> basic_object")
1600
-
1601
1741
  end # of MatchData
1602
- module Math
1603
- include RubyBreaker::Broken
1604
- class Math::DomainError
1605
- include RubyBreaker::Broken;
1606
- end # of Math::DomainError
1742
+
1743
+ module Math #:nodoc:
1744
+ include ::RubyBreaker::Broken
1607
1745
 
1746
+ class Math::DomainError #:nodoc:
1747
+ include ::RubyBreaker::Broken
1748
+ end # of Math::DomainError
1608
1749
  end # of Math
1609
- class Method
1610
- include RubyBreaker::Broken
1750
+
1751
+ class Method #:nodoc:
1752
+ include ::RubyBreaker::Broken
1611
1753
  typesig("==(?*) -> basic_object")
1612
1754
  typesig("[](?*) -> basic_object")
1613
1755
  typesig("arity(?*) -> basic_object")
@@ -1624,26 +1766,26 @@ class Method
1624
1766
  typesig("to_proc(?*) -> basic_object")
1625
1767
  typesig("to_s(?*) -> basic_object")
1626
1768
  typesig("unbind(?*) -> basic_object")
1627
-
1628
1769
  end # of Method
1629
- class Mutex
1630
- include RubyBreaker::Broken
1770
+
1771
+ class Mutex #:nodoc:
1772
+ include ::RubyBreaker::Broken
1631
1773
  typesig("lock(?*) -> basic_object")
1632
1774
  typesig("locked?(?*) -> basic_object")
1633
1775
  typesig("sleep(?*) -> basic_object")
1634
1776
  typesig("synchronize(?*) -> basic_object")
1635
1777
  typesig("try_lock(?*) -> basic_object")
1636
1778
  typesig("unlock(?*) -> basic_object")
1637
-
1638
1779
  end # of Mutex
1639
- class NameError
1640
- include RubyBreaker::Broken
1780
+
1781
+ class NameError #:nodoc:
1782
+ include ::RubyBreaker::Broken
1641
1783
  typesig("name(?*) -> basic_object")
1642
1784
  typesig("to_s(?*) -> basic_object")
1643
-
1644
1785
  end # of NameError
1645
- class NilClass
1646
- include RubyBreaker::Broken
1786
+
1787
+ class NilClass #:nodoc:
1788
+ include ::RubyBreaker::Broken
1647
1789
  typesig("&(?*) -> basic_object")
1648
1790
  typesig("^(?*) -> basic_object")
1649
1791
  typesig("inspect(?*) -> basic_object")
@@ -1656,19 +1798,23 @@ class NilClass
1656
1798
  typesig("to_r(?*) -> basic_object")
1657
1799
  typesig("to_s(?*) -> basic_object")
1658
1800
  typesig("|(?*) -> basic_object")
1659
-
1660
1801
  end # of NilClass
1661
- class NoMemoryError
1662
- include RubyBreaker::Broken;
1802
+
1803
+ class NoMemoryError #:nodoc:
1804
+ include ::RubyBreaker::Broken
1663
1805
  end # of NoMemoryError
1664
- class NoMethodError
1665
- include RubyBreaker::Broken;typesig("args(?*) -> basic_object");
1806
+
1807
+ class NoMethodError #:nodoc:
1808
+ include ::RubyBreaker::Broken
1809
+ typesig("args(?*) -> basic_object")
1666
1810
  end # of NoMethodError
1667
- class NotImplementedError
1668
- include RubyBreaker::Broken;
1811
+
1812
+ class NotImplementedError #:nodoc:
1813
+ include ::RubyBreaker::Broken
1669
1814
  end # of NotImplementedError
1670
- class Numeric
1671
- include RubyBreaker::Broken
1815
+
1816
+ class Numeric #:nodoc:
1817
+ include ::RubyBreaker::Broken
1672
1818
  typesig("%(?*) -> basic_object")
1673
1819
  typesig("+@(?*) -> basic_object")
1674
1820
  typesig("-@(?*) -> basic_object")
@@ -1710,13 +1856,14 @@ class Numeric
1710
1856
  typesig("to_int(?*) -> basic_object")
1711
1857
  typesig("truncate(?*) -> basic_object")
1712
1858
  typesig("zero?(?*) -> basic_object")
1713
-
1714
1859
  end # of Numeric
1715
- module ObjectSpace
1716
- include RubyBreaker::Broken;
1860
+
1861
+ module ObjectSpace #:nodoc:
1862
+ include ::RubyBreaker::Broken
1717
1863
  end # of ObjectSpace
1718
- class PrettyPrint
1719
- include RubyBreaker::Broken
1864
+
1865
+ class PrettyPrint #:nodoc:
1866
+ include ::RubyBreaker::Broken
1720
1867
  typesig("break_outmost_groups(?*) -> basic_object")
1721
1868
  typesig("breakable(?*) -> basic_object")
1722
1869
  typesig("current_group(?*) -> basic_object")
@@ -1733,51 +1880,51 @@ class PrettyPrint
1733
1880
  typesig("newline(?*) -> basic_object")
1734
1881
  typesig("output(?*) -> basic_object")
1735
1882
  typesig("text(?*) -> basic_object")
1736
- class PrettyPrint::Breakable
1737
- include RubyBreaker::Broken
1883
+
1884
+ class PrettyPrint::Breakable #:nodoc:
1885
+ include ::RubyBreaker::Broken
1738
1886
  typesig("indent(?*) -> basic_object")
1739
1887
  typesig("obj(?*) -> basic_object")
1740
1888
  typesig("output(?*) -> basic_object")
1741
1889
  typesig("width(?*) -> basic_object")
1742
-
1743
1890
  end # of PrettyPrint::Breakable
1744
- class PrettyPrint::Group
1745
- include RubyBreaker::Broken
1891
+
1892
+ class PrettyPrint::Group #:nodoc:
1893
+ include ::RubyBreaker::Broken
1746
1894
  typesig("break(?*) -> basic_object")
1747
1895
  typesig("break?(?*) -> basic_object")
1748
1896
  typesig("breakables(?*) -> basic_object")
1749
1897
  typesig("depth(?*) -> basic_object")
1750
1898
  typesig("first?(?*) -> basic_object")
1751
-
1752
1899
  end # of PrettyPrint::Group
1753
- class PrettyPrint::GroupQueue
1754
- include RubyBreaker::Broken
1900
+
1901
+ class PrettyPrint::GroupQueue #:nodoc:
1902
+ include ::RubyBreaker::Broken
1755
1903
  typesig("delete(?*) -> basic_object")
1756
1904
  typesig("deq(?*) -> basic_object")
1757
1905
  typesig("enq(?*) -> basic_object")
1758
-
1759
1906
  end # of PrettyPrint::GroupQueue
1760
- class PrettyPrint::SingleLine
1761
- include RubyBreaker::Broken
1907
+
1908
+ class PrettyPrint::SingleLine #:nodoc:
1909
+ include ::RubyBreaker::Broken
1762
1910
  typesig("breakable(?*) -> basic_object")
1763
1911
  typesig("first?(?*) -> basic_object")
1764
1912
  typesig("flush(?*) -> basic_object")
1765
1913
  typesig("group(?*) -> basic_object")
1766
1914
  typesig("nest(?*) -> basic_object")
1767
1915
  typesig("text(?*) -> basic_object")
1768
-
1769
1916
  end # of PrettyPrint::SingleLine
1770
- class PrettyPrint::Text
1771
- include RubyBreaker::Broken
1917
+
1918
+ class PrettyPrint::Text #:nodoc:
1919
+ include ::RubyBreaker::Broken
1772
1920
  typesig("add(?*) -> basic_object")
1773
1921
  typesig("output(?*) -> basic_object")
1774
1922
  typesig("width(?*) -> basic_object")
1775
-
1776
1923
  end # of PrettyPrint::Text
1777
-
1778
1924
  end # of PrettyPrint
1779
- class Proc
1780
- include RubyBreaker::Broken
1925
+
1926
+ class Proc #:nodoc:
1927
+ include ::RubyBreaker::Broken
1781
1928
  typesig("==(?*) -> basic_object")
1782
1929
  typesig("===(?*) -> basic_object")
1783
1930
  typesig("[](?*) -> basic_object")
@@ -1795,15 +1942,17 @@ class Proc
1795
1942
  typesig("to_proc(?*) -> basic_object")
1796
1943
  typesig("to_s(?*) -> basic_object")
1797
1944
  typesig("yield(?*) -> basic_object")
1798
-
1799
1945
  end # of Proc
1800
- module Process
1801
- include RubyBreaker::Broken
1802
- module Process::GID
1803
- include RubyBreaker::Broken;
1946
+
1947
+ module Process #:nodoc:
1948
+ include ::RubyBreaker::Broken
1949
+
1950
+ module Process::GID #:nodoc:
1951
+ include ::RubyBreaker::Broken
1804
1952
  end # of Process::GID
1805
- class Process::Status
1806
- include RubyBreaker::Broken
1953
+
1954
+ class Process::Status #:nodoc:
1955
+ include ::RubyBreaker::Broken
1807
1956
  typesig("&(?*) -> basic_object")
1808
1957
  typesig("==(?*) -> basic_object")
1809
1958
  typesig(">>(?*) -> basic_object")
@@ -1819,28 +1968,29 @@ module Process
1819
1968
  typesig("termsig(?*) -> basic_object")
1820
1969
  typesig("to_i(?*) -> basic_object")
1821
1970
  typesig("to_s(?*) -> basic_object")
1822
-
1823
1971
  end # of Process::Status
1824
- module Process::Sys
1825
- include RubyBreaker::Broken;
1972
+
1973
+ module Process::Sys #:nodoc:
1974
+ include ::RubyBreaker::Broken
1826
1975
  end # of Process::Sys
1827
- module Process::UID
1828
- include RubyBreaker::Broken;
1829
- end # of Process::UID
1830
1976
 
1977
+ module Process::UID #:nodoc:
1978
+ include ::RubyBreaker::Broken
1979
+ end # of Process::UID
1831
1980
  end # of Process
1832
- class Random
1833
- include RubyBreaker::Broken
1981
+
1982
+ class Random #:nodoc:
1983
+ include ::RubyBreaker::Broken
1834
1984
  typesig("==(?*) -> basic_object")
1835
1985
  typesig("bytes(?*) -> basic_object")
1836
1986
  typesig("marshal_dump(?*) -> basic_object")
1837
1987
  typesig("marshal_load(?*) -> basic_object")
1838
1988
  typesig("rand(?*) -> basic_object")
1839
1989
  typesig("seed(?*) -> basic_object")
1840
-
1841
1990
  end # of Random
1842
- class Range
1843
- include RubyBreaker::Broken
1991
+
1992
+ class Range #:nodoc:
1993
+ include ::RubyBreaker::Broken
1844
1994
  typesig("==(?*) -> basic_object")
1845
1995
  typesig("===(?*) -> basic_object")
1846
1996
  typesig("begin(?*) -> basic_object")
@@ -1859,13 +2009,14 @@ class Range
1859
2009
  typesig("min(?*) -> basic_object")
1860
2010
  typesig("step(?*) -> basic_object")
1861
2011
  typesig("to_s(?*) -> basic_object")
1862
-
1863
2012
  end # of Range
1864
- class RangeError
1865
- include RubyBreaker::Broken;
2013
+
2014
+ class RangeError #:nodoc:
2015
+ include ::RubyBreaker::Broken
1866
2016
  end # of RangeError
1867
- class Rational
1868
- include RubyBreaker::Broken
2017
+
2018
+ class Rational #:nodoc:
2019
+ include ::RubyBreaker::Broken
1869
2020
  typesig("*(?*) -> basic_object")
1870
2021
  typesig("**(?*) -> basic_object")
1871
2022
  typesig("+(?*) -> basic_object")
@@ -1891,13 +2042,14 @@ class Rational
1891
2042
  typesig("to_r(?*) -> basic_object")
1892
2043
  typesig("to_s(?*) -> basic_object")
1893
2044
  typesig("truncate(?*) -> basic_object")
1894
-
1895
2045
  end # of Rational
1896
- module RbConfig
1897
- include RubyBreaker::Broken;
2046
+
2047
+ module RbConfig #:nodoc:
2048
+ include ::RubyBreaker::Broken
1898
2049
  end # of RbConfig
1899
- class Regexp
1900
- include RubyBreaker::Broken
2050
+
2051
+ class Regexp #:nodoc:
2052
+ include ::RubyBreaker::Broken
1901
2053
  typesig("==(?*) -> basic_object")
1902
2054
  typesig("===(?*) -> basic_object")
1903
2055
  typesig("=~(?*) -> basic_object")
@@ -1914,53 +2066,62 @@ class Regexp
1914
2066
  typesig("source(?*) -> basic_object")
1915
2067
  typesig("to_s(?*) -> basic_object")
1916
2068
  typesig("~(?*) -> basic_object")
1917
-
1918
2069
  end # of Regexp
1919
- class RegexpError
1920
- include RubyBreaker::Broken;
2070
+
2071
+ class RegexpError #:nodoc:
2072
+ include ::RubyBreaker::Broken
1921
2073
  end # of RegexpError
1922
- class RubyVM
1923
- include RubyBreaker::Broken
1924
- class RubyVM::Env
1925
- include RubyBreaker::Broken;
2074
+
2075
+ class RubyVM #:nodoc:
2076
+ include ::RubyBreaker::Broken
2077
+
2078
+ class RubyVM::Env #:nodoc:
2079
+ include ::RubyBreaker::Broken
1926
2080
  end # of RubyVM::Env
1927
- class RubyVM::InstructionSequence
1928
- include RubyBreaker::Broken
2081
+
2082
+ class RubyVM::InstructionSequence #:nodoc:
2083
+ include ::RubyBreaker::Broken
1929
2084
  typesig("disasm(?*) -> basic_object")
1930
2085
  typesig("disassemble(?*) -> basic_object")
1931
2086
  typesig("eval(?*) -> basic_object")
1932
2087
  typesig("inspect(?*) -> basic_object")
1933
2088
  typesig("to_a(?*) -> basic_object")
1934
-
1935
2089
  end # of RubyVM::InstructionSequence
1936
-
1937
2090
  end # of RubyVM
1938
- class RuntimeError
1939
- include RubyBreaker::Broken;
2091
+
2092
+ class RuntimeError #:nodoc:
2093
+ include ::RubyBreaker::Broken
1940
2094
  end # of RuntimeError
1941
- class ScriptError
1942
- include RubyBreaker::Broken;
2095
+
2096
+ class ScriptError #:nodoc:
2097
+ include ::RubyBreaker::Broken
1943
2098
  end # of ScriptError
1944
- class SecurityError
1945
- include RubyBreaker::Broken;
2099
+
2100
+ class SecurityError #:nodoc:
2101
+ include ::RubyBreaker::Broken
1946
2102
  end # of SecurityError
1947
- module Signal
1948
- include RubyBreaker::Broken;
2103
+
2104
+ module Signal #:nodoc:
2105
+ include ::RubyBreaker::Broken
1949
2106
  end # of Signal
1950
- class SignalException
1951
- include RubyBreaker::Broken
2107
+
2108
+ class SignalException #:nodoc:
2109
+ include ::RubyBreaker::Broken
1952
2110
  typesig("signm(?*) -> basic_object")
1953
2111
  typesig("signo(?*) -> basic_object")
1954
-
1955
2112
  end # of SignalException
1956
- class StandardError
1957
- include RubyBreaker::Broken;
2113
+
2114
+ class StandardError #:nodoc:
2115
+ include ::RubyBreaker::Broken
1958
2116
  end # of StandardError
1959
- class StopIteration
1960
- include RubyBreaker::Broken;typesig("result(?*) -> basic_object");
2117
+
2118
+ class StopIteration #:nodoc:
2119
+ include ::RubyBreaker::Broken
2120
+ typesig("result(?*) -> basic_object")
1961
2121
  end # of StopIteration
1962
- class String
1963
- include RubyBreaker::Broken
2122
+
2123
+ class String #:nodoc:
2124
+ include ::RubyBreaker::Broken
1964
2125
  typesig("%(?*) -> basic_object")
1965
2126
  typesig("*(?*) -> basic_object")
1966
2127
  typesig("+(?*) -> basic_object")
@@ -2070,10 +2231,10 @@ class String
2070
2231
  typesig("upcase!(?*) -> basic_object")
2071
2232
  typesig("upto(?*) -> basic_object")
2072
2233
  typesig("valid_encoding?(?*) -> basic_object")
2073
-
2074
2234
  end # of String
2075
- class Struct
2076
- include RubyBreaker::Broken
2235
+
2236
+ class Struct #:nodoc:
2237
+ include ::RubyBreaker::Broken
2077
2238
  typesig("==(?*) -> basic_object")
2078
2239
  typesig("[](?*) -> basic_object")
2079
2240
  typesig("[]=(?*) -> basic_object")
@@ -2090,8 +2251,9 @@ class Struct
2090
2251
  typesig("to_s(?*) -> basic_object")
2091
2252
  typesig("values(?*) -> basic_object")
2092
2253
  typesig("values_at(?*) -> basic_object")
2093
- class Struct::Group
2094
- include RubyBreaker::Broken
2254
+
2255
+ class Struct::Group #:nodoc:
2256
+ include ::RubyBreaker::Broken
2095
2257
  typesig("gid(?*) -> basic_object")
2096
2258
  typesig("gid=(?*) -> basic_object")
2097
2259
  typesig("mem(?*) -> basic_object")
@@ -2100,8 +2262,9 @@ class Struct
2100
2262
  typesig("name=(?*) -> basic_object")
2101
2263
  typesig("passwd(?*) -> basic_object")
2102
2264
  typesig("passwd=(?*) -> basic_object")
2103
- class Struct::Passwd
2104
- include RubyBreaker::Broken
2265
+
2266
+ class Struct::Passwd #:nodoc:
2267
+ include ::RubyBreaker::Broken
2105
2268
  typesig("change(?*) -> basic_object")
2106
2269
  typesig("change=(?*) -> basic_object")
2107
2270
  typesig("dir(?*) -> basic_object")
@@ -2122,8 +2285,9 @@ class Struct
2122
2285
  typesig("uclass=(?*) -> basic_object")
2123
2286
  typesig("uid(?*) -> basic_object")
2124
2287
  typesig("uid=(?*) -> basic_object")
2125
- class Struct::Tms
2126
- include RubyBreaker::Broken
2288
+
2289
+ class Struct::Tms #:nodoc:
2290
+ include ::RubyBreaker::Broken
2127
2291
  typesig("cstime(?*) -> basic_object")
2128
2292
  typesig("cstime=(?*) -> basic_object")
2129
2293
  typesig("cutime(?*) -> basic_object")
@@ -2132,16 +2296,13 @@ class Struct
2132
2296
  typesig("stime=(?*) -> basic_object")
2133
2297
  typesig("utime(?*) -> basic_object")
2134
2298
  typesig("utime=(?*) -> basic_object")
2135
-
2136
2299
  end # of Struct::Tms
2137
-
2138
2300
  end # of Struct::Passwd
2139
-
2140
2301
  end # of Struct::Group
2141
-
2142
2302
  end # of Struct
2143
- class Symbol
2144
- include RubyBreaker::Broken
2303
+
2304
+ class Symbol #:nodoc:
2305
+ include ::RubyBreaker::Broken
2145
2306
  typesig("<=>(?*) -> basic_object")
2146
2307
  typesig("==(?*) -> basic_object")
2147
2308
  typesig("===(?*) -> basic_object")
@@ -2166,25 +2327,29 @@ class Symbol
2166
2327
  typesig("to_s(?*) -> basic_object")
2167
2328
  typesig("to_sym(?*) -> basic_object")
2168
2329
  typesig("upcase(?*) -> basic_object")
2169
-
2170
2330
  end # of Symbol
2171
- class SyntaxError
2172
- include RubyBreaker::Broken;
2331
+
2332
+ class SyntaxError #:nodoc:
2333
+ include ::RubyBreaker::Broken
2173
2334
  end # of SyntaxError
2174
- class SystemCallError
2175
- include RubyBreaker::Broken;typesig("errno(?*) -> basic_object");
2335
+
2336
+ class SystemCallError #:nodoc:
2337
+ include ::RubyBreaker::Broken
2338
+ typesig("errno(?*) -> basic_object")
2176
2339
  end # of SystemCallError
2177
- class SystemExit
2178
- include RubyBreaker::Broken
2340
+
2341
+ class SystemExit #:nodoc:
2342
+ include ::RubyBreaker::Broken
2179
2343
  typesig("status(?*) -> basic_object")
2180
2344
  typesig("success?(?*) -> basic_object")
2181
-
2182
2345
  end # of SystemExit
2183
- class SystemStackError
2184
- include RubyBreaker::Broken;
2346
+
2347
+ class SystemStackError #:nodoc:
2348
+ include ::RubyBreaker::Broken
2185
2349
  end # of SystemStackError
2186
- class Thread
2187
- include RubyBreaker::Broken
2350
+
2351
+ class Thread #:nodoc:
2352
+ include ::RubyBreaker::Broken
2188
2353
  typesig("[](?*) -> basic_object")
2189
2354
  typesig("[]=(?*) -> basic_object")
2190
2355
  typesig("abort_on_exception(?*) -> basic_object")
@@ -2210,21 +2375,22 @@ class Thread
2210
2375
  typesig("terminate(?*) -> basic_object")
2211
2376
  typesig("value(?*) -> basic_object")
2212
2377
  typesig("wakeup(?*) -> basic_object")
2213
-
2214
2378
  end # of Thread
2215
- class ThreadError
2216
- include RubyBreaker::Broken;
2379
+
2380
+ class ThreadError #:nodoc:
2381
+ include ::RubyBreaker::Broken
2217
2382
  end # of ThreadError
2218
- class ThreadGroup
2219
- include RubyBreaker::Broken
2383
+
2384
+ class ThreadGroup #:nodoc:
2385
+ include ::RubyBreaker::Broken
2220
2386
  typesig("add(?*) -> basic_object")
2221
2387
  typesig("enclose(?*) -> basic_object")
2222
2388
  typesig("enclosed?(?*) -> basic_object")
2223
2389
  typesig("list(?*) -> basic_object")
2224
-
2225
2390
  end # of ThreadGroup
2226
- class Time
2227
- include RubyBreaker::Broken
2391
+
2392
+ class Time #:nodoc:
2393
+ include ::RubyBreaker::Broken
2228
2394
  typesig("+(?*) -> basic_object")
2229
2395
  typesig("-(?*) -> basic_object")
2230
2396
  typesig("<=>(?*) -> basic_object")
@@ -2282,21 +2448,22 @@ class Time
2282
2448
  typesig("yday(?*) -> basic_object")
2283
2449
  typesig("year(?*) -> basic_object")
2284
2450
  typesig("zone(?*) -> basic_object")
2285
-
2286
2451
  end # of Time
2287
- class TrueClass
2288
- include RubyBreaker::Broken
2452
+
2453
+ class TrueClass #:nodoc:
2454
+ include ::RubyBreaker::Broken
2289
2455
  typesig("&(?*) -> basic_object")
2290
2456
  typesig("^(?*) -> basic_object")
2291
2457
  typesig("to_s(?*) -> basic_object")
2292
2458
  typesig("|(?*) -> basic_object")
2293
-
2294
2459
  end # of TrueClass
2295
- class TypeError
2296
- include RubyBreaker::Broken;
2460
+
2461
+ class TypeError #:nodoc:
2462
+ include ::RubyBreaker::Broken
2297
2463
  end # of TypeError
2298
- class UnboundMethod
2299
- include RubyBreaker::Broken
2464
+
2465
+ class UnboundMethod #:nodoc:
2466
+ include ::RubyBreaker::Broken
2300
2467
  typesig("==(?*) -> basic_object")
2301
2468
  typesig("arity(?*) -> basic_object")
2302
2469
  typesig("bind(?*) -> basic_object")
@@ -2309,8 +2476,8 @@ class UnboundMethod
2309
2476
  typesig("parameters(?*) -> basic_object")
2310
2477
  typesig("source_location(?*) -> basic_object")
2311
2478
  typesig("to_s(?*) -> basic_object")
2312
-
2313
2479
  end # of UnboundMethod
2314
- class ZeroDivisionError
2315
- include RubyBreaker::Broken;
2480
+
2481
+ class ZeroDivisionError #:nodoc:
2482
+ include ::RubyBreaker::Broken
2316
2483
  end # of ZeroDivisionError