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,1925 @@
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
+ 32
63
+ active_support/inflector/methods
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
+ 11
126
+ Deprecation
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
+ 11
139
+ Deprecation
140
+ i
141
+ 116
142
+ 5
143
+ 66
144
+ 99
145
+ 7
146
+ 0
147
+ 1
148
+ 65
149
+ 49
150
+ 1
151
+ 3
152
+ 13
153
+ 99
154
+ 12
155
+ 7
156
+ 2
157
+ 12
158
+ 7
159
+ 3
160
+ 12
161
+ 65
162
+ 12
163
+ 49
164
+ 4
165
+ 4
166
+ 15
167
+ 49
168
+ 2
169
+ 0
170
+ 15
171
+ 99
172
+ 7
173
+ 5
174
+ 45
175
+ 0
176
+ 6
177
+ 65
178
+ 49
179
+ 1
180
+ 3
181
+ 13
182
+ 99
183
+ 12
184
+ 7
185
+ 2
186
+ 12
187
+ 7
188
+ 7
189
+ 12
190
+ 65
191
+ 12
192
+ 49
193
+ 4
194
+ 4
195
+ 15
196
+ 49
197
+ 2
198
+ 0
199
+ 15
200
+ 99
201
+ 7
202
+ 8
203
+ 45
204
+ 0
205
+ 9
206
+ 65
207
+ 49
208
+ 1
209
+ 3
210
+ 13
211
+ 99
212
+ 12
213
+ 7
214
+ 2
215
+ 12
216
+ 7
217
+ 10
218
+ 12
219
+ 65
220
+ 12
221
+ 49
222
+ 4
223
+ 4
224
+ 15
225
+ 49
226
+ 2
227
+ 0
228
+ 15
229
+ 99
230
+ 7
231
+ 11
232
+ 45
233
+ 0
234
+ 12
235
+ 65
236
+ 49
237
+ 1
238
+ 3
239
+ 13
240
+ 99
241
+ 12
242
+ 7
243
+ 2
244
+ 12
245
+ 7
246
+ 13
247
+ 12
248
+ 65
249
+ 12
250
+ 49
251
+ 4
252
+ 4
253
+ 15
254
+ 49
255
+ 2
256
+ 0
257
+ 11
258
+ I
259
+ 6
260
+ I
261
+ 0
262
+ I
263
+ 0
264
+ I
265
+ 0
266
+ n
267
+ p
268
+ 14
269
+ x
270
+ 16
271
+ DeprecationProxy
272
+ x
273
+ 10
274
+ open_class
275
+ x
276
+ 14
277
+ __class_init__
278
+ M
279
+ 1
280
+ n
281
+ n
282
+ x
283
+ 16
284
+ DeprecationProxy
285
+ i
286
+ 54
287
+ 5
288
+ 66
289
+ 99
290
+ 7
291
+ 0
292
+ 7
293
+ 1
294
+ 65
295
+ 5
296
+ 49
297
+ 2
298
+ 4
299
+ 15
300
+ 5
301
+ 48
302
+ 3
303
+ 56
304
+ 4
305
+ 50
306
+ 5
307
+ 0
308
+ 15
309
+ 99
310
+ 7
311
+ 6
312
+ 7
313
+ 7
314
+ 65
315
+ 67
316
+ 49
317
+ 8
318
+ 0
319
+ 49
320
+ 9
321
+ 4
322
+ 15
323
+ 5
324
+ 48
325
+ 10
326
+ 15
327
+ 99
328
+ 7
329
+ 11
330
+ 7
331
+ 12
332
+ 65
333
+ 67
334
+ 49
335
+ 8
336
+ 0
337
+ 49
338
+ 9
339
+ 4
340
+ 11
341
+ I
342
+ 5
343
+ I
344
+ 0
345
+ I
346
+ 0
347
+ I
348
+ 0
349
+ n
350
+ p
351
+ 13
352
+ x
353
+ 3
354
+ new
355
+ M
356
+ 1
357
+ n
358
+ n
359
+ x
360
+ 3
361
+ new
362
+ i
363
+ 27
364
+ 95
365
+ 19
366
+ 1
367
+ 15
368
+ 20
369
+ 0
370
+ 49
371
+ 0
372
+ 0
373
+ 19
374
+ 2
375
+ 15
376
+ 20
377
+ 2
378
+ 9
379
+ 19
380
+ 1
381
+ 8
382
+ 22
383
+ 20
384
+ 2
385
+ 11
386
+ 15
387
+ 54
388
+ 89
389
+ 1
390
+ 11
391
+ I
392
+ 4
393
+ I
394
+ 3
395
+ I
396
+ 0
397
+ I
398
+ 0
399
+ I
400
+ 0
401
+ p
402
+ 2
403
+ x
404
+ 5
405
+ first
406
+ x
407
+ 3
408
+ new
409
+ p
410
+ 9
411
+ I
412
+ -1
413
+ I
414
+ 6
415
+ I
416
+ 4
417
+ I
418
+ 7
419
+ I
420
+ c
421
+ I
422
+ 9
423
+ I
424
+ 17
425
+ I
426
+ a
427
+ I
428
+ 1b
429
+ x
430
+ 99
431
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
432
+ p
433
+ 3
434
+ x
435
+ 4
436
+ args
437
+ x
438
+ 5
439
+ block
440
+ x
441
+ 6
442
+ object
443
+ x
444
+ 13
445
+ attach_method
446
+ x
447
+ 16
448
+ instance_methods
449
+ M
450
+ 1
451
+ p
452
+ 2
453
+ x
454
+ 9
455
+ for_block
456
+ t
457
+ n
458
+ x
459
+ 16
460
+ DeprecationProxy
461
+ i
462
+ 40
463
+ 57
464
+ 19
465
+ 0
466
+ 15
467
+ 20
468
+ 0
469
+ 7
470
+ 0
471
+ 13
472
+ 70
473
+ 9
474
+ 24
475
+ 15
476
+ 44
477
+ 43
478
+ 1
479
+ 7
480
+ 2
481
+ 78
482
+ 49
483
+ 3
484
+ 2
485
+ 6
486
+ 0
487
+ 49
488
+ 4
489
+ 1
490
+ 9
491
+ 32
492
+ 1
493
+ 8
494
+ 39
495
+ 5
496
+ 20
497
+ 0
498
+ 47
499
+ 49
500
+ 5
501
+ 1
502
+ 11
503
+ I
504
+ 6
505
+ I
506
+ 1
507
+ I
508
+ 1
509
+ I
510
+ 1
511
+ n
512
+ p
513
+ 6
514
+ n
515
+ x
516
+ 6
517
+ Regexp
518
+ s
519
+ 15
520
+ ^__|^object_id$
521
+ x
522
+ 3
523
+ new
524
+ x
525
+ 2
526
+ =~
527
+ x
528
+ 12
529
+ undef_method
530
+ p
531
+ 3
532
+ I
533
+ 0
534
+ I
535
+ d
536
+ I
537
+ 28
538
+ x
539
+ 99
540
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
541
+ p
542
+ 1
543
+ x
544
+ 1
545
+ m
546
+ x
547
+ 4
548
+ each
549
+ x
550
+ 7
551
+ inspect
552
+ M
553
+ 1
554
+ n
555
+ n
556
+ x
557
+ 7
558
+ inspect
559
+ i
560
+ 7
561
+ 5
562
+ 48
563
+ 0
564
+ 49
565
+ 1
566
+ 0
567
+ 11
568
+ I
569
+ 1
570
+ I
571
+ 0
572
+ I
573
+ 0
574
+ I
575
+ 0
576
+ n
577
+ p
578
+ 2
579
+ x
580
+ 6
581
+ target
582
+ x
583
+ 7
584
+ inspect
585
+ p
586
+ 5
587
+ I
588
+ -1
589
+ I
590
+ 11
591
+ I
592
+ 0
593
+ I
594
+ 12
595
+ I
596
+ 7
597
+ x
598
+ 99
599
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
600
+ p
601
+ 0
602
+ x
603
+ 17
604
+ method_visibility
605
+ x
606
+ 15
607
+ add_defn_method
608
+ x
609
+ 7
610
+ private
611
+ x
612
+ 14
613
+ method_missing
614
+ M
615
+ 1
616
+ n
617
+ n
618
+ x
619
+ 14
620
+ method_missing
621
+ i
622
+ 42
623
+ 95
624
+ 19
625
+ 2
626
+ 15
627
+ 5
628
+ 5
629
+ 48
630
+ 0
631
+ 20
632
+ 0
633
+ 20
634
+ 1
635
+ 47
636
+ 49
637
+ 1
638
+ 3
639
+ 15
640
+ 5
641
+ 48
642
+ 2
643
+ 20
644
+ 0
645
+ 20
646
+ 1
647
+ 36
648
+ 20
649
+ 2
650
+ 13
651
+ 70
652
+ 10
653
+ 38
654
+ 44
655
+ 43
656
+ 3
657
+ 12
658
+ 49
659
+ 4
660
+ 1
661
+ 51
662
+ 5
663
+ 1
664
+ 11
665
+ I
666
+ 8
667
+ I
668
+ 3
669
+ I
670
+ 1
671
+ I
672
+ 1
673
+ I
674
+ 1
675
+ p
676
+ 6
677
+ x
678
+ 6
679
+ caller
680
+ x
681
+ 4
682
+ warn
683
+ x
684
+ 6
685
+ target
686
+ x
687
+ 4
688
+ Proc
689
+ x
690
+ 14
691
+ __from_block__
692
+ x
693
+ 8
694
+ __send__
695
+ p
696
+ 7
697
+ I
698
+ -1
699
+ I
700
+ 16
701
+ I
702
+ 4
703
+ I
704
+ 17
705
+ I
706
+ 11
707
+ I
708
+ 18
709
+ I
710
+ 2a
711
+ x
712
+ 99
713
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
714
+ p
715
+ 3
716
+ x
717
+ 6
718
+ called
719
+ x
720
+ 4
721
+ args
722
+ x
723
+ 5
724
+ block
725
+ p
726
+ 11
727
+ I
728
+ 2
729
+ I
730
+ 6
731
+ I
732
+ d
733
+ I
734
+ d
735
+ I
736
+ 16
737
+ I
738
+ 11
739
+ I
740
+ 24
741
+ I
742
+ 15
743
+ I
744
+ 28
745
+ I
746
+ 16
747
+ I
748
+ 36
749
+ x
750
+ 99
751
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
752
+ p
753
+ 0
754
+ x
755
+ 13
756
+ attach_method
757
+ x
758
+ 21
759
+ DeprecatedObjectProxy
760
+ n
761
+ M
762
+ 1
763
+ n
764
+ n
765
+ x
766
+ 21
767
+ DeprecatedObjectProxy
768
+ i
769
+ 48
770
+ 5
771
+ 66
772
+ 99
773
+ 7
774
+ 0
775
+ 7
776
+ 1
777
+ 65
778
+ 67
779
+ 49
780
+ 2
781
+ 0
782
+ 49
783
+ 3
784
+ 4
785
+ 15
786
+ 5
787
+ 48
788
+ 4
789
+ 15
790
+ 99
791
+ 7
792
+ 5
793
+ 7
794
+ 6
795
+ 65
796
+ 67
797
+ 49
798
+ 2
799
+ 0
800
+ 49
801
+ 3
802
+ 4
803
+ 15
804
+ 99
805
+ 7
806
+ 7
807
+ 7
808
+ 8
809
+ 65
810
+ 67
811
+ 49
812
+ 2
813
+ 0
814
+ 49
815
+ 3
816
+ 4
817
+ 11
818
+ I
819
+ 5
820
+ I
821
+ 0
822
+ I
823
+ 0
824
+ I
825
+ 0
826
+ n
827
+ p
828
+ 9
829
+ x
830
+ 10
831
+ initialize
832
+ M
833
+ 1
834
+ n
835
+ n
836
+ x
837
+ 10
838
+ initialize
839
+ i
840
+ 10
841
+ 20
842
+ 0
843
+ 38
844
+ 0
845
+ 15
846
+ 20
847
+ 1
848
+ 38
849
+ 1
850
+ 11
851
+ I
852
+ 3
853
+ I
854
+ 2
855
+ I
856
+ 2
857
+ I
858
+ 2
859
+ n
860
+ p
861
+ 2
862
+ x
863
+ 7
864
+ @object
865
+ x
866
+ 8
867
+ @message
868
+ p
869
+ 7
870
+ I
871
+ -1
872
+ I
873
+ 1d
874
+ I
875
+ 0
876
+ I
877
+ 1e
878
+ I
879
+ 5
880
+ I
881
+ 1f
882
+ I
883
+ a
884
+ x
885
+ 99
886
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
887
+ p
888
+ 2
889
+ x
890
+ 6
891
+ object
892
+ x
893
+ 7
894
+ message
895
+ x
896
+ 17
897
+ method_visibility
898
+ x
899
+ 15
900
+ add_defn_method
901
+ x
902
+ 7
903
+ private
904
+ x
905
+ 6
906
+ target
907
+ M
908
+ 1
909
+ n
910
+ n
911
+ x
912
+ 6
913
+ target
914
+ i
915
+ 3
916
+ 39
917
+ 0
918
+ 11
919
+ I
920
+ 1
921
+ I
922
+ 0
923
+ I
924
+ 0
925
+ I
926
+ 0
927
+ n
928
+ p
929
+ 1
930
+ x
931
+ 7
932
+ @object
933
+ p
934
+ 5
935
+ I
936
+ -1
937
+ I
938
+ 23
939
+ I
940
+ 0
941
+ I
942
+ 24
943
+ I
944
+ 3
945
+ x
946
+ 99
947
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
948
+ p
949
+ 0
950
+ x
951
+ 4
952
+ warn
953
+ M
954
+ 1
955
+ n
956
+ n
957
+ x
958
+ 4
959
+ warn
960
+ i
961
+ 13
962
+ 45
963
+ 0
964
+ 1
965
+ 43
966
+ 2
967
+ 39
968
+ 3
969
+ 20
970
+ 0
971
+ 49
972
+ 4
973
+ 2
974
+ 11
975
+ I
976
+ 6
977
+ I
978
+ 3
979
+ I
980
+ 3
981
+ I
982
+ 3
983
+ n
984
+ p
985
+ 5
986
+ x
987
+ 13
988
+ ActiveSupport
989
+ n
990
+ x
991
+ 11
992
+ Deprecation
993
+ x
994
+ 8
995
+ @message
996
+ x
997
+ 4
998
+ warn
999
+ p
1000
+ 5
1001
+ I
1002
+ -1
1003
+ I
1004
+ 27
1005
+ I
1006
+ 0
1007
+ I
1008
+ 28
1009
+ I
1010
+ d
1011
+ x
1012
+ 99
1013
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
1014
+ p
1015
+ 3
1016
+ x
1017
+ 9
1018
+ callstack
1019
+ x
1020
+ 6
1021
+ called
1022
+ x
1023
+ 4
1024
+ args
1025
+ p
1026
+ 9
1027
+ I
1028
+ 2
1029
+ I
1030
+ 1d
1031
+ I
1032
+ 10
1033
+ I
1034
+ 22
1035
+ I
1036
+ 14
1037
+ I
1038
+ 23
1039
+ I
1040
+ 22
1041
+ I
1042
+ 27
1043
+ I
1044
+ 30
1045
+ x
1046
+ 99
1047
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
1048
+ p
1049
+ 0
1050
+ x
1051
+ 31
1052
+ DeprecatedInstanceVariableProxy
1053
+ n
1054
+ M
1055
+ 1
1056
+ n
1057
+ n
1058
+ x
1059
+ 31
1060
+ DeprecatedInstanceVariableProxy
1061
+ i
1062
+ 48
1063
+ 5
1064
+ 66
1065
+ 99
1066
+ 7
1067
+ 0
1068
+ 7
1069
+ 1
1070
+ 65
1071
+ 67
1072
+ 49
1073
+ 2
1074
+ 0
1075
+ 49
1076
+ 3
1077
+ 4
1078
+ 15
1079
+ 5
1080
+ 48
1081
+ 4
1082
+ 15
1083
+ 99
1084
+ 7
1085
+ 5
1086
+ 7
1087
+ 6
1088
+ 65
1089
+ 67
1090
+ 49
1091
+ 2
1092
+ 0
1093
+ 49
1094
+ 3
1095
+ 4
1096
+ 15
1097
+ 99
1098
+ 7
1099
+ 7
1100
+ 7
1101
+ 8
1102
+ 65
1103
+ 67
1104
+ 49
1105
+ 2
1106
+ 0
1107
+ 49
1108
+ 3
1109
+ 4
1110
+ 11
1111
+ I
1112
+ 5
1113
+ I
1114
+ 0
1115
+ I
1116
+ 0
1117
+ I
1118
+ 0
1119
+ n
1120
+ p
1121
+ 9
1122
+ x
1123
+ 10
1124
+ initialize
1125
+ M
1126
+ 1
1127
+ n
1128
+ n
1129
+ x
1130
+ 10
1131
+ initialize
1132
+ i
1133
+ 35
1134
+ 23
1135
+ 2
1136
+ 10
1137
+ 16
1138
+ 7
1139
+ 0
1140
+ 20
1141
+ 1
1142
+ 47
1143
+ 101
1144
+ 1
1145
+ 63
1146
+ 2
1147
+ 19
1148
+ 2
1149
+ 15
1150
+ 20
1151
+ 0
1152
+ 20
1153
+ 1
1154
+ 20
1155
+ 2
1156
+ 17
1157
+ 3
1158
+ 38
1159
+ 2
1160
+ 15
1161
+ 38
1162
+ 3
1163
+ 15
1164
+ 38
1165
+ 4
1166
+ 15
1167
+ 2
1168
+ 11
1169
+ I
1170
+ 6
1171
+ I
1172
+ 3
1173
+ I
1174
+ 2
1175
+ I
1176
+ 3
1177
+ n
1178
+ p
1179
+ 5
1180
+ s
1181
+ 1
1182
+ @
1183
+ x
1184
+ 4
1185
+ to_s
1186
+ x
1187
+ 9
1188
+ @instance
1189
+ x
1190
+ 7
1191
+ @method
1192
+ x
1193
+ 4
1194
+ @var
1195
+ p
1196
+ 5
1197
+ I
1198
+ -1
1199
+ I
1200
+ 2f
1201
+ I
1202
+ 10
1203
+ I
1204
+ 30
1205
+ I
1206
+ 23
1207
+ x
1208
+ 99
1209
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
1210
+ p
1211
+ 3
1212
+ x
1213
+ 8
1214
+ instance
1215
+ x
1216
+ 6
1217
+ method
1218
+ x
1219
+ 3
1220
+ var
1221
+ x
1222
+ 17
1223
+ method_visibility
1224
+ x
1225
+ 15
1226
+ add_defn_method
1227
+ x
1228
+ 7
1229
+ private
1230
+ x
1231
+ 6
1232
+ target
1233
+ M
1234
+ 1
1235
+ n
1236
+ n
1237
+ x
1238
+ 6
1239
+ target
1240
+ i
1241
+ 8
1242
+ 39
1243
+ 0
1244
+ 39
1245
+ 1
1246
+ 49
1247
+ 2
1248
+ 1
1249
+ 11
1250
+ I
1251
+ 2
1252
+ I
1253
+ 0
1254
+ I
1255
+ 0
1256
+ I
1257
+ 0
1258
+ n
1259
+ p
1260
+ 3
1261
+ x
1262
+ 9
1263
+ @instance
1264
+ x
1265
+ 7
1266
+ @method
1267
+ x
1268
+ 8
1269
+ __send__
1270
+ p
1271
+ 5
1272
+ I
1273
+ -1
1274
+ I
1275
+ 34
1276
+ I
1277
+ 0
1278
+ I
1279
+ 35
1280
+ I
1281
+ 8
1282
+ x
1283
+ 99
1284
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
1285
+ p
1286
+ 0
1287
+ x
1288
+ 4
1289
+ warn
1290
+ M
1291
+ 1
1292
+ n
1293
+ n
1294
+ x
1295
+ 4
1296
+ warn
1297
+ i
1298
+ 56
1299
+ 45
1300
+ 0
1301
+ 1
1302
+ 43
1303
+ 2
1304
+ 39
1305
+ 3
1306
+ 47
1307
+ 101
1308
+ 4
1309
+ 7
1310
+ 5
1311
+ 39
1312
+ 6
1313
+ 47
1314
+ 101
1315
+ 4
1316
+ 7
1317
+ 7
1318
+ 20
1319
+ 1
1320
+ 47
1321
+ 101
1322
+ 4
1323
+ 7
1324
+ 8
1325
+ 39
1326
+ 3
1327
+ 47
1328
+ 101
1329
+ 4
1330
+ 7
1331
+ 7
1332
+ 20
1333
+ 1
1334
+ 47
1335
+ 101
1336
+ 4
1337
+ 7
1338
+ 9
1339
+ 20
1340
+ 2
1341
+ 49
1342
+ 10
1343
+ 0
1344
+ 47
1345
+ 101
1346
+ 4
1347
+ 63
1348
+ 11
1349
+ 20
1350
+ 0
1351
+ 49
1352
+ 11
1353
+ 2
1354
+ 11
1355
+ I
1356
+ f
1357
+ I
1358
+ 3
1359
+ I
1360
+ 3
1361
+ I
1362
+ 3
1363
+ n
1364
+ p
1365
+ 12
1366
+ x
1367
+ 13
1368
+ ActiveSupport
1369
+ n
1370
+ x
1371
+ 11
1372
+ Deprecation
1373
+ x
1374
+ 4
1375
+ @var
1376
+ x
1377
+ 4
1378
+ to_s
1379
+ s
1380
+ 21
1381
+ is deprecated! Call
1382
+ x
1383
+ 7
1384
+ @method
1385
+ s
1386
+ 1
1387
+ .
1388
+ s
1389
+ 12
1390
+ instead of
1391
+ s
1392
+ 8
1393
+ . Args:
1394
+ x
1395
+ 7
1396
+ inspect
1397
+ x
1398
+ 4
1399
+ warn
1400
+ p
1401
+ 5
1402
+ I
1403
+ -1
1404
+ I
1405
+ 38
1406
+ I
1407
+ 0
1408
+ I
1409
+ 39
1410
+ I
1411
+ 38
1412
+ x
1413
+ 99
1414
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
1415
+ p
1416
+ 3
1417
+ x
1418
+ 9
1419
+ callstack
1420
+ x
1421
+ 6
1422
+ called
1423
+ x
1424
+ 4
1425
+ args
1426
+ p
1427
+ 9
1428
+ I
1429
+ 2
1430
+ I
1431
+ 2f
1432
+ I
1433
+ 10
1434
+ I
1435
+ 33
1436
+ I
1437
+ 14
1438
+ I
1439
+ 34
1440
+ I
1441
+ 22
1442
+ I
1443
+ 38
1444
+ I
1445
+ 30
1446
+ x
1447
+ 99
1448
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
1449
+ p
1450
+ 0
1451
+ x
1452
+ 23
1453
+ DeprecatedConstantProxy
1454
+ n
1455
+ M
1456
+ 1
1457
+ n
1458
+ n
1459
+ x
1460
+ 23
1461
+ DeprecatedConstantProxy
1462
+ i
1463
+ 62
1464
+ 5
1465
+ 66
1466
+ 99
1467
+ 7
1468
+ 0
1469
+ 7
1470
+ 1
1471
+ 65
1472
+ 67
1473
+ 49
1474
+ 2
1475
+ 0
1476
+ 49
1477
+ 3
1478
+ 4
1479
+ 15
1480
+ 99
1481
+ 7
1482
+ 4
1483
+ 7
1484
+ 5
1485
+ 65
1486
+ 67
1487
+ 49
1488
+ 2
1489
+ 0
1490
+ 49
1491
+ 3
1492
+ 4
1493
+ 15
1494
+ 5
1495
+ 48
1496
+ 6
1497
+ 15
1498
+ 99
1499
+ 7
1500
+ 7
1501
+ 7
1502
+ 8
1503
+ 65
1504
+ 67
1505
+ 49
1506
+ 2
1507
+ 0
1508
+ 49
1509
+ 3
1510
+ 4
1511
+ 15
1512
+ 99
1513
+ 7
1514
+ 9
1515
+ 7
1516
+ 10
1517
+ 65
1518
+ 67
1519
+ 49
1520
+ 2
1521
+ 0
1522
+ 49
1523
+ 3
1524
+ 4
1525
+ 11
1526
+ I
1527
+ 5
1528
+ I
1529
+ 0
1530
+ I
1531
+ 0
1532
+ I
1533
+ 0
1534
+ n
1535
+ p
1536
+ 11
1537
+ x
1538
+ 10
1539
+ initialize
1540
+ M
1541
+ 1
1542
+ n
1543
+ n
1544
+ x
1545
+ 10
1546
+ initialize
1547
+ i
1548
+ 10
1549
+ 20
1550
+ 0
1551
+ 38
1552
+ 0
1553
+ 15
1554
+ 20
1555
+ 1
1556
+ 38
1557
+ 1
1558
+ 11
1559
+ I
1560
+ 3
1561
+ I
1562
+ 2
1563
+ I
1564
+ 2
1565
+ I
1566
+ 2
1567
+ n
1568
+ p
1569
+ 2
1570
+ x
1571
+ 10
1572
+ @old_const
1573
+ x
1574
+ 10
1575
+ @new_const
1576
+ p
1577
+ 7
1578
+ I
1579
+ -1
1580
+ I
1581
+ 3e
1582
+ I
1583
+ 0
1584
+ I
1585
+ 3f
1586
+ I
1587
+ 5
1588
+ I
1589
+ 40
1590
+ I
1591
+ a
1592
+ x
1593
+ 99
1594
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
1595
+ p
1596
+ 2
1597
+ x
1598
+ 9
1599
+ old_const
1600
+ x
1601
+ 9
1602
+ new_const
1603
+ x
1604
+ 17
1605
+ method_visibility
1606
+ x
1607
+ 15
1608
+ add_defn_method
1609
+ x
1610
+ 5
1611
+ class
1612
+ M
1613
+ 1
1614
+ n
1615
+ n
1616
+ x
1617
+ 5
1618
+ class
1619
+ i
1620
+ 7
1621
+ 5
1622
+ 48
1623
+ 0
1624
+ 49
1625
+ 1
1626
+ 0
1627
+ 11
1628
+ I
1629
+ 1
1630
+ I
1631
+ 0
1632
+ I
1633
+ 0
1634
+ I
1635
+ 0
1636
+ n
1637
+ p
1638
+ 2
1639
+ x
1640
+ 6
1641
+ target
1642
+ x
1643
+ 5
1644
+ class
1645
+ p
1646
+ 5
1647
+ I
1648
+ -1
1649
+ I
1650
+ 43
1651
+ I
1652
+ 0
1653
+ I
1654
+ 44
1655
+ I
1656
+ 7
1657
+ x
1658
+ 99
1659
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
1660
+ p
1661
+ 0
1662
+ x
1663
+ 7
1664
+ private
1665
+ x
1666
+ 6
1667
+ target
1668
+ M
1669
+ 1
1670
+ n
1671
+ n
1672
+ x
1673
+ 6
1674
+ target
1675
+ i
1676
+ 14
1677
+ 45
1678
+ 0
1679
+ 1
1680
+ 43
1681
+ 2
1682
+ 39
1683
+ 3
1684
+ 49
1685
+ 4
1686
+ 0
1687
+ 49
1688
+ 5
1689
+ 1
1690
+ 11
1691
+ I
1692
+ 2
1693
+ I
1694
+ 0
1695
+ I
1696
+ 0
1697
+ I
1698
+ 0
1699
+ n
1700
+ p
1701
+ 6
1702
+ x
1703
+ 13
1704
+ ActiveSupport
1705
+ n
1706
+ x
1707
+ 9
1708
+ Inflector
1709
+ x
1710
+ 10
1711
+ @new_const
1712
+ x
1713
+ 4
1714
+ to_s
1715
+ x
1716
+ 11
1717
+ constantize
1718
+ p
1719
+ 5
1720
+ I
1721
+ -1
1722
+ I
1723
+ 48
1724
+ I
1725
+ 0
1726
+ I
1727
+ 49
1728
+ I
1729
+ e
1730
+ x
1731
+ 99
1732
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
1733
+ p
1734
+ 0
1735
+ x
1736
+ 4
1737
+ warn
1738
+ M
1739
+ 1
1740
+ n
1741
+ n
1742
+ x
1743
+ 4
1744
+ warn
1745
+ i
1746
+ 27
1747
+ 45
1748
+ 0
1749
+ 1
1750
+ 43
1751
+ 2
1752
+ 39
1753
+ 3
1754
+ 47
1755
+ 101
1756
+ 4
1757
+ 7
1758
+ 5
1759
+ 39
1760
+ 6
1761
+ 47
1762
+ 101
1763
+ 4
1764
+ 7
1765
+ 7
1766
+ 63
1767
+ 4
1768
+ 20
1769
+ 0
1770
+ 49
1771
+ 8
1772
+ 2
1773
+ 11
1774
+ I
1775
+ 8
1776
+ I
1777
+ 3
1778
+ I
1779
+ 3
1780
+ I
1781
+ 3
1782
+ n
1783
+ p
1784
+ 9
1785
+ x
1786
+ 13
1787
+ ActiveSupport
1788
+ n
1789
+ x
1790
+ 11
1791
+ Deprecation
1792
+ x
1793
+ 10
1794
+ @old_const
1795
+ x
1796
+ 4
1797
+ to_s
1798
+ s
1799
+ 20
1800
+ is deprecated! Use
1801
+ x
1802
+ 10
1803
+ @new_const
1804
+ s
1805
+ 9
1806
+ instead.
1807
+ x
1808
+ 4
1809
+ warn
1810
+ p
1811
+ 5
1812
+ I
1813
+ -1
1814
+ I
1815
+ 4c
1816
+ I
1817
+ 0
1818
+ I
1819
+ 4d
1820
+ I
1821
+ 1b
1822
+ x
1823
+ 99
1824
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
1825
+ p
1826
+ 3
1827
+ x
1828
+ 9
1829
+ callstack
1830
+ x
1831
+ 6
1832
+ called
1833
+ x
1834
+ 4
1835
+ args
1836
+ p
1837
+ 11
1838
+ I
1839
+ 2
1840
+ I
1841
+ 3e
1842
+ I
1843
+ 10
1844
+ I
1845
+ 43
1846
+ I
1847
+ 1e
1848
+ I
1849
+ 47
1850
+ I
1851
+ 22
1852
+ I
1853
+ 48
1854
+ I
1855
+ 30
1856
+ I
1857
+ 4c
1858
+ I
1859
+ 3e
1860
+ x
1861
+ 99
1862
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
1863
+ p
1864
+ 0
1865
+ p
1866
+ 9
1867
+ I
1868
+ 2
1869
+ I
1870
+ 5
1871
+ I
1872
+ 1d
1873
+ I
1874
+ 1c
1875
+ I
1876
+ 3a
1877
+ I
1878
+ 2e
1879
+ I
1880
+ 57
1881
+ I
1882
+ 3d
1883
+ I
1884
+ 74
1885
+ x
1886
+ 99
1887
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
1888
+ p
1889
+ 0
1890
+ x
1891
+ 13
1892
+ attach_method
1893
+ p
1894
+ 3
1895
+ I
1896
+ 2
1897
+ I
1898
+ 4
1899
+ I
1900
+ 1c
1901
+ x
1902
+ 99
1903
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
1904
+ p
1905
+ 0
1906
+ x
1907
+ 13
1908
+ attach_method
1909
+ p
1910
+ 5
1911
+ I
1912
+ 0
1913
+ I
1914
+ 1
1915
+ I
1916
+ 9
1917
+ I
1918
+ 3
1919
+ I
1920
+ 25
1921
+ x
1922
+ 99
1923
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/proxy_wrappers.rb
1924
+ p
1925
+ 0