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,885 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 46
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 5
23
+ 7
24
+ 2
25
+ 64
26
+ 47
27
+ 49
28
+ 1
29
+ 1
30
+ 15
31
+ 99
32
+ 7
33
+ 3
34
+ 65
35
+ 49
36
+ 4
37
+ 2
38
+ 13
39
+ 99
40
+ 12
41
+ 7
42
+ 5
43
+ 12
44
+ 7
45
+ 6
46
+ 12
47
+ 65
48
+ 12
49
+ 49
50
+ 7
51
+ 4
52
+ 15
53
+ 49
54
+ 5
55
+ 0
56
+ 15
57
+ 2
58
+ 11
59
+ I
60
+ 6
61
+ I
62
+ 0
63
+ I
64
+ 0
65
+ I
66
+ 0
67
+ n
68
+ p
69
+ 8
70
+ s
71
+ 33
72
+ active_support/core_ext/benchmark
73
+ x
74
+ 7
75
+ require
76
+ s
77
+ 33
78
+ active_support/core_ext/hash/keys
79
+ x
80
+ 13
81
+ ActiveSupport
82
+ x
83
+ 11
84
+ open_module
85
+ x
86
+ 15
87
+ __module_init__
88
+ M
89
+ 1
90
+ n
91
+ n
92
+ x
93
+ 13
94
+ ActiveSupport
95
+ i
96
+ 28
97
+ 5
98
+ 66
99
+ 99
100
+ 7
101
+ 0
102
+ 65
103
+ 49
104
+ 1
105
+ 2
106
+ 13
107
+ 99
108
+ 12
109
+ 7
110
+ 2
111
+ 12
112
+ 7
113
+ 3
114
+ 12
115
+ 65
116
+ 12
117
+ 49
118
+ 4
119
+ 4
120
+ 15
121
+ 49
122
+ 2
123
+ 0
124
+ 11
125
+ I
126
+ 6
127
+ I
128
+ 0
129
+ I
130
+ 0
131
+ I
132
+ 0
133
+ n
134
+ p
135
+ 5
136
+ x
137
+ 13
138
+ Benchmarkable
139
+ x
140
+ 11
141
+ open_module
142
+ x
143
+ 15
144
+ __module_init__
145
+ M
146
+ 1
147
+ n
148
+ n
149
+ x
150
+ 13
151
+ Benchmarkable
152
+ i
153
+ 30
154
+ 5
155
+ 66
156
+ 99
157
+ 7
158
+ 0
159
+ 7
160
+ 1
161
+ 65
162
+ 67
163
+ 49
164
+ 2
165
+ 0
166
+ 49
167
+ 3
168
+ 4
169
+ 15
170
+ 99
171
+ 7
172
+ 4
173
+ 7
174
+ 5
175
+ 65
176
+ 67
177
+ 49
178
+ 2
179
+ 0
180
+ 49
181
+ 3
182
+ 4
183
+ 11
184
+ I
185
+ 5
186
+ I
187
+ 0
188
+ I
189
+ 0
190
+ I
191
+ 0
192
+ n
193
+ p
194
+ 6
195
+ x
196
+ 9
197
+ benchmark
198
+ M
199
+ 1
200
+ n
201
+ n
202
+ x
203
+ 9
204
+ benchmark
205
+ i
206
+ 184
207
+ 23
208
+ 0
209
+ 10
210
+ 10
211
+ 7
212
+ 0
213
+ 64
214
+ 19
215
+ 0
216
+ 15
217
+ 23
218
+ 1
219
+ 10
220
+ 24
221
+ 44
222
+ 43
223
+ 1
224
+ 78
225
+ 49
226
+ 2
227
+ 1
228
+ 19
229
+ 1
230
+ 15
231
+ 5
232
+ 48
233
+ 3
234
+ 9
235
+ 181
236
+ 20
237
+ 1
238
+ 45
239
+ 4
240
+ 5
241
+ 49
242
+ 6
243
+ 1
244
+ 9
245
+ 97
246
+ 45
247
+ 7
248
+ 8
249
+ 43
250
+ 9
251
+ 7
252
+ 10
253
+ 20
254
+ 0
255
+ 47
256
+ 101
257
+ 11
258
+ 7
259
+ 12
260
+ 20
261
+ 1
262
+ 47
263
+ 101
264
+ 11
265
+ 7
266
+ 13
267
+ 63
268
+ 5
269
+ 5
270
+ 48
271
+ 14
272
+ 49
273
+ 15
274
+ 2
275
+ 15
276
+ 44
277
+ 43
278
+ 1
279
+ 80
280
+ 49
281
+ 2
282
+ 1
283
+ 13
284
+ 7
285
+ 16
286
+ 20
287
+ 1
288
+ 49
289
+ 17
290
+ 2
291
+ 15
292
+ 13
293
+ 7
294
+ 18
295
+ 3
296
+ 49
297
+ 17
298
+ 2
299
+ 15
300
+ 19
301
+ 1
302
+ 8
303
+ 135
304
+ 20
305
+ 1
306
+ 7
307
+ 16
308
+ 7
309
+ 18
310
+ 49
311
+ 19
312
+ 2
313
+ 15
314
+ 20
315
+ 1
316
+ 7
317
+ 16
318
+ 14
319
+ 2
320
+ 49
321
+ 20
322
+ 1
323
+ 13
324
+ 10
325
+ 131
326
+ 15
327
+ 7
328
+ 21
329
+ 13
330
+ 18
331
+ 3
332
+ 49
333
+ 17
334
+ 2
335
+ 15
336
+ 8
337
+ 135
338
+ 18
339
+ 2
340
+ 16
341
+ 2
342
+ 15
343
+ 1
344
+ 19
345
+ 2
346
+ 15
347
+ 45
348
+ 22
349
+ 23
350
+ 56
351
+ 24
352
+ 50
353
+ 25
354
+ 0
355
+ 19
356
+ 3
357
+ 15
358
+ 5
359
+ 48
360
+ 3
361
+ 20
362
+ 1
363
+ 7
364
+ 16
365
+ 49
366
+ 20
367
+ 1
368
+ 7
369
+ 26
370
+ 64
371
+ 20
372
+ 0
373
+ 20
374
+ 3
375
+ 35
376
+ 2
377
+ 49
378
+ 27
379
+ 1
380
+ 49
381
+ 28
382
+ 2
383
+ 15
384
+ 20
385
+ 2
386
+ 8
387
+ 183
388
+ 60
389
+ 0
390
+ 11
391
+ I
392
+ a
393
+ I
394
+ 4
395
+ I
396
+ 0
397
+ I
398
+ 2
399
+ n
400
+ p
401
+ 29
402
+ s
403
+ 12
404
+ Benchmarking
405
+ x
406
+ 4
407
+ Hash
408
+ x
409
+ 16
410
+ new_from_literal
411
+ x
412
+ 6
413
+ logger
414
+ x
415
+ 6
416
+ Symbol
417
+ n
418
+ x
419
+ 5
420
+ is_a?
421
+ x
422
+ 13
423
+ ActiveSupport
424
+ n
425
+ x
426
+ 11
427
+ Deprecation
428
+ s
429
+ 15
430
+ use benchmark('
431
+ x
432
+ 4
433
+ to_s
434
+ s
435
+ 14
436
+ ', :level => :
437
+ s
438
+ 9
439
+ ) instead
440
+ x
441
+ 6
442
+ caller
443
+ x
444
+ 4
445
+ warn
446
+ x
447
+ 5
448
+ level
449
+ x
450
+ 3
451
+ []=
452
+ x
453
+ 7
454
+ silence
455
+ x
456
+ 17
457
+ assert_valid_keys
458
+ x
459
+ 2
460
+ []
461
+ x
462
+ 4
463
+ info
464
+ x
465
+ 9
466
+ Benchmark
467
+ n
468
+ M
469
+ 1
470
+ p
471
+ 2
472
+ x
473
+ 9
474
+ for_block
475
+ t
476
+ n
477
+ x
478
+ 9
479
+ benchmark
480
+ i
481
+ 26
482
+ 21
483
+ 1
484
+ 1
485
+ 7
486
+ 0
487
+ 49
488
+ 1
489
+ 1
490
+ 9
491
+ 20
492
+ 5
493
+ 48
494
+ 2
495
+ 56
496
+ 3
497
+ 50
498
+ 0
499
+ 0
500
+ 8
501
+ 22
502
+ 60
503
+ 0
504
+ 22
505
+ 1
506
+ 2
507
+ 11
508
+ I
509
+ 3
510
+ I
511
+ 0
512
+ I
513
+ 0
514
+ I
515
+ 0
516
+ I
517
+ -2
518
+ p
519
+ 4
520
+ x
521
+ 7
522
+ silence
523
+ x
524
+ 2
525
+ []
526
+ x
527
+ 6
528
+ logger
529
+ M
530
+ 1
531
+ p
532
+ 2
533
+ x
534
+ 9
535
+ for_block
536
+ t
537
+ n
538
+ x
539
+ 9
540
+ benchmark
541
+ i
542
+ 3
543
+ 60
544
+ 0
545
+ 11
546
+ I
547
+ 2
548
+ I
549
+ 0
550
+ I
551
+ 0
552
+ I
553
+ 0
554
+ I
555
+ -2
556
+ p
557
+ 0
558
+ p
559
+ 3
560
+ I
561
+ 0
562
+ I
563
+ 2b
564
+ I
565
+ 3
566
+ x
567
+ 86
568
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/benchmarkable.rb
569
+ p
570
+ 0
571
+ p
572
+ 3
573
+ I
574
+ 0
575
+ I
576
+ 2b
577
+ I
578
+ 1a
579
+ x
580
+ 86
581
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/benchmarkable.rb
582
+ p
583
+ 0
584
+ x
585
+ 2
586
+ ms
587
+ s
588
+ 11
589
+ %s (%.1fms)
590
+ x
591
+ 1
592
+ %
593
+ x
594
+ 4
595
+ send
596
+ p
597
+ 25
598
+ I
599
+ -1
600
+ I
601
+ 20
602
+ I
603
+ 18
604
+ I
605
+ 21
606
+ I
607
+ 1d
608
+ I
609
+ 22
610
+ I
611
+ 27
612
+ I
613
+ 23
614
+ I
615
+ 45
616
+ I
617
+ 24
618
+ I
619
+ 61
620
+ I
621
+ 26
622
+ I
623
+ 6b
624
+ I
625
+ 27
626
+ I
627
+ 88
628
+ I
629
+ 2a
630
+ I
631
+ 8c
632
+ I
633
+ 2b
634
+ I
635
+ 97
636
+ I
637
+ 2c
638
+ I
639
+ b1
640
+ I
641
+ 2d
642
+ I
643
+ b5
644
+ I
645
+ 2f
646
+ I
647
+ b8
648
+ x
649
+ 86
650
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/benchmarkable.rb
651
+ p
652
+ 4
653
+ x
654
+ 7
655
+ message
656
+ x
657
+ 7
658
+ options
659
+ x
660
+ 6
661
+ result
662
+ x
663
+ 2
664
+ ms
665
+ x
666
+ 17
667
+ method_visibility
668
+ x
669
+ 15
670
+ add_defn_method
671
+ x
672
+ 7
673
+ silence
674
+ M
675
+ 1
676
+ n
677
+ n
678
+ x
679
+ 7
680
+ silence
681
+ i
682
+ 92
683
+ 29
684
+ 46
685
+ 1
686
+ 26
687
+ 93
688
+ 0
689
+ 15
690
+ 5
691
+ 48
692
+ 0
693
+ 9
694
+ 39
695
+ 5
696
+ 48
697
+ 0
698
+ 49
699
+ 1
700
+ 0
701
+ 44
702
+ 43
703
+ 2
704
+ 43
705
+ 3
706
+ 17
707
+ 2
708
+ 19
709
+ 0
710
+ 15
711
+ 5
712
+ 48
713
+ 0
714
+ 12
715
+ 49
716
+ 4
717
+ 1
718
+ 15
719
+ 2
720
+ 8
721
+ 40
722
+ 1
723
+ 15
724
+ 60
725
+ 0
726
+ 30
727
+ 8
728
+ 70
729
+ 26
730
+ 5
731
+ 48
732
+ 0
733
+ 9
734
+ 66
735
+ 5
736
+ 48
737
+ 0
738
+ 20
739
+ 0
740
+ 13
741
+ 18
742
+ 2
743
+ 49
744
+ 4
745
+ 1
746
+ 15
747
+ 8
748
+ 67
749
+ 1
750
+ 15
751
+ 27
752
+ 34
753
+ 5
754
+ 48
755
+ 0
756
+ 9
757
+ 89
758
+ 5
759
+ 48
760
+ 0
761
+ 20
762
+ 0
763
+ 13
764
+ 18
765
+ 2
766
+ 49
767
+ 4
768
+ 1
769
+ 15
770
+ 8
771
+ 90
772
+ 1
773
+ 15
774
+ 11
775
+ I
776
+ 6
777
+ I
778
+ 1
779
+ I
780
+ 0
781
+ I
782
+ 0
783
+ n
784
+ p
785
+ 5
786
+ x
787
+ 6
788
+ logger
789
+ x
790
+ 5
791
+ level
792
+ x
793
+ 6
794
+ Logger
795
+ x
796
+ 5
797
+ ERROR
798
+ x
799
+ 6
800
+ level=
801
+ p
802
+ 9
803
+ I
804
+ -1
805
+ I
806
+ 35
807
+ I
808
+ 0
809
+ I
810
+ 36
811
+ I
812
+ 29
813
+ I
814
+ 37
815
+ I
816
+ 2f
817
+ I
818
+ 39
819
+ I
820
+ 5c
821
+ x
822
+ 86
823
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/benchmarkable.rb
824
+ p
825
+ 1
826
+ x
827
+ 16
828
+ old_logger_level
829
+ p
830
+ 5
831
+ I
832
+ 2
833
+ I
834
+ 20
835
+ I
836
+ 10
837
+ I
838
+ 35
839
+ I
840
+ 1e
841
+ x
842
+ 86
843
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/benchmarkable.rb
844
+ p
845
+ 0
846
+ x
847
+ 13
848
+ attach_method
849
+ p
850
+ 3
851
+ I
852
+ 2
853
+ I
854
+ 5
855
+ I
856
+ 1c
857
+ x
858
+ 86
859
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/benchmarkable.rb
860
+ p
861
+ 0
862
+ x
863
+ 13
864
+ attach_method
865
+ p
866
+ 7
867
+ I
868
+ 0
869
+ I
870
+ 1
871
+ I
872
+ 9
873
+ I
874
+ 2
875
+ I
876
+ 12
877
+ I
878
+ 4
879
+ I
880
+ 2e
881
+ x
882
+ 86
883
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/benchmarkable.rb
884
+ p
885
+ 0