activesupport 3.0.6 → 3.0.7.rc1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of activesupport might be problematic. Click here for more details.

Files changed (186) hide show
  1. data/CHANGELOG +5 -0
  2. data/lib/active_support.rbc +1184 -0
  3. data/lib/active_support/all.rbc +85 -0
  4. data/lib/active_support/base64.rbc +578 -0
  5. data/lib/active_support/basic_object.rbc +536 -0
  6. data/lib/active_support/benchmarkable.rbc +885 -0
  7. data/lib/active_support/buffered_logger.rbc +2367 -0
  8. data/lib/active_support/cache.rbc +8453 -0
  9. data/lib/active_support/cache/file_store.rbc +4077 -0
  10. data/lib/active_support/cache/strategy/local_cache.rbc +2930 -0
  11. data/lib/active_support/callbacks.rbc +7817 -0
  12. data/lib/active_support/concern.rbc +729 -0
  13. data/lib/active_support/configurable.rbc +985 -0
  14. data/lib/active_support/core_ext.rbc +191 -0
  15. data/lib/active_support/core_ext/array.rbc +149 -0
  16. data/lib/active_support/core_ext/array/access.rbc +627 -0
  17. data/lib/active_support/core_ext/array/conversions.rbc +1922 -0
  18. data/lib/active_support/core_ext/array/extract_options.rbc +378 -0
  19. data/lib/active_support/core_ext/array/grouping.rbc +1121 -0
  20. data/lib/active_support/core_ext/array/random_access.rbc +745 -0
  21. data/lib/active_support/core_ext/array/uniq_by.rbc +444 -0
  22. data/lib/active_support/core_ext/array/wrap.rbc +226 -0
  23. data/lib/active_support/core_ext/benchmark.rbc +261 -0
  24. data/lib/active_support/core_ext/big_decimal.rbc +53 -0
  25. data/lib/active_support/core_ext/big_decimal/conversions.rbc +681 -0
  26. data/lib/active_support/core_ext/cgi.rbc +53 -0
  27. data/lib/active_support/core_ext/cgi/escape_skipping_slashes.rbc +666 -0
  28. data/lib/active_support/core_ext/class.rbc +117 -0
  29. data/lib/active_support/core_ext/class/attribute.rbc +566 -0
  30. data/lib/active_support/core_ext/class/attribute_accessors.rbc +940 -0
  31. data/lib/active_support/core_ext/class/delegating_attributes.rbc +1266 -0
  32. data/lib/active_support/core_ext/class/inheritable_attributes.rbc +3573 -0
  33. data/lib/active_support/core_ext/class/subclasses.rbc +1140 -0
  34. data/lib/active_support/core_ext/date/acts_like.rbc +193 -0
  35. data/lib/active_support/core_ext/date/calculations.rbc +4918 -0
  36. data/lib/active_support/core_ext/date/conversions.rbc +1178 -0
  37. data/lib/active_support/core_ext/date/freeze.rbc +545 -0
  38. data/lib/active_support/core_ext/date/zones.rbc +268 -0
  39. data/lib/active_support/core_ext/date_time/acts_like.rbc +253 -0
  40. data/lib/active_support/core_ext/date_time/calculations.rbc +2133 -0
  41. data/lib/active_support/core_ext/date_time/conversions.rbc +1548 -0
  42. data/lib/active_support/core_ext/date_time/zones.rbc +328 -0
  43. data/lib/active_support/core_ext/enumerable.rbc +1472 -0
  44. data/lib/active_support/core_ext/exception.rbc +160 -0
  45. data/lib/active_support/core_ext/file.rbc +69 -0
  46. data/lib/active_support/core_ext/file/atomic.rbc +730 -0
  47. data/lib/active_support/core_ext/file/path.rbc +161 -0
  48. data/lib/active_support/core_ext/float.rbc +53 -0
  49. data/lib/active_support/core_ext/float/rounding.rbc +284 -0
  50. data/lib/active_support/core_ext/hash.rbc +165 -0
  51. data/lib/active_support/core_ext/hash/conversions.rb +1 -1
  52. data/lib/active_support/core_ext/hash/conversions.rbc +2470 -0
  53. data/lib/active_support/core_ext/hash/deep_merge.rbc +409 -0
  54. data/lib/active_support/core_ext/hash/diff.rbc +344 -0
  55. data/lib/active_support/core_ext/hash/except.rbc +328 -0
  56. data/lib/active_support/core_ext/hash/indifferent_access.rbc +211 -0
  57. data/lib/active_support/core_ext/hash/keys.rbc +822 -0
  58. data/lib/active_support/core_ext/hash/reverse_merge.rbc +343 -0
  59. data/lib/active_support/core_ext/hash/slice.rbc +816 -0
  60. data/lib/active_support/core_ext/integer.rbc +85 -0
  61. data/lib/active_support/core_ext/integer/inflections.rbc +211 -0
  62. data/lib/active_support/core_ext/integer/multiple.rbc +214 -0
  63. data/lib/active_support/core_ext/integer/time.rbc +439 -0
  64. data/lib/active_support/core_ext/kernel.rbc +117 -0
  65. data/lib/active_support/core_ext/kernel/agnostics.rbc +304 -0
  66. data/lib/active_support/core_ext/kernel/debugger.rbc +489 -0
  67. data/lib/active_support/core_ext/kernel/reporting.rbc +1056 -0
  68. data/lib/active_support/core_ext/kernel/requires.rbc +461 -0
  69. data/lib/active_support/core_ext/kernel/singleton_class.rbc +309 -0
  70. data/lib/active_support/core_ext/load_error.rbc +575 -0
  71. data/lib/active_support/core_ext/logger.rbc +1654 -0
  72. data/lib/active_support/core_ext/module.rbc +229 -0
  73. data/lib/active_support/core_ext/module/aliasing.rbc +642 -0
  74. data/lib/active_support/core_ext/module/anonymous.rbc +204 -0
  75. data/lib/active_support/core_ext/module/attr_accessor_with_default.rbc +401 -0
  76. data/lib/active_support/core_ext/module/attr_internal.rbc +796 -0
  77. data/lib/active_support/core_ext/module/attribute_accessors.rbc +849 -0
  78. data/lib/active_support/core_ext/module/delegation.rbc +850 -0
  79. data/lib/active_support/core_ext/module/deprecation.rbc +219 -0
  80. data/lib/active_support/core_ext/module/introspection.rbc +1215 -0
  81. data/lib/active_support/core_ext/module/method_names.rbc +387 -0
  82. data/lib/active_support/core_ext/module/reachable.rbc +300 -0
  83. data/lib/active_support/core_ext/module/remove_method.rbc +350 -0
  84. data/lib/active_support/core_ext/module/synchronization.rbc +644 -0
  85. data/lib/active_support/core_ext/name_error.rbc +422 -0
  86. data/lib/active_support/core_ext/numeric.rbc +69 -0
  87. data/lib/active_support/core_ext/numeric/bytes.rbc +873 -0
  88. data/lib/active_support/core_ext/numeric/time.rbc +1299 -0
  89. data/lib/active_support/core_ext/object.rbc +213 -0
  90. data/lib/active_support/core_ext/object/acts_like.rbc +211 -0
  91. data/lib/active_support/core_ext/object/blank.rbc +1219 -0
  92. data/lib/active_support/core_ext/object/conversions.rbc +101 -0
  93. data/lib/active_support/core_ext/object/duplicable.rbc +1091 -0
  94. data/lib/active_support/core_ext/object/instance_variables.rbc +746 -0
  95. data/lib/active_support/core_ext/object/returning.rbc +222 -0
  96. data/lib/active_support/core_ext/object/to_json.rbc +259 -0
  97. data/lib/active_support/core_ext/object/to_param.rbc +1057 -0
  98. data/lib/active_support/core_ext/object/to_query.rbc +771 -0
  99. data/lib/active_support/core_ext/object/try.rbc +389 -0
  100. data/lib/active_support/core_ext/object/with_options.rbc +245 -0
  101. data/lib/active_support/core_ext/proc.rbc +416 -0
  102. data/lib/active_support/core_ext/process.rbc +53 -0
  103. data/lib/active_support/core_ext/process/daemon.rbc +466 -0
  104. data/lib/active_support/core_ext/range.rbc +101 -0
  105. data/lib/active_support/core_ext/range/blockless_step.rbc +551 -0
  106. data/lib/active_support/core_ext/range/conversions.rbc +447 -0
  107. data/lib/active_support/core_ext/range/include_range.rbc +340 -0
  108. data/lib/active_support/core_ext/range/overlaps.rbc +204 -0
  109. data/lib/active_support/core_ext/regexp.rbc +201 -0
  110. data/lib/active_support/core_ext/rexml.rbc +953 -0
  111. data/lib/active_support/core_ext/string.rbc +245 -0
  112. data/lib/active_support/core_ext/string/access.rbc +1254 -0
  113. data/lib/active_support/core_ext/string/behavior.rbc +174 -0
  114. data/lib/active_support/core_ext/string/conversions.rbc +964 -0
  115. data/lib/active_support/core_ext/string/encoding.rbc +295 -0
  116. data/lib/active_support/core_ext/string/exclude.rbc +192 -0
  117. data/lib/active_support/core_ext/string/filters.rbc +640 -0
  118. data/lib/active_support/core_ext/string/inflections.rbc +1320 -0
  119. data/lib/active_support/core_ext/string/interpolation.rbc +69 -0
  120. data/lib/active_support/core_ext/string/multibyte.rbc +690 -0
  121. data/lib/active_support/core_ext/string/output_safety.rbc +2035 -0
  122. data/lib/active_support/core_ext/string/starts_ends_with.rbc +151 -0
  123. data/lib/active_support/core_ext/string/strip.rbc +301 -0
  124. data/lib/active_support/core_ext/string/xchar.rbc +294 -0
  125. data/lib/active_support/core_ext/time/acts_like.rbc +193 -0
  126. data/lib/active_support/core_ext/time/calculations.rbc +5893 -0
  127. data/lib/active_support/core_ext/time/conversions.rbc +1193 -0
  128. data/lib/active_support/core_ext/time/marshal.rbc +1245 -0
  129. data/lib/active_support/core_ext/time/publicize_conversion_methods.rbc +259 -0
  130. data/lib/active_support/core_ext/time/zones.rbc +1061 -0
  131. data/lib/active_support/core_ext/uri.rbc +516 -0
  132. data/lib/active_support/dependencies.rbc +12236 -0
  133. data/lib/active_support/dependencies/autoload.rbc +1153 -0
  134. data/lib/active_support/deprecation.rbc +411 -0
  135. data/lib/active_support/deprecation/behaviors.rbc +1200 -0
  136. data/lib/active_support/deprecation/method_wrappers.rbc +628 -0
  137. data/lib/active_support/deprecation/proxy_wrappers.rbc +1925 -0
  138. data/lib/active_support/deprecation/reporting.rbc +1516 -0
  139. data/lib/active_support/descendants_tracker.rbc +1060 -0
  140. data/lib/active_support/duration.rbc +2432 -0
  141. data/lib/active_support/file_update_checker.rbc +595 -0
  142. data/lib/active_support/hash_with_indifferent_access.rbc +2560 -0
  143. data/lib/active_support/i18n.rbc +262 -0
  144. data/lib/active_support/i18n_railtie.rbc +1869 -0
  145. data/lib/active_support/inflections.rbc +2076 -0
  146. data/lib/active_support/inflector.rbc +117 -0
  147. data/lib/active_support/inflector/inflections.rbc +3699 -0
  148. data/lib/active_support/inflector/methods.rbc +1881 -0
  149. data/lib/active_support/inflector/transliterate.rbc +684 -0
  150. data/lib/active_support/json.rbc +69 -0
  151. data/lib/active_support/json/decoding.rbc +1045 -0
  152. data/lib/active_support/json/encoding.rbc +7108 -0
  153. data/lib/active_support/json/variable.rbc +392 -0
  154. data/lib/active_support/lazy_load_hooks.rbc +703 -0
  155. data/lib/active_support/log_subscriber.rbc +2081 -0
  156. data/lib/active_support/memoizable.rbc +2164 -0
  157. data/lib/active_support/multibyte.rbc +562 -0
  158. data/lib/active_support/multibyte/utils.rbc +1062 -0
  159. data/lib/active_support/notifications.rbc +1241 -0
  160. data/lib/active_support/notifications/fanout.rbc +1632 -0
  161. data/lib/active_support/notifications/instrumenter.rbc +1207 -0
  162. data/lib/active_support/option_merger.rbc +721 -0
  163. data/lib/active_support/ordered_hash.rbc +3808 -0
  164. data/lib/active_support/ordered_options.rbc +750 -0
  165. data/lib/active_support/railtie.rbc +1051 -0
  166. data/lib/active_support/rescuable.rbc +1389 -0
  167. data/lib/active_support/ruby/shim.rbc +229 -0
  168. data/lib/active_support/secure_random.rbc +0 -0
  169. data/lib/active_support/string_inquirer.rbc +332 -0
  170. data/lib/active_support/test_case.rbc +1002 -0
  171. data/lib/active_support/testing/assertions.rbc +1063 -0
  172. data/lib/active_support/testing/declarative.rbc +904 -0
  173. data/lib/active_support/testing/default.rbc +319 -0
  174. data/lib/active_support/testing/deprecation.rbc +1562 -0
  175. data/lib/active_support/testing/isolation.rbc +4048 -0
  176. data/lib/active_support/testing/pending.rbc +961 -0
  177. data/lib/active_support/testing/setup_and_teardown.rbc +2684 -0
  178. data/lib/active_support/time.rbc +574 -0
  179. data/lib/active_support/time_with_zone.rbc +5988 -0
  180. data/lib/active_support/values/time_zone.rbc +6915 -0
  181. data/lib/active_support/version.rb +2 -2
  182. data/lib/active_support/version.rbc +295 -0
  183. data/lib/active_support/whiny_nil.rbc +826 -0
  184. data/lib/active_support/xml_mini.rbc +4291 -0
  185. data/lib/active_support/xml_mini/rexml.rbc +1744 -0
  186. metadata +196 -10
@@ -0,0 +1,1060 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 37
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 99
23
+ 7
24
+ 2
25
+ 65
26
+ 49
27
+ 3
28
+ 2
29
+ 13
30
+ 99
31
+ 12
32
+ 7
33
+ 4
34
+ 12
35
+ 7
36
+ 5
37
+ 12
38
+ 65
39
+ 12
40
+ 49
41
+ 6
42
+ 4
43
+ 15
44
+ 49
45
+ 4
46
+ 0
47
+ 15
48
+ 2
49
+ 11
50
+ I
51
+ 6
52
+ I
53
+ 0
54
+ I
55
+ 0
56
+ I
57
+ 0
58
+ n
59
+ p
60
+ 7
61
+ s
62
+ 27
63
+ active_support/dependencies
64
+ x
65
+ 7
66
+ require
67
+ x
68
+ 13
69
+ ActiveSupport
70
+ x
71
+ 11
72
+ open_module
73
+ x
74
+ 15
75
+ __module_init__
76
+ M
77
+ 1
78
+ n
79
+ n
80
+ x
81
+ 13
82
+ ActiveSupport
83
+ i
84
+ 28
85
+ 5
86
+ 66
87
+ 99
88
+ 7
89
+ 0
90
+ 65
91
+ 49
92
+ 1
93
+ 2
94
+ 13
95
+ 99
96
+ 12
97
+ 7
98
+ 2
99
+ 12
100
+ 7
101
+ 3
102
+ 12
103
+ 65
104
+ 12
105
+ 49
106
+ 4
107
+ 4
108
+ 15
109
+ 49
110
+ 2
111
+ 0
112
+ 11
113
+ I
114
+ 6
115
+ I
116
+ 0
117
+ I
118
+ 0
119
+ I
120
+ 0
121
+ n
122
+ p
123
+ 5
124
+ x
125
+ 18
126
+ DescendantsTracker
127
+ x
128
+ 11
129
+ open_module
130
+ x
131
+ 15
132
+ __module_init__
133
+ M
134
+ 1
135
+ n
136
+ n
137
+ x
138
+ 18
139
+ DescendantsTracker
140
+ i
141
+ 92
142
+ 5
143
+ 66
144
+ 5
145
+ 7
146
+ 0
147
+ 45
148
+ 1
149
+ 2
150
+ 56
151
+ 3
152
+ 50
153
+ 4
154
+ 0
155
+ 49
156
+ 5
157
+ 2
158
+ 15
159
+ 99
160
+ 7
161
+ 6
162
+ 7
163
+ 7
164
+ 65
165
+ 5
166
+ 49
167
+ 8
168
+ 4
169
+ 15
170
+ 99
171
+ 7
172
+ 9
173
+ 7
174
+ 10
175
+ 65
176
+ 5
177
+ 49
178
+ 8
179
+ 4
180
+ 15
181
+ 99
182
+ 7
183
+ 11
184
+ 7
185
+ 12
186
+ 65
187
+ 5
188
+ 49
189
+ 8
190
+ 4
191
+ 15
192
+ 99
193
+ 7
194
+ 13
195
+ 7
196
+ 14
197
+ 65
198
+ 67
199
+ 49
200
+ 15
201
+ 0
202
+ 49
203
+ 16
204
+ 4
205
+ 15
206
+ 99
207
+ 7
208
+ 6
209
+ 7
210
+ 17
211
+ 65
212
+ 67
213
+ 49
214
+ 15
215
+ 0
216
+ 49
217
+ 16
218
+ 4
219
+ 15
220
+ 99
221
+ 7
222
+ 9
223
+ 7
224
+ 18
225
+ 65
226
+ 67
227
+ 49
228
+ 15
229
+ 0
230
+ 49
231
+ 16
232
+ 4
233
+ 11
234
+ I
235
+ 5
236
+ I
237
+ 0
238
+ I
239
+ 0
240
+ I
241
+ 0
242
+ n
243
+ p
244
+ 19
245
+ x
246
+ 20
247
+ @@direct_descendants
248
+ x
249
+ 4
250
+ Hash
251
+ n
252
+ M
253
+ 1
254
+ p
255
+ 2
256
+ x
257
+ 9
258
+ for_block
259
+ t
260
+ n
261
+ x
262
+ 18
263
+ DescendantsTracker
264
+ i
265
+ 24
266
+ 58
267
+ 37
268
+ 19
269
+ 0
270
+ 15
271
+ 37
272
+ 19
273
+ 1
274
+ 15
275
+ 15
276
+ 20
277
+ 0
278
+ 20
279
+ 1
280
+ 35
281
+ 0
282
+ 13
283
+ 18
284
+ 3
285
+ 49
286
+ 0
287
+ 2
288
+ 15
289
+ 11
290
+ I
291
+ 7
292
+ I
293
+ 2
294
+ I
295
+ 2
296
+ I
297
+ 2
298
+ n
299
+ p
300
+ 1
301
+ x
302
+ 3
303
+ []=
304
+ p
305
+ 3
306
+ I
307
+ 0
308
+ I
309
+ 7
310
+ I
311
+ 18
312
+ x
313
+ 92
314
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/descendants_tracker.rb
315
+ p
316
+ 2
317
+ x
318
+ 1
319
+ h
320
+ x
321
+ 1
322
+ k
323
+ x
324
+ 3
325
+ new
326
+ x
327
+ 18
328
+ class_variable_set
329
+ x
330
+ 18
331
+ direct_descendants
332
+ M
333
+ 1
334
+ n
335
+ n
336
+ x
337
+ 18
338
+ direct_descendants
339
+ i
340
+ 12
341
+ 65
342
+ 7
343
+ 0
344
+ 49
345
+ 1
346
+ 1
347
+ 20
348
+ 0
349
+ 49
350
+ 2
351
+ 1
352
+ 11
353
+ I
354
+ 3
355
+ I
356
+ 1
357
+ I
358
+ 1
359
+ I
360
+ 1
361
+ n
362
+ p
363
+ 3
364
+ x
365
+ 20
366
+ @@direct_descendants
367
+ x
368
+ 18
369
+ class_variable_get
370
+ x
371
+ 2
372
+ []
373
+ p
374
+ 5
375
+ I
376
+ -1
377
+ I
378
+ 9
379
+ I
380
+ 0
381
+ I
382
+ a
383
+ I
384
+ c
385
+ x
386
+ 92
387
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/descendants_tracker.rb
388
+ p
389
+ 1
390
+ x
391
+ 5
392
+ klass
393
+ x
394
+ 13
395
+ attach_method
396
+ x
397
+ 11
398
+ descendants
399
+ M
400
+ 1
401
+ n
402
+ n
403
+ x
404
+ 11
405
+ descendants
406
+ i
407
+ 19
408
+ 65
409
+ 7
410
+ 0
411
+ 49
412
+ 1
413
+ 1
414
+ 20
415
+ 0
416
+ 49
417
+ 2
418
+ 1
419
+ 35
420
+ 0
421
+ 56
422
+ 3
423
+ 50
424
+ 4
425
+ 1
426
+ 11
427
+ I
428
+ 4
429
+ I
430
+ 1
431
+ I
432
+ 1
433
+ I
434
+ 1
435
+ n
436
+ p
437
+ 5
438
+ x
439
+ 20
440
+ @@direct_descendants
441
+ x
442
+ 18
443
+ class_variable_get
444
+ x
445
+ 2
446
+ []
447
+ M
448
+ 1
449
+ p
450
+ 2
451
+ x
452
+ 9
453
+ for_block
454
+ t
455
+ n
456
+ x
457
+ 11
458
+ descendants
459
+ i
460
+ 29
461
+ 58
462
+ 37
463
+ 19
464
+ 0
465
+ 15
466
+ 37
467
+ 19
468
+ 1
469
+ 15
470
+ 15
471
+ 20
472
+ 0
473
+ 20
474
+ 1
475
+ 49
476
+ 0
477
+ 1
478
+ 15
479
+ 20
480
+ 0
481
+ 20
482
+ 1
483
+ 49
484
+ 1
485
+ 0
486
+ 49
487
+ 2
488
+ 1
489
+ 11
490
+ I
491
+ 5
492
+ I
493
+ 2
494
+ I
495
+ 2
496
+ I
497
+ 2
498
+ n
499
+ p
500
+ 3
501
+ x
502
+ 2
503
+ <<
504
+ x
505
+ 11
506
+ descendants
507
+ x
508
+ 6
509
+ concat
510
+ p
511
+ 7
512
+ I
513
+ 0
514
+ I
515
+ e
516
+ I
517
+ a
518
+ I
519
+ f
520
+ I
521
+ 12
522
+ I
523
+ 10
524
+ I
525
+ 1d
526
+ x
527
+ 92
528
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/descendants_tracker.rb
529
+ p
530
+ 2
531
+ x
532
+ 11
533
+ descendants
534
+ x
535
+ 6
536
+ _klass
537
+ x
538
+ 6
539
+ inject
540
+ p
541
+ 5
542
+ I
543
+ -1
544
+ I
545
+ d
546
+ I
547
+ 0
548
+ I
549
+ e
550
+ I
551
+ 13
552
+ x
553
+ 92
554
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/descendants_tracker.rb
555
+ p
556
+ 1
557
+ x
558
+ 5
559
+ klass
560
+ x
561
+ 5
562
+ clear
563
+ M
564
+ 1
565
+ n
566
+ n
567
+ x
568
+ 5
569
+ clear
570
+ i
571
+ 12
572
+ 65
573
+ 7
574
+ 0
575
+ 49
576
+ 1
577
+ 1
578
+ 56
579
+ 2
580
+ 50
581
+ 3
582
+ 0
583
+ 11
584
+ I
585
+ 2
586
+ I
587
+ 0
588
+ I
589
+ 0
590
+ I
591
+ 0
592
+ n
593
+ p
594
+ 4
595
+ x
596
+ 20
597
+ @@direct_descendants
598
+ x
599
+ 18
600
+ class_variable_get
601
+ M
602
+ 1
603
+ p
604
+ 2
605
+ x
606
+ 9
607
+ for_block
608
+ t
609
+ n
610
+ x
611
+ 5
612
+ clear
613
+ i
614
+ 43
615
+ 58
616
+ 37
617
+ 19
618
+ 0
619
+ 15
620
+ 37
621
+ 19
622
+ 1
623
+ 15
624
+ 15
625
+ 45
626
+ 0
627
+ 1
628
+ 43
629
+ 2
630
+ 20
631
+ 0
632
+ 49
633
+ 3
634
+ 1
635
+ 9
636
+ 35
637
+ 65
638
+ 7
639
+ 4
640
+ 49
641
+ 5
642
+ 1
643
+ 20
644
+ 0
645
+ 49
646
+ 6
647
+ 1
648
+ 8
649
+ 42
650
+ 20
651
+ 1
652
+ 56
653
+ 7
654
+ 50
655
+ 8
656
+ 0
657
+ 11
658
+ I
659
+ 5
660
+ I
661
+ 2
662
+ I
663
+ 2
664
+ I
665
+ 2
666
+ n
667
+ p
668
+ 9
669
+ x
670
+ 13
671
+ ActiveSupport
672
+ n
673
+ x
674
+ 12
675
+ Dependencies
676
+ x
677
+ 11
678
+ autoloaded?
679
+ x
680
+ 20
681
+ @@direct_descendants
682
+ x
683
+ 18
684
+ class_variable_get
685
+ x
686
+ 6
687
+ delete
688
+ M
689
+ 1
690
+ p
691
+ 2
692
+ x
693
+ 9
694
+ for_block
695
+ t
696
+ n
697
+ x
698
+ 5
699
+ clear
700
+ i
701
+ 15
702
+ 57
703
+ 19
704
+ 0
705
+ 15
706
+ 45
707
+ 0
708
+ 1
709
+ 43
710
+ 2
711
+ 20
712
+ 0
713
+ 49
714
+ 3
715
+ 1
716
+ 11
717
+ I
718
+ 4
719
+ I
720
+ 1
721
+ I
722
+ 1
723
+ I
724
+ 1
725
+ n
726
+ p
727
+ 4
728
+ x
729
+ 13
730
+ ActiveSupport
731
+ n
732
+ x
733
+ 12
734
+ Dependencies
735
+ x
736
+ 11
737
+ autoloaded?
738
+ p
739
+ 3
740
+ I
741
+ 0
742
+ I
743
+ 19
744
+ I
745
+ f
746
+ x
747
+ 92
748
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/descendants_tracker.rb
749
+ p
750
+ 1
751
+ x
752
+ 1
753
+ v
754
+ x
755
+ 7
756
+ reject!
757
+ p
758
+ 9
759
+ I
760
+ 0
761
+ I
762
+ 15
763
+ I
764
+ a
765
+ I
766
+ 16
767
+ I
768
+ 16
769
+ I
770
+ 17
771
+ I
772
+ 23
773
+ I
774
+ 19
775
+ I
776
+ 2b
777
+ x
778
+ 92
779
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/descendants_tracker.rb
780
+ p
781
+ 2
782
+ x
783
+ 5
784
+ klass
785
+ x
786
+ 11
787
+ descendants
788
+ x
789
+ 4
790
+ each
791
+ p
792
+ 5
793
+ I
794
+ -1
795
+ I
796
+ 14
797
+ I
798
+ 0
799
+ I
800
+ 15
801
+ I
802
+ c
803
+ x
804
+ 92
805
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/descendants_tracker.rb
806
+ p
807
+ 0
808
+ x
809
+ 9
810
+ inherited
811
+ M
812
+ 1
813
+ n
814
+ n
815
+ x
816
+ 9
817
+ inherited
818
+ i
819
+ 14
820
+ 5
821
+ 49
822
+ 0
823
+ 0
824
+ 20
825
+ 0
826
+ 49
827
+ 1
828
+ 1
829
+ 15
830
+ 54
831
+ 89
832
+ 2
833
+ 11
834
+ I
835
+ 3
836
+ I
837
+ 1
838
+ I
839
+ 1
840
+ I
841
+ 1
842
+ n
843
+ p
844
+ 3
845
+ x
846
+ 18
847
+ direct_descendants
848
+ x
849
+ 2
850
+ <<
851
+ x
852
+ 9
853
+ inherited
854
+ p
855
+ 7
856
+ I
857
+ -1
858
+ I
859
+ 1e
860
+ I
861
+ 0
862
+ I
863
+ 1f
864
+ I
865
+ a
866
+ I
867
+ 20
868
+ I
869
+ e
870
+ x
871
+ 92
872
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/descendants_tracker.rb
873
+ p
874
+ 1
875
+ x
876
+ 4
877
+ base
878
+ x
879
+ 17
880
+ method_visibility
881
+ x
882
+ 15
883
+ add_defn_method
884
+ M
885
+ 1
886
+ n
887
+ n
888
+ x
889
+ 18
890
+ direct_descendants
891
+ i
892
+ 8
893
+ 45
894
+ 0
895
+ 1
896
+ 5
897
+ 49
898
+ 2
899
+ 1
900
+ 11
901
+ I
902
+ 2
903
+ I
904
+ 0
905
+ I
906
+ 0
907
+ I
908
+ 0
909
+ n
910
+ p
911
+ 3
912
+ x
913
+ 18
914
+ DescendantsTracker
915
+ n
916
+ x
917
+ 18
918
+ direct_descendants
919
+ p
920
+ 5
921
+ I
922
+ -1
923
+ I
924
+ 23
925
+ I
926
+ 0
927
+ I
928
+ 24
929
+ I
930
+ 8
931
+ x
932
+ 92
933
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/descendants_tracker.rb
934
+ p
935
+ 0
936
+ M
937
+ 1
938
+ n
939
+ n
940
+ x
941
+ 11
942
+ descendants
943
+ i
944
+ 8
945
+ 45
946
+ 0
947
+ 1
948
+ 5
949
+ 49
950
+ 2
951
+ 1
952
+ 11
953
+ I
954
+ 2
955
+ I
956
+ 0
957
+ I
958
+ 0
959
+ I
960
+ 0
961
+ n
962
+ p
963
+ 3
964
+ x
965
+ 18
966
+ DescendantsTracker
967
+ n
968
+ x
969
+ 11
970
+ descendants
971
+ p
972
+ 5
973
+ I
974
+ -1
975
+ I
976
+ 27
977
+ I
978
+ 0
979
+ I
980
+ 28
981
+ I
982
+ 8
983
+ x
984
+ 92
985
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/descendants_tracker.rb
986
+ p
987
+ 0
988
+ p
989
+ 15
990
+ I
991
+ 2
992
+ I
993
+ 7
994
+ I
995
+ 11
996
+ I
997
+ 9
998
+ I
999
+ 1c
1000
+ I
1001
+ d
1002
+ I
1003
+ 27
1004
+ I
1005
+ 14
1006
+ I
1007
+ 32
1008
+ I
1009
+ 1e
1010
+ I
1011
+ 40
1012
+ I
1013
+ 23
1014
+ I
1015
+ 4e
1016
+ I
1017
+ 27
1018
+ I
1019
+ 5c
1020
+ x
1021
+ 92
1022
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/descendants_tracker.rb
1023
+ p
1024
+ 0
1025
+ x
1026
+ 13
1027
+ attach_method
1028
+ p
1029
+ 3
1030
+ I
1031
+ 2
1032
+ I
1033
+ 6
1034
+ I
1035
+ 1c
1036
+ x
1037
+ 92
1038
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/descendants_tracker.rb
1039
+ p
1040
+ 0
1041
+ x
1042
+ 13
1043
+ attach_method
1044
+ p
1045
+ 5
1046
+ I
1047
+ 0
1048
+ I
1049
+ 1
1050
+ I
1051
+ 9
1052
+ I
1053
+ 3
1054
+ I
1055
+ 25
1056
+ x
1057
+ 92
1058
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/descendants_tracker.rb
1059
+ p
1060
+ 0