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,53 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 11
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 2
23
+ 11
24
+ I
25
+ 2
26
+ I
27
+ 0
28
+ I
29
+ 0
30
+ I
31
+ 0
32
+ n
33
+ p
34
+ 2
35
+ s
36
+ 51
37
+ active_support/core_ext/cgi/escape_skipping_slashes
38
+ x
39
+ 7
40
+ require
41
+ p
42
+ 3
43
+ I
44
+ 0
45
+ I
46
+ 1
47
+ I
48
+ b
49
+ x
50
+ 85
51
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/cgi.rb
52
+ p
53
+ 0
@@ -0,0 +1,666 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 38
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
+ 1
26
+ 65
27
+ 49
28
+ 3
29
+ 3
30
+ 13
31
+ 99
32
+ 12
33
+ 7
34
+ 4
35
+ 12
36
+ 7
37
+ 5
38
+ 12
39
+ 65
40
+ 12
41
+ 49
42
+ 6
43
+ 4
44
+ 15
45
+ 49
46
+ 4
47
+ 0
48
+ 15
49
+ 2
50
+ 11
51
+ I
52
+ 6
53
+ I
54
+ 0
55
+ I
56
+ 0
57
+ I
58
+ 0
59
+ n
60
+ p
61
+ 7
62
+ s
63
+ 3
64
+ cgi
65
+ x
66
+ 7
67
+ require
68
+ x
69
+ 3
70
+ CGI
71
+ x
72
+ 10
73
+ open_class
74
+ x
75
+ 14
76
+ __class_init__
77
+ M
78
+ 1
79
+ n
80
+ n
81
+ x
82
+ 3
83
+ CGI
84
+ i
85
+ 36
86
+ 5
87
+ 66
88
+ 45
89
+ 0
90
+ 1
91
+ 7
92
+ 2
93
+ 64
94
+ 49
95
+ 3
96
+ 1
97
+ 9
98
+ 25
99
+ 99
100
+ 7
101
+ 4
102
+ 7
103
+ 5
104
+ 65
105
+ 5
106
+ 49
107
+ 6
108
+ 4
109
+ 8
110
+ 35
111
+ 99
112
+ 7
113
+ 4
114
+ 7
115
+ 7
116
+ 65
117
+ 5
118
+ 49
119
+ 6
120
+ 4
121
+ 11
122
+ I
123
+ 5
124
+ I
125
+ 0
126
+ I
127
+ 0
128
+ I
129
+ 0
130
+ n
131
+ p
132
+ 8
133
+ x
134
+ 12
135
+ RUBY_VERSION
136
+ n
137
+ s
138
+ 3
139
+ 1.9
140
+ x
141
+ 2
142
+ >=
143
+ x
144
+ 23
145
+ escape_skipping_slashes
146
+ M
147
+ 1
148
+ n
149
+ n
150
+ x
151
+ 23
152
+ escape_skipping_slashes
153
+ i
154
+ 59
155
+ 20
156
+ 0
157
+ 7
158
+ 0
159
+ 49
160
+ 1
161
+ 1
162
+ 9
163
+ 21
164
+ 20
165
+ 0
166
+ 7
167
+ 2
168
+ 64
169
+ 49
170
+ 0
171
+ 1
172
+ 19
173
+ 0
174
+ 8
175
+ 22
176
+ 1
177
+ 15
178
+ 20
179
+ 0
180
+ 7
181
+ 3
182
+ 13
183
+ 70
184
+ 9
185
+ 44
186
+ 15
187
+ 44
188
+ 43
189
+ 4
190
+ 7
191
+ 5
192
+ 4
193
+ 16
194
+ 49
195
+ 6
196
+ 2
197
+ 6
198
+ 3
199
+ 56
200
+ 7
201
+ 50
202
+ 8
203
+ 1
204
+ 7
205
+ 9
206
+ 64
207
+ 7
208
+ 10
209
+ 64
210
+ 49
211
+ 11
212
+ 2
213
+ 11
214
+ I
215
+ 5
216
+ I
217
+ 1
218
+ I
219
+ 1
220
+ I
221
+ 1
222
+ n
223
+ p
224
+ 12
225
+ x
226
+ 4
227
+ join
228
+ x
229
+ 11
230
+ respond_to?
231
+ s
232
+ 1
233
+ /
234
+ n
235
+ x
236
+ 6
237
+ Regexp
238
+ s
239
+ 20
240
+ ([^ \/a-zA-Z0-9_.-])
241
+ x
242
+ 3
243
+ new
244
+ M
245
+ 1
246
+ p
247
+ 2
248
+ x
249
+ 9
250
+ for_block
251
+ t
252
+ n
253
+ x
254
+ 23
255
+ escape_skipping_slashes
256
+ i
257
+ 41
258
+ 7
259
+ 0
260
+ 4
261
+ 5
262
+ 78
263
+ 98
264
+ 1
265
+ 2
266
+ 7
267
+ 2
268
+ 64
269
+ 4
270
+ 5
271
+ 78
272
+ 98
273
+ 1
274
+ 2
275
+ 49
276
+ 3
277
+ 0
278
+ 49
279
+ 4
280
+ 1
281
+ 49
282
+ 5
283
+ 1
284
+ 7
285
+ 0
286
+ 64
287
+ 49
288
+ 6
289
+ 1
290
+ 49
291
+ 7
292
+ 0
293
+ 47
294
+ 101
295
+ 8
296
+ 63
297
+ 2
298
+ 11
299
+ I
300
+ 6
301
+ I
302
+ 0
303
+ I
304
+ 0
305
+ I
306
+ 0
307
+ I
308
+ -2
309
+ p
310
+ 9
311
+ s
312
+ 1
313
+ %
314
+ x
315
+ 24
316
+ regexp_last_match_result
317
+ s
318
+ 2
319
+ H2
320
+ x
321
+ 8
322
+ bytesize
323
+ x
324
+ 1
325
+ *
326
+ x
327
+ 6
328
+ unpack
329
+ x
330
+ 4
331
+ join
332
+ x
333
+ 6
334
+ upcase
335
+ x
336
+ 4
337
+ to_s
338
+ p
339
+ 3
340
+ I
341
+ 0
342
+ I
343
+ 8
344
+ I
345
+ 29
346
+ x
347
+ 109
348
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb
349
+ p
350
+ 0
351
+ x
352
+ 4
353
+ gsub
354
+ s
355
+ 1
356
+
357
+ s
358
+ 1
359
+ +
360
+ x
361
+ 2
362
+ tr
363
+ p
364
+ 11
365
+ I
366
+ -1
367
+ I
368
+ 5
369
+ I
370
+ 0
371
+ I
372
+ 6
373
+ I
374
+ 17
375
+ I
376
+ 7
377
+ I
378
+ 31
379
+ I
380
+ 9
381
+ I
382
+ 37
383
+ I
384
+ 7
385
+ I
386
+ 3b
387
+ x
388
+ 109
389
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb
390
+ p
391
+ 1
392
+ x
393
+ 3
394
+ str
395
+ x
396
+ 13
397
+ attach_method
398
+ M
399
+ 1
400
+ n
401
+ n
402
+ x
403
+ 23
404
+ escape_skipping_slashes
405
+ i
406
+ 59
407
+ 20
408
+ 0
409
+ 7
410
+ 0
411
+ 49
412
+ 1
413
+ 1
414
+ 9
415
+ 21
416
+ 20
417
+ 0
418
+ 7
419
+ 2
420
+ 64
421
+ 49
422
+ 0
423
+ 1
424
+ 19
425
+ 0
426
+ 8
427
+ 22
428
+ 1
429
+ 15
430
+ 20
431
+ 0
432
+ 7
433
+ 3
434
+ 13
435
+ 70
436
+ 9
437
+ 44
438
+ 15
439
+ 44
440
+ 43
441
+ 4
442
+ 7
443
+ 5
444
+ 4
445
+ 16
446
+ 49
447
+ 6
448
+ 2
449
+ 6
450
+ 3
451
+ 56
452
+ 7
453
+ 50
454
+ 8
455
+ 1
456
+ 7
457
+ 9
458
+ 64
459
+ 7
460
+ 10
461
+ 64
462
+ 49
463
+ 11
464
+ 2
465
+ 11
466
+ I
467
+ 5
468
+ I
469
+ 1
470
+ I
471
+ 1
472
+ I
473
+ 1
474
+ n
475
+ p
476
+ 12
477
+ x
478
+ 4
479
+ join
480
+ x
481
+ 11
482
+ respond_to?
483
+ s
484
+ 1
485
+ /
486
+ n
487
+ x
488
+ 6
489
+ Regexp
490
+ s
491
+ 20
492
+ ([^ \/a-zA-Z0-9_.-])
493
+ x
494
+ 3
495
+ new
496
+ M
497
+ 1
498
+ p
499
+ 2
500
+ x
501
+ 9
502
+ for_block
503
+ t
504
+ n
505
+ x
506
+ 23
507
+ escape_skipping_slashes
508
+ i
509
+ 26
510
+ 7
511
+ 0
512
+ 4
513
+ 5
514
+ 78
515
+ 98
516
+ 1
517
+ 2
518
+ 7
519
+ 2
520
+ 64
521
+ 49
522
+ 3
523
+ 1
524
+ 49
525
+ 4
526
+ 0
527
+ 49
528
+ 5
529
+ 0
530
+ 47
531
+ 101
532
+ 6
533
+ 63
534
+ 2
535
+ 11
536
+ I
537
+ 4
538
+ I
539
+ 0
540
+ I
541
+ 0
542
+ I
543
+ 0
544
+ I
545
+ -2
546
+ p
547
+ 7
548
+ s
549
+ 1
550
+ %
551
+ x
552
+ 24
553
+ regexp_last_match_result
554
+ s
555
+ 2
556
+ H2
557
+ x
558
+ 6
559
+ unpack
560
+ x
561
+ 5
562
+ first
563
+ x
564
+ 6
565
+ upcase
566
+ x
567
+ 4
568
+ to_s
569
+ p
570
+ 3
571
+ I
572
+ 0
573
+ I
574
+ f
575
+ I
576
+ 1a
577
+ x
578
+ 109
579
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb
580
+ p
581
+ 0
582
+ x
583
+ 4
584
+ gsub
585
+ s
586
+ 1
587
+
588
+ s
589
+ 1
590
+ +
591
+ x
592
+ 2
593
+ tr
594
+ p
595
+ 11
596
+ I
597
+ -1
598
+ I
599
+ c
600
+ I
601
+ 0
602
+ I
603
+ d
604
+ I
605
+ 17
606
+ I
607
+ e
608
+ I
609
+ 31
610
+ I
611
+ 10
612
+ I
613
+ 37
614
+ I
615
+ e
616
+ I
617
+ 3b
618
+ x
619
+ 109
620
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb
621
+ p
622
+ 1
623
+ x
624
+ 3
625
+ str
626
+ p
627
+ 7
628
+ I
629
+ 2
630
+ I
631
+ 4
632
+ I
633
+ d
634
+ I
635
+ 5
636
+ I
637
+ 19
638
+ I
639
+ c
640
+ I
641
+ 24
642
+ x
643
+ 109
644
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb
645
+ p
646
+ 0
647
+ x
648
+ 13
649
+ attach_method
650
+ p
651
+ 5
652
+ I
653
+ 0
654
+ I
655
+ 1
656
+ I
657
+ 9
658
+ I
659
+ 3
660
+ I
661
+ 26
662
+ x
663
+ 109
664
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/cgi/escape_skipping_slashes.rb
665
+ p
666
+ 0