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