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,745 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 29
13
+ 99
14
+ 7
15
+ 0
16
+ 1
17
+ 65
18
+ 49
19
+ 1
20
+ 3
21
+ 13
22
+ 99
23
+ 12
24
+ 7
25
+ 2
26
+ 12
27
+ 7
28
+ 3
29
+ 12
30
+ 65
31
+ 12
32
+ 49
33
+ 4
34
+ 4
35
+ 15
36
+ 49
37
+ 2
38
+ 0
39
+ 15
40
+ 2
41
+ 11
42
+ I
43
+ 6
44
+ I
45
+ 0
46
+ I
47
+ 0
48
+ I
49
+ 0
50
+ n
51
+ p
52
+ 5
53
+ x
54
+ 5
55
+ Array
56
+ x
57
+ 10
58
+ open_class
59
+ x
60
+ 14
61
+ __class_init__
62
+ M
63
+ 1
64
+ n
65
+ n
66
+ x
67
+ 5
68
+ Array
69
+ i
70
+ 28
71
+ 5
72
+ 66
73
+ 5
74
+ 7
75
+ 0
76
+ 47
77
+ 49
78
+ 1
79
+ 1
80
+ 9
81
+ 14
82
+ 1
83
+ 8
84
+ 27
85
+ 99
86
+ 7
87
+ 0
88
+ 7
89
+ 2
90
+ 65
91
+ 67
92
+ 49
93
+ 3
94
+ 0
95
+ 49
96
+ 4
97
+ 4
98
+ 11
99
+ I
100
+ 5
101
+ I
102
+ 0
103
+ I
104
+ 0
105
+ I
106
+ 0
107
+ n
108
+ p
109
+ 5
110
+ x
111
+ 6
112
+ sample
113
+ x
114
+ 15
115
+ method_defined?
116
+ M
117
+ 1
118
+ n
119
+ n
120
+ x
121
+ 6
122
+ sample
123
+ i
124
+ 256
125
+ 23
126
+ 0
127
+ 10
128
+ 8
129
+ 1
130
+ 19
131
+ 0
132
+ 15
133
+ 26
134
+ 93
135
+ 0
136
+ 15
137
+ 29
138
+ 51
139
+ 0
140
+ 20
141
+ 0
142
+ 49
143
+ 0
144
+ 0
145
+ 9
146
+ 39
147
+ 5
148
+ 45
149
+ 1
150
+ 2
151
+ 5
152
+ 48
153
+ 3
154
+ 49
155
+ 4
156
+ 1
157
+ 47
158
+ 49
159
+ 5
160
+ 1
161
+ 11
162
+ 8
163
+ 40
164
+ 1
165
+ 15
166
+ 20
167
+ 0
168
+ 49
169
+ 6
170
+ 0
171
+ 19
172
+ 0
173
+ 30
174
+ 8
175
+ 113
176
+ 26
177
+ 93
178
+ 1
179
+ 15
180
+ 24
181
+ 13
182
+ 45
183
+ 7
184
+ 8
185
+ 12
186
+ 49
187
+ 9
188
+ 1
189
+ 10
190
+ 68
191
+ 8
192
+ 108
193
+ 15
194
+ 24
195
+ 19
196
+ 1
197
+ 15
198
+ 5
199
+ 45
200
+ 10
201
+ 11
202
+ 7
203
+ 12
204
+ 20
205
+ 0
206
+ 49
207
+ 13
208
+ 0
209
+ 47
210
+ 101
211
+ 14
212
+ 7
213
+ 15
214
+ 20
215
+ 1
216
+ 49
217
+ 16
218
+ 0
219
+ 47
220
+ 101
221
+ 14
222
+ 7
223
+ 17
224
+ 63
225
+ 5
226
+ 47
227
+ 49
228
+ 18
229
+ 2
230
+ 25
231
+ 8
232
+ 252
233
+ 15
234
+ 92
235
+ 1
236
+ 27
237
+ 34
238
+ 15
239
+ 20
240
+ 0
241
+ 45
242
+ 19
243
+ 20
244
+ 49
245
+ 21
246
+ 1
247
+ 9
248
+ 127
249
+ 1
250
+ 8
251
+ 149
252
+ 5
253
+ 45
254
+ 10
255
+ 22
256
+ 7
257
+ 23
258
+ 20
259
+ 0
260
+ 49
261
+ 24
262
+ 0
263
+ 47
264
+ 101
265
+ 14
266
+ 7
267
+ 17
268
+ 63
269
+ 3
270
+ 47
271
+ 49
272
+ 18
273
+ 2
274
+ 15
275
+ 20
276
+ 0
277
+ 78
278
+ 84
279
+ 25
280
+ 9
281
+ 170
282
+ 5
283
+ 45
284
+ 26
285
+ 27
286
+ 7
287
+ 28
288
+ 64
289
+ 47
290
+ 49
291
+ 18
292
+ 2
293
+ 8
294
+ 171
295
+ 1
296
+ 15
297
+ 20
298
+ 0
299
+ 5
300
+ 48
301
+ 3
302
+ 85
303
+ 29
304
+ 9
305
+ 188
306
+ 5
307
+ 48
308
+ 3
309
+ 19
310
+ 0
311
+ 8
312
+ 189
313
+ 1
314
+ 15
315
+ 45
316
+ 30
317
+ 31
318
+ 13
319
+ 71
320
+ 32
321
+ 47
322
+ 9
323
+ 212
324
+ 47
325
+ 49
326
+ 33
327
+ 0
328
+ 13
329
+ 5
330
+ 47
331
+ 49
332
+ 34
333
+ 1
334
+ 15
335
+ 8
336
+ 216
337
+ 5
338
+ 49
339
+ 32
340
+ 1
341
+ 19
342
+ 2
343
+ 15
344
+ 20
345
+ 0
346
+ 56
347
+ 35
348
+ 50
349
+ 36
350
+ 0
351
+ 15
352
+ 20
353
+ 2
354
+ 44
355
+ 43
356
+ 37
357
+ 20
358
+ 0
359
+ 5
360
+ 48
361
+ 3
362
+ 49
363
+ 32
364
+ 2
365
+ 35
366
+ 0
367
+ 13
368
+ 18
369
+ 3
370
+ 49
371
+ 38
372
+ 2
373
+ 15
374
+ 15
375
+ 20
376
+ 2
377
+ 92
378
+ 0
379
+ 27
380
+ 11
381
+ I
382
+ c
383
+ I
384
+ 3
385
+ I
386
+ 0
387
+ I
388
+ 1
389
+ n
390
+ p
391
+ 39
392
+ x
393
+ 4
394
+ nil?
395
+ x
396
+ 6
397
+ Kernel
398
+ n
399
+ x
400
+ 4
401
+ size
402
+ x
403
+ 4
404
+ rand
405
+ x
406
+ 2
407
+ []
408
+ x
409
+ 6
410
+ to_int
411
+ x
412
+ 9
413
+ Exception
414
+ n
415
+ x
416
+ 3
417
+ ===
418
+ x
419
+ 9
420
+ TypeError
421
+ n
422
+ s
423
+ 16
424
+ Coercion error:
425
+ x
426
+ 7
427
+ inspect
428
+ x
429
+ 4
430
+ to_s
431
+ s
432
+ 28
433
+ .to_int => Integer failed:
434
+ (
435
+ x
436
+ 7
437
+ message
438
+ s
439
+ 1
440
+ )
441
+ x
442
+ 5
443
+ raise
444
+ x
445
+ 7
446
+ Integer
447
+ n
448
+ x
449
+ 8
450
+ kind_of?
451
+ n
452
+ s
453
+ 58
454
+ Coercion error: obj.to_int did NOT return an Integer (was
455
+ x
456
+ 5
457
+ class
458
+ x
459
+ 1
460
+ <
461
+ x
462
+ 13
463
+ ArgumentError
464
+ n
465
+ s
466
+ 19
467
+ negative array size
468
+ x
469
+ 1
470
+ >
471
+ x
472
+ 5
473
+ Array
474
+ n
475
+ x
476
+ 3
477
+ new
478
+ x
479
+ 8
480
+ allocate
481
+ x
482
+ 10
483
+ initialize
484
+ M
485
+ 1
486
+ p
487
+ 2
488
+ x
489
+ 9
490
+ for_block
491
+ t
492
+ n
493
+ x
494
+ 6
495
+ sample
496
+ i
497
+ 66
498
+ 57
499
+ 19
500
+ 0
501
+ 15
502
+ 20
503
+ 0
504
+ 45
505
+ 0
506
+ 1
507
+ 5
508
+ 48
509
+ 2
510
+ 20
511
+ 0
512
+ 82
513
+ 3
514
+ 49
515
+ 4
516
+ 1
517
+ 81
518
+ 5
519
+ 19
520
+ 1
521
+ 15
522
+ 21
523
+ 1
524
+ 2
525
+ 20
526
+ 1
527
+ 49
528
+ 6
529
+ 1
530
+ 21
531
+ 1
532
+ 2
533
+ 20
534
+ 0
535
+ 49
536
+ 6
537
+ 1
538
+ 17
539
+ 2
540
+ 21
541
+ 1
542
+ 2
543
+ 12
544
+ 20
545
+ 0
546
+ 12
547
+ 49
548
+ 7
549
+ 2
550
+ 15
551
+ 21
552
+ 1
553
+ 2
554
+ 12
555
+ 20
556
+ 1
557
+ 12
558
+ 49
559
+ 7
560
+ 2
561
+ 15
562
+ 2
563
+ 11
564
+ I
565
+ 7
566
+ I
567
+ 2
568
+ I
569
+ 1
570
+ I
571
+ 1
572
+ n
573
+ p
574
+ 8
575
+ x
576
+ 6
577
+ Kernel
578
+ n
579
+ x
580
+ 4
581
+ size
582
+ x
583
+ 1
584
+ -
585
+ x
586
+ 4
587
+ rand
588
+ x
589
+ 1
590
+ +
591
+ x
592
+ 2
593
+ []
594
+ x
595
+ 3
596
+ []=
597
+ p
598
+ 7
599
+ I
600
+ 0
601
+ I
602
+ 14
603
+ I
604
+ 4
605
+ I
606
+ 15
607
+ I
608
+ 18
609
+ I
610
+ 16
611
+ I
612
+ 42
613
+ x
614
+ 101
615
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/array/random_access.rb
616
+ p
617
+ 2
618
+ x
619
+ 1
620
+ i
621
+ x
622
+ 1
623
+ r
624
+ x
625
+ 5
626
+ times
627
+ x
628
+ 5
629
+ Range
630
+ x
631
+ 3
632
+ []=
633
+ p
634
+ 29
635
+ I
636
+ -1
637
+ I
638
+ a
639
+ I
640
+ 8
641
+ I
642
+ b
643
+ I
644
+ 29
645
+ I
646
+ c
647
+ I
648
+ 38
649
+ I
650
+ d
651
+ I
652
+ 45
653
+ I
654
+ f
655
+ I
656
+ 46
657
+ I
658
+ d
659
+ I
660
+ 49
661
+ I
662
+ e
663
+ I
664
+ 72
665
+ I
666
+ 10
667
+ I
668
+ 96
669
+ I
670
+ 11
671
+ I
672
+ ac
673
+ I
674
+ 12
675
+ I
676
+ be
677
+ I
678
+ 13
679
+ I
680
+ db
681
+ I
682
+ 14
683
+ I
684
+ e3
685
+ I
686
+ 18
687
+ I
688
+ fa
689
+ I
690
+ 19
691
+ I
692
+ 100
693
+ x
694
+ 101
695
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/array/random_access.rb
696
+ p
697
+ 3
698
+ x
699
+ 1
700
+ n
701
+ x
702
+ 1
703
+ e
704
+ x
705
+ 6
706
+ result
707
+ x
708
+ 17
709
+ method_visibility
710
+ x
711
+ 15
712
+ add_defn_method
713
+ p
714
+ 5
715
+ I
716
+ 2
717
+ I
718
+ 1a
719
+ I
720
+ e
721
+ I
722
+ a
723
+ I
724
+ 1c
725
+ x
726
+ 101
727
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/array/random_access.rb
728
+ p
729
+ 0
730
+ x
731
+ 13
732
+ attach_method
733
+ p
734
+ 3
735
+ I
736
+ 0
737
+ I
738
+ 1
739
+ I
740
+ 1d
741
+ x
742
+ 101
743
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/array/random_access.rb
744
+ p
745
+ 0