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