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,1207 @@
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
+ 28
72
+ active_support/secure_random
73
+ x
74
+ 7
75
+ require
76
+ s
77
+ 41
78
+ active_support/core_ext/module/delegation
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
+ Notifications
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
+ Notifications
152
+ i
153
+ 56
154
+ 5
155
+ 66
156
+ 99
157
+ 7
158
+ 0
159
+ 1
160
+ 65
161
+ 49
162
+ 1
163
+ 3
164
+ 13
165
+ 99
166
+ 12
167
+ 7
168
+ 2
169
+ 12
170
+ 7
171
+ 3
172
+ 12
173
+ 65
174
+ 12
175
+ 49
176
+ 4
177
+ 4
178
+ 15
179
+ 49
180
+ 2
181
+ 0
182
+ 15
183
+ 99
184
+ 7
185
+ 5
186
+ 1
187
+ 65
188
+ 49
189
+ 1
190
+ 3
191
+ 13
192
+ 99
193
+ 12
194
+ 7
195
+ 2
196
+ 12
197
+ 7
198
+ 6
199
+ 12
200
+ 65
201
+ 12
202
+ 49
203
+ 4
204
+ 4
205
+ 15
206
+ 49
207
+ 2
208
+ 0
209
+ 11
210
+ I
211
+ 6
212
+ I
213
+ 0
214
+ I
215
+ 0
216
+ I
217
+ 0
218
+ n
219
+ p
220
+ 7
221
+ x
222
+ 12
223
+ Instrumenter
224
+ x
225
+ 10
226
+ open_class
227
+ x
228
+ 14
229
+ __class_init__
230
+ M
231
+ 1
232
+ n
233
+ n
234
+ x
235
+ 12
236
+ Instrumenter
237
+ i
238
+ 56
239
+ 5
240
+ 66
241
+ 5
242
+ 7
243
+ 0
244
+ 47
245
+ 49
246
+ 1
247
+ 1
248
+ 15
249
+ 99
250
+ 7
251
+ 2
252
+ 7
253
+ 3
254
+ 65
255
+ 67
256
+ 49
257
+ 4
258
+ 0
259
+ 49
260
+ 5
261
+ 4
262
+ 15
263
+ 99
264
+ 7
265
+ 6
266
+ 7
267
+ 7
268
+ 65
269
+ 67
270
+ 49
271
+ 4
272
+ 0
273
+ 49
274
+ 5
275
+ 4
276
+ 15
277
+ 5
278
+ 48
279
+ 8
280
+ 15
281
+ 99
282
+ 7
283
+ 9
284
+ 7
285
+ 10
286
+ 65
287
+ 67
288
+ 49
289
+ 4
290
+ 0
291
+ 49
292
+ 5
293
+ 4
294
+ 11
295
+ I
296
+ 5
297
+ I
298
+ 0
299
+ I
300
+ 0
301
+ I
302
+ 0
303
+ n
304
+ p
305
+ 11
306
+ x
307
+ 2
308
+ id
309
+ x
310
+ 11
311
+ attr_reader
312
+ x
313
+ 10
314
+ initialize
315
+ M
316
+ 1
317
+ n
318
+ n
319
+ x
320
+ 10
321
+ initialize
322
+ i
323
+ 11
324
+ 5
325
+ 48
326
+ 0
327
+ 38
328
+ 1
329
+ 15
330
+ 20
331
+ 0
332
+ 38
333
+ 2
334
+ 11
335
+ I
336
+ 2
337
+ I
338
+ 1
339
+ I
340
+ 1
341
+ I
342
+ 1
343
+ n
344
+ p
345
+ 3
346
+ x
347
+ 9
348
+ unique_id
349
+ x
350
+ 3
351
+ @id
352
+ x
353
+ 9
354
+ @notifier
355
+ p
356
+ 7
357
+ I
358
+ -1
359
+ I
360
+ 9
361
+ I
362
+ 0
363
+ I
364
+ a
365
+ I
366
+ 6
367
+ I
368
+ b
369
+ I
370
+ b
371
+ x
372
+ 99
373
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/notifications/instrumenter.rb
374
+ p
375
+ 1
376
+ x
377
+ 8
378
+ notifier
379
+ x
380
+ 17
381
+ method_visibility
382
+ x
383
+ 15
384
+ add_defn_method
385
+ x
386
+ 10
387
+ instrument
388
+ M
389
+ 1
390
+ n
391
+ n
392
+ x
393
+ 10
394
+ instrument
395
+ i
396
+ 156
397
+ 23
398
+ 1
399
+ 10
400
+ 14
401
+ 44
402
+ 43
403
+ 0
404
+ 78
405
+ 49
406
+ 1
407
+ 1
408
+ 19
409
+ 1
410
+ 15
411
+ 45
412
+ 2
413
+ 3
414
+ 49
415
+ 4
416
+ 0
417
+ 19
418
+ 2
419
+ 15
420
+ 29
421
+ 112
422
+ 1
423
+ 26
424
+ 93
425
+ 0
426
+ 15
427
+ 26
428
+ 93
429
+ 1
430
+ 15
431
+ 29
432
+ 42
433
+ 0
434
+ 60
435
+ 0
436
+ 30
437
+ 8
438
+ 106
439
+ 26
440
+ 93
441
+ 2
442
+ 15
443
+ 24
444
+ 13
445
+ 45
446
+ 5
447
+ 6
448
+ 12
449
+ 49
450
+ 7
451
+ 1
452
+ 10
453
+ 59
454
+ 8
455
+ 101
456
+ 15
457
+ 24
458
+ 19
459
+ 3
460
+ 15
461
+ 20
462
+ 1
463
+ 7
464
+ 8
465
+ 20
466
+ 3
467
+ 49
468
+ 9
469
+ 0
470
+ 49
471
+ 10
472
+ 0
473
+ 20
474
+ 3
475
+ 49
476
+ 11
477
+ 0
478
+ 35
479
+ 2
480
+ 13
481
+ 18
482
+ 3
483
+ 49
484
+ 12
485
+ 2
486
+ 15
487
+ 15
488
+ 5
489
+ 20
490
+ 3
491
+ 47
492
+ 49
493
+ 13
494
+ 1
495
+ 25
496
+ 8
497
+ 106
498
+ 15
499
+ 92
500
+ 2
501
+ 27
502
+ 34
503
+ 92
504
+ 1
505
+ 27
506
+ 30
507
+ 8
508
+ 135
509
+ 26
510
+ 39
511
+ 14
512
+ 20
513
+ 0
514
+ 20
515
+ 2
516
+ 45
517
+ 2
518
+ 15
519
+ 49
520
+ 4
521
+ 0
522
+ 39
523
+ 16
524
+ 20
525
+ 1
526
+ 49
527
+ 17
528
+ 5
529
+ 15
530
+ 27
531
+ 34
532
+ 39
533
+ 14
534
+ 20
535
+ 0
536
+ 20
537
+ 2
538
+ 45
539
+ 2
540
+ 18
541
+ 49
542
+ 4
543
+ 0
544
+ 39
545
+ 16
546
+ 20
547
+ 1
548
+ 49
549
+ 17
550
+ 5
551
+ 15
552
+ 11
553
+ I
554
+ e
555
+ I
556
+ 4
557
+ I
558
+ 1
559
+ I
560
+ 2
561
+ n
562
+ p
563
+ 19
564
+ x
565
+ 4
566
+ Hash
567
+ x
568
+ 16
569
+ new_from_literal
570
+ x
571
+ 4
572
+ Time
573
+ n
574
+ x
575
+ 3
576
+ now
577
+ x
578
+ 9
579
+ Exception
580
+ n
581
+ x
582
+ 3
583
+ ===
584
+ x
585
+ 9
586
+ exception
587
+ x
588
+ 5
589
+ class
590
+ x
591
+ 4
592
+ name
593
+ x
594
+ 7
595
+ message
596
+ x
597
+ 3
598
+ []=
599
+ x
600
+ 5
601
+ raise
602
+ x
603
+ 9
604
+ @notifier
605
+ n
606
+ x
607
+ 3
608
+ @id
609
+ x
610
+ 7
611
+ publish
612
+ n
613
+ p
614
+ 23
615
+ I
616
+ -1
617
+ I
618
+ 11
619
+ I
620
+ e
621
+ I
622
+ 12
623
+ I
624
+ 17
625
+ I
626
+ 15
627
+ I
628
+ 1e
629
+ I
630
+ 1b
631
+ I
632
+ 25
633
+ I
634
+ 15
635
+ I
636
+ 2f
637
+ I
638
+ 16
639
+ I
640
+ 3c
641
+ I
642
+ 19
643
+ I
644
+ 3d
645
+ I
646
+ 16
647
+ I
648
+ 40
649
+ I
650
+ 17
651
+ I
652
+ 5b
653
+ I
654
+ 18
655
+ I
656
+ 71
657
+ I
658
+ 1a
659
+ I
660
+ 9c
661
+ x
662
+ 99
663
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/notifications/instrumenter.rb
664
+ p
665
+ 4
666
+ x
667
+ 4
668
+ name
669
+ x
670
+ 7
671
+ payload
672
+ x
673
+ 7
674
+ started
675
+ x
676
+ 1
677
+ e
678
+ x
679
+ 7
680
+ private
681
+ x
682
+ 9
683
+ unique_id
684
+ M
685
+ 1
686
+ n
687
+ n
688
+ x
689
+ 9
690
+ unique_id
691
+ i
692
+ 9
693
+ 45
694
+ 0
695
+ 1
696
+ 4
697
+ 10
698
+ 49
699
+ 2
700
+ 1
701
+ 11
702
+ I
703
+ 2
704
+ I
705
+ 0
706
+ I
707
+ 0
708
+ I
709
+ 0
710
+ n
711
+ p
712
+ 3
713
+ x
714
+ 12
715
+ SecureRandom
716
+ n
717
+ x
718
+ 3
719
+ hex
720
+ p
721
+ 5
722
+ I
723
+ -1
724
+ I
725
+ 1f
726
+ I
727
+ 0
728
+ I
729
+ 20
730
+ I
731
+ 9
732
+ x
733
+ 99
734
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/notifications/instrumenter.rb
735
+ p
736
+ 0
737
+ p
738
+ 11
739
+ I
740
+ 2
741
+ I
742
+ 7
743
+ I
744
+ a
745
+ I
746
+ 9
747
+ I
748
+ 18
749
+ I
750
+ 11
751
+ I
752
+ 26
753
+ I
754
+ 1e
755
+ I
756
+ 2a
757
+ I
758
+ 1f
759
+ I
760
+ 38
761
+ x
762
+ 99
763
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/notifications/instrumenter.rb
764
+ p
765
+ 0
766
+ x
767
+ 13
768
+ attach_method
769
+ x
770
+ 5
771
+ Event
772
+ M
773
+ 1
774
+ n
775
+ n
776
+ x
777
+ 5
778
+ Event
779
+ i
780
+ 48
781
+ 5
782
+ 66
783
+ 5
784
+ 7
785
+ 0
786
+ 7
787
+ 1
788
+ 7
789
+ 2
790
+ 7
791
+ 3
792
+ 7
793
+ 4
794
+ 7
795
+ 5
796
+ 47
797
+ 49
798
+ 6
799
+ 6
800
+ 15
801
+ 99
802
+ 7
803
+ 7
804
+ 7
805
+ 8
806
+ 65
807
+ 67
808
+ 49
809
+ 9
810
+ 0
811
+ 49
812
+ 10
813
+ 4
814
+ 15
815
+ 99
816
+ 7
817
+ 11
818
+ 7
819
+ 12
820
+ 65
821
+ 67
822
+ 49
823
+ 9
824
+ 0
825
+ 49
826
+ 10
827
+ 4
828
+ 11
829
+ I
830
+ 7
831
+ I
832
+ 0
833
+ I
834
+ 0
835
+ I
836
+ 0
837
+ n
838
+ p
839
+ 13
840
+ x
841
+ 4
842
+ name
843
+ x
844
+ 4
845
+ time
846
+ x
847
+ 3
848
+ end
849
+ x
850
+ 14
851
+ transaction_id
852
+ x
853
+ 7
854
+ payload
855
+ x
856
+ 8
857
+ duration
858
+ x
859
+ 11
860
+ attr_reader
861
+ x
862
+ 10
863
+ initialize
864
+ M
865
+ 1
866
+ n
867
+ n
868
+ x
869
+ 10
870
+ initialize
871
+ i
872
+ 42
873
+ 20
874
+ 0
875
+ 38
876
+ 0
877
+ 15
878
+ 20
879
+ 4
880
+ 49
881
+ 1
882
+ 0
883
+ 38
884
+ 2
885
+ 15
886
+ 20
887
+ 1
888
+ 38
889
+ 3
890
+ 15
891
+ 20
892
+ 3
893
+ 38
894
+ 4
895
+ 15
896
+ 20
897
+ 2
898
+ 38
899
+ 5
900
+ 15
901
+ 7
902
+ 6
903
+ 39
904
+ 5
905
+ 39
906
+ 3
907
+ 82
908
+ 7
909
+ 49
910
+ 8
911
+ 1
912
+ 38
913
+ 9
914
+ 11
915
+ I
916
+ 8
917
+ I
918
+ 5
919
+ I
920
+ 5
921
+ I
922
+ 5
923
+ n
924
+ p
925
+ 10
926
+ x
927
+ 5
928
+ @name
929
+ x
930
+ 3
931
+ dup
932
+ x
933
+ 8
934
+ @payload
935
+ x
936
+ 5
937
+ @time
938
+ x
939
+ 15
940
+ @transaction_id
941
+ x
942
+ 4
943
+ @end
944
+ d
945
+ +0.976562500000000000000000000000000000000000000000000000 10
946
+ x
947
+ 1
948
+ -
949
+ x
950
+ 1
951
+ *
952
+ x
953
+ 9
954
+ @duration
955
+ p
956
+ 15
957
+ I
958
+ -1
959
+ I
960
+ 27
961
+ I
962
+ 0
963
+ I
964
+ 28
965
+ I
966
+ 5
967
+ I
968
+ 29
969
+ I
970
+ d
971
+ I
972
+ 2a
973
+ I
974
+ 12
975
+ I
976
+ 2b
977
+ I
978
+ 17
979
+ I
980
+ 2c
981
+ I
982
+ 1c
983
+ I
984
+ 2d
985
+ I
986
+ 2a
987
+ x
988
+ 99
989
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/notifications/instrumenter.rb
990
+ p
991
+ 5
992
+ x
993
+ 4
994
+ name
995
+ x
996
+ 5
997
+ start
998
+ x
999
+ 6
1000
+ ending
1001
+ x
1002
+ 14
1003
+ transaction_id
1004
+ x
1005
+ 7
1006
+ payload
1007
+ x
1008
+ 17
1009
+ method_visibility
1010
+ x
1011
+ 15
1012
+ add_defn_method
1013
+ x
1014
+ 10
1015
+ parent_of?
1016
+ M
1017
+ 1
1018
+ n
1019
+ n
1020
+ x
1021
+ 10
1022
+ parent_of?
1023
+ i
1024
+ 44
1025
+ 5
1026
+ 48
1027
+ 0
1028
+ 20
1029
+ 0
1030
+ 49
1031
+ 0
1032
+ 0
1033
+ 82
1034
+ 1
1035
+ 7
1036
+ 2
1037
+ 49
1038
+ 3
1039
+ 1
1040
+ 19
1041
+ 1
1042
+ 15
1043
+ 20
1044
+ 1
1045
+ 78
1046
+ 49
1047
+ 4
1048
+ 1
1049
+ 13
1050
+ 9
1051
+ 43
1052
+ 15
1053
+ 20
1054
+ 1
1055
+ 5
1056
+ 48
1057
+ 5
1058
+ 81
1059
+ 6
1060
+ 20
1061
+ 0
1062
+ 49
1063
+ 5
1064
+ 0
1065
+ 49
1066
+ 7
1067
+ 1
1068
+ 11
1069
+ I
1070
+ 4
1071
+ I
1072
+ 2
1073
+ I
1074
+ 1
1075
+ I
1076
+ 1
1077
+ n
1078
+ p
1079
+ 8
1080
+ x
1081
+ 4
1082
+ time
1083
+ x
1084
+ 1
1085
+ -
1086
+ I
1087
+ 3e8
1088
+ x
1089
+ 1
1090
+ *
1091
+ x
1092
+ 2
1093
+ <=
1094
+ x
1095
+ 8
1096
+ duration
1097
+ x
1098
+ 1
1099
+ +
1100
+ x
1101
+ 2
1102
+ >=
1103
+ p
1104
+ 7
1105
+ I
1106
+ -1
1107
+ I
1108
+ 30
1109
+ I
1110
+ 0
1111
+ I
1112
+ 31
1113
+ I
1114
+ 12
1115
+ I
1116
+ 32
1117
+ I
1118
+ 2c
1119
+ x
1120
+ 99
1121
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/notifications/instrumenter.rb
1122
+ p
1123
+ 2
1124
+ x
1125
+ 5
1126
+ event
1127
+ x
1128
+ 5
1129
+ start
1130
+ p
1131
+ 7
1132
+ I
1133
+ 2
1134
+ I
1135
+ 25
1136
+ I
1137
+ 14
1138
+ I
1139
+ 27
1140
+ I
1141
+ 22
1142
+ I
1143
+ 30
1144
+ I
1145
+ 30
1146
+ x
1147
+ 99
1148
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/notifications/instrumenter.rb
1149
+ p
1150
+ 0
1151
+ p
1152
+ 5
1153
+ I
1154
+ 2
1155
+ I
1156
+ 6
1157
+ I
1158
+ 1d
1159
+ I
1160
+ 24
1161
+ I
1162
+ 38
1163
+ x
1164
+ 99
1165
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/notifications/instrumenter.rb
1166
+ p
1167
+ 0
1168
+ x
1169
+ 13
1170
+ attach_method
1171
+ p
1172
+ 3
1173
+ I
1174
+ 2
1175
+ I
1176
+ 5
1177
+ I
1178
+ 1c
1179
+ x
1180
+ 99
1181
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/notifications/instrumenter.rb
1182
+ p
1183
+ 0
1184
+ x
1185
+ 13
1186
+ attach_method
1187
+ p
1188
+ 7
1189
+ I
1190
+ 0
1191
+ I
1192
+ 1
1193
+ I
1194
+ 9
1195
+ I
1196
+ 2
1197
+ I
1198
+ 12
1199
+ I
1200
+ 4
1201
+ I
1202
+ 2e
1203
+ x
1204
+ 99
1205
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/notifications/instrumenter.rb
1206
+ p
1207
+ 0