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