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,1516 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 28
13
+ 99
14
+ 7
15
+ 0
16
+ 65
17
+ 49
18
+ 1
19
+ 2
20
+ 13
21
+ 99
22
+ 12
23
+ 7
24
+ 2
25
+ 12
26
+ 7
27
+ 3
28
+ 12
29
+ 65
30
+ 12
31
+ 49
32
+ 4
33
+ 4
34
+ 15
35
+ 49
36
+ 2
37
+ 0
38
+ 15
39
+ 2
40
+ 11
41
+ I
42
+ 6
43
+ I
44
+ 0
45
+ I
46
+ 0
47
+ I
48
+ 0
49
+ n
50
+ p
51
+ 5
52
+ x
53
+ 13
54
+ ActiveSupport
55
+ x
56
+ 11
57
+ open_module
58
+ x
59
+ 15
60
+ __module_init__
61
+ M
62
+ 1
63
+ n
64
+ n
65
+ x
66
+ 13
67
+ ActiveSupport
68
+ i
69
+ 28
70
+ 5
71
+ 66
72
+ 99
73
+ 7
74
+ 0
75
+ 65
76
+ 49
77
+ 1
78
+ 2
79
+ 13
80
+ 99
81
+ 12
82
+ 7
83
+ 2
84
+ 12
85
+ 7
86
+ 3
87
+ 12
88
+ 65
89
+ 12
90
+ 49
91
+ 4
92
+ 4
93
+ 15
94
+ 49
95
+ 2
96
+ 0
97
+ 11
98
+ I
99
+ 6
100
+ I
101
+ 0
102
+ I
103
+ 0
104
+ I
105
+ 0
106
+ n
107
+ p
108
+ 5
109
+ x
110
+ 11
111
+ Deprecation
112
+ x
113
+ 11
114
+ open_module
115
+ x
116
+ 15
117
+ __module_init__
118
+ M
119
+ 1
120
+ n
121
+ n
122
+ x
123
+ 11
124
+ Deprecation
125
+ i
126
+ 30
127
+ 5
128
+ 66
129
+ 5
130
+ 99
131
+ 43
132
+ 0
133
+ 12
134
+ 49
135
+ 1
136
+ 1
137
+ 13
138
+ 99
139
+ 12
140
+ 7
141
+ 2
142
+ 12
143
+ 7
144
+ 3
145
+ 12
146
+ 65
147
+ 12
148
+ 49
149
+ 4
150
+ 4
151
+ 15
152
+ 54
153
+ 50
154
+ 2
155
+ 0
156
+ 11
157
+ I
158
+ 6
159
+ I
160
+ 0
161
+ I
162
+ 0
163
+ I
164
+ 0
165
+ n
166
+ p
167
+ 5
168
+ x
169
+ 4
170
+ Type
171
+ x
172
+ 22
173
+ object_singleton_class
174
+ x
175
+ 18
176
+ __metaclass_init__
177
+ M
178
+ 1
179
+ n
180
+ n
181
+ x
182
+ 18
183
+ __metaclass_init__
184
+ i
185
+ 98
186
+ 5
187
+ 66
188
+ 5
189
+ 7
190
+ 0
191
+ 47
192
+ 49
193
+ 1
194
+ 1
195
+ 15
196
+ 99
197
+ 7
198
+ 2
199
+ 7
200
+ 3
201
+ 65
202
+ 67
203
+ 49
204
+ 4
205
+ 0
206
+ 49
207
+ 5
208
+ 4
209
+ 15
210
+ 99
211
+ 7
212
+ 6
213
+ 7
214
+ 7
215
+ 65
216
+ 67
217
+ 49
218
+ 4
219
+ 0
220
+ 49
221
+ 5
222
+ 4
223
+ 15
224
+ 99
225
+ 7
226
+ 8
227
+ 7
228
+ 9
229
+ 65
230
+ 67
231
+ 49
232
+ 4
233
+ 0
234
+ 49
235
+ 5
236
+ 4
237
+ 15
238
+ 5
239
+ 48
240
+ 10
241
+ 15
242
+ 99
243
+ 7
244
+ 11
245
+ 7
246
+ 12
247
+ 65
248
+ 67
249
+ 49
250
+ 4
251
+ 0
252
+ 49
253
+ 5
254
+ 4
255
+ 15
256
+ 99
257
+ 7
258
+ 13
259
+ 7
260
+ 14
261
+ 65
262
+ 67
263
+ 49
264
+ 4
265
+ 0
266
+ 49
267
+ 5
268
+ 4
269
+ 15
270
+ 99
271
+ 7
272
+ 15
273
+ 7
274
+ 16
275
+ 65
276
+ 67
277
+ 49
278
+ 4
279
+ 0
280
+ 49
281
+ 5
282
+ 4
283
+ 11
284
+ I
285
+ 5
286
+ I
287
+ 0
288
+ I
289
+ 0
290
+ I
291
+ 0
292
+ n
293
+ p
294
+ 17
295
+ x
296
+ 8
297
+ silenced
298
+ x
299
+ 13
300
+ attr_accessor
301
+ x
302
+ 4
303
+ warn
304
+ M
305
+ 1
306
+ n
307
+ n
308
+ x
309
+ 4
310
+ warn
311
+ i
312
+ 44
313
+ 23
314
+ 0
315
+ 10
316
+ 8
317
+ 1
318
+ 19
319
+ 0
320
+ 15
321
+ 23
322
+ 1
323
+ 10
324
+ 18
325
+ 5
326
+ 48
327
+ 0
328
+ 19
329
+ 1
330
+ 15
331
+ 5
332
+ 48
333
+ 1
334
+ 9
335
+ 27
336
+ 1
337
+ 11
338
+ 8
339
+ 28
340
+ 1
341
+ 15
342
+ 5
343
+ 20
344
+ 1
345
+ 20
346
+ 0
347
+ 47
348
+ 49
349
+ 2
350
+ 2
351
+ 56
352
+ 3
353
+ 50
354
+ 4
355
+ 0
356
+ 11
357
+ I
358
+ 5
359
+ I
360
+ 2
361
+ I
362
+ 0
363
+ I
364
+ 2
365
+ n
366
+ p
367
+ 5
368
+ x
369
+ 6
370
+ caller
371
+ x
372
+ 8
373
+ silenced
374
+ x
375
+ 19
376
+ deprecation_message
377
+ M
378
+ 1
379
+ p
380
+ 2
381
+ x
382
+ 9
383
+ for_block
384
+ t
385
+ n
386
+ x
387
+ 4
388
+ warn
389
+ i
390
+ 13
391
+ 57
392
+ 19
393
+ 0
394
+ 15
395
+ 5
396
+ 48
397
+ 0
398
+ 56
399
+ 1
400
+ 50
401
+ 2
402
+ 0
403
+ 11
404
+ I
405
+ 4
406
+ I
407
+ 1
408
+ I
409
+ 1
410
+ I
411
+ 1
412
+ n
413
+ p
414
+ 3
415
+ x
416
+ 8
417
+ behavior
418
+ M
419
+ 1
420
+ p
421
+ 2
422
+ x
423
+ 9
424
+ for_block
425
+ t
426
+ n
427
+ x
428
+ 4
429
+ warn
430
+ i
431
+ 16
432
+ 57
433
+ 19
434
+ 0
435
+ 15
436
+ 20
437
+ 0
438
+ 21
439
+ 1
440
+ 0
441
+ 21
442
+ 2
443
+ 1
444
+ 49
445
+ 0
446
+ 2
447
+ 11
448
+ I
449
+ 5
450
+ I
451
+ 1
452
+ I
453
+ 1
454
+ I
455
+ 1
456
+ n
457
+ p
458
+ 1
459
+ x
460
+ 4
461
+ call
462
+ p
463
+ 3
464
+ I
465
+ 0
466
+ I
467
+ 9
468
+ I
469
+ 10
470
+ x
471
+ 94
472
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/reporting.rb
473
+ p
474
+ 1
475
+ x
476
+ 1
477
+ b
478
+ x
479
+ 4
480
+ each
481
+ p
482
+ 5
483
+ I
484
+ 0
485
+ I
486
+ 8
487
+ I
488
+ 4
489
+ I
490
+ 9
491
+ I
492
+ d
493
+ x
494
+ 94
495
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/reporting.rb
496
+ p
497
+ 1
498
+ x
499
+ 1
500
+ m
501
+ x
502
+ 3
503
+ tap
504
+ p
505
+ 7
506
+ I
507
+ -1
508
+ I
509
+ 6
510
+ I
511
+ 12
512
+ I
513
+ 7
514
+ I
515
+ 1d
516
+ I
517
+ 8
518
+ I
519
+ 2c
520
+ x
521
+ 94
522
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/reporting.rb
523
+ p
524
+ 2
525
+ x
526
+ 7
527
+ message
528
+ x
529
+ 9
530
+ callstack
531
+ x
532
+ 17
533
+ method_visibility
534
+ x
535
+ 15
536
+ add_defn_method
537
+ x
538
+ 7
539
+ silence
540
+ M
541
+ 1
542
+ n
543
+ n
544
+ x
545
+ 7
546
+ silence
547
+ i
548
+ 39
549
+ 29
550
+ 25
551
+ 1
552
+ 26
553
+ 93
554
+ 0
555
+ 15
556
+ 39
557
+ 0
558
+ 2
559
+ 17
560
+ 2
561
+ 19
562
+ 0
563
+ 15
564
+ 38
565
+ 0
566
+ 15
567
+ 2
568
+ 15
569
+ 60
570
+ 0
571
+ 30
572
+ 8
573
+ 33
574
+ 26
575
+ 20
576
+ 0
577
+ 38
578
+ 0
579
+ 15
580
+ 27
581
+ 34
582
+ 20
583
+ 0
584
+ 38
585
+ 0
586
+ 15
587
+ 11
588
+ I
589
+ 4
590
+ I
591
+ 1
592
+ I
593
+ 0
594
+ I
595
+ 0
596
+ n
597
+ p
598
+ 1
599
+ x
600
+ 9
601
+ @silenced
602
+ p
603
+ 9
604
+ I
605
+ -1
606
+ I
607
+ e
608
+ I
609
+ 0
610
+ I
611
+ f
612
+ I
613
+ 14
614
+ I
615
+ 10
616
+ I
617
+ 1a
618
+ I
619
+ 12
620
+ I
621
+ 27
622
+ x
623
+ 94
624
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/reporting.rb
625
+ p
626
+ 1
627
+ x
628
+ 12
629
+ old_silenced
630
+ x
631
+ 25
632
+ deprecated_method_warning
633
+ M
634
+ 1
635
+ n
636
+ n
637
+ x
638
+ 25
639
+ deprecated_method_warning
640
+ i
641
+ 90
642
+ 23
643
+ 1
644
+ 10
645
+ 8
646
+ 1
647
+ 19
648
+ 1
649
+ 15
650
+ 20
651
+ 0
652
+ 47
653
+ 101
654
+ 0
655
+ 7
656
+ 1
657
+ 5
658
+ 48
659
+ 2
660
+ 47
661
+ 101
662
+ 0
663
+ 63
664
+ 3
665
+ 19
666
+ 2
667
+ 15
668
+ 20
669
+ 1
670
+ 13
671
+ 45
672
+ 3
673
+ 4
674
+ 12
675
+ 49
676
+ 5
677
+ 1
678
+ 9
679
+ 57
680
+ 15
681
+ 20
682
+ 2
683
+ 47
684
+ 101
685
+ 0
686
+ 7
687
+ 6
688
+ 20
689
+ 1
690
+ 47
691
+ 101
692
+ 0
693
+ 7
694
+ 7
695
+ 63
696
+ 4
697
+ 8
698
+ 89
699
+ 13
700
+ 45
701
+ 8
702
+ 9
703
+ 12
704
+ 49
705
+ 5
706
+ 1
707
+ 9
708
+ 86
709
+ 15
710
+ 20
711
+ 2
712
+ 47
713
+ 101
714
+ 0
715
+ 7
716
+ 10
717
+ 20
718
+ 1
719
+ 47
720
+ 101
721
+ 0
722
+ 7
723
+ 11
724
+ 63
725
+ 4
726
+ 8
727
+ 89
728
+ 15
729
+ 20
730
+ 2
731
+ 11
732
+ I
733
+ 7
734
+ I
735
+ 3
736
+ I
737
+ 1
738
+ I
739
+ 2
740
+ n
741
+ p
742
+ 12
743
+ x
744
+ 4
745
+ to_s
746
+ s
747
+ 46
748
+ is deprecated and will be removed from Rails
749
+ x
750
+ 19
751
+ deprecation_horizon
752
+ x
753
+ 6
754
+ Symbol
755
+ n
756
+ x
757
+ 3
758
+ ===
759
+ s
760
+ 6
761
+ (use
762
+ s
763
+ 9
764
+ instead)
765
+ x
766
+ 6
767
+ String
768
+ n
769
+ s
770
+ 2
771
+ (
772
+ s
773
+ 1
774
+ )
775
+ p
776
+ 13
777
+ I
778
+ -1
779
+ I
780
+ 15
781
+ I
782
+ 8
783
+ I
784
+ 16
785
+ I
786
+ 1a
787
+ I
788
+ 17
789
+ I
790
+ 1c
791
+ I
792
+ 18
793
+ I
794
+ 39
795
+ I
796
+ 19
797
+ I
798
+ 57
799
+ I
800
+ 1a
801
+ I
802
+ 5a
803
+ x
804
+ 94
805
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/reporting.rb
806
+ p
807
+ 3
808
+ x
809
+ 11
810
+ method_name
811
+ x
812
+ 7
813
+ message
814
+ x
815
+ 7
816
+ warning
817
+ x
818
+ 7
819
+ private
820
+ x
821
+ 19
822
+ deprecation_message
823
+ M
824
+ 1
825
+ n
826
+ n
827
+ x
828
+ 19
829
+ deprecation_message
830
+ i
831
+ 80
832
+ 23
833
+ 1
834
+ 10
835
+ 8
836
+ 1
837
+ 19
838
+ 1
839
+ 15
840
+ 20
841
+ 1
842
+ 13
843
+ 10
844
+ 19
845
+ 15
846
+ 7
847
+ 0
848
+ 64
849
+ 19
850
+ 1
851
+ 15
852
+ 20
853
+ 1
854
+ 7
855
+ 1
856
+ 13
857
+ 70
858
+ 9
859
+ 40
860
+ 15
861
+ 44
862
+ 43
863
+ 2
864
+ 7
865
+ 3
866
+ 78
867
+ 49
868
+ 4
869
+ 2
870
+ 6
871
+ 1
872
+ 49
873
+ 5
874
+ 1
875
+ 9
876
+ 48
877
+ 1
878
+ 8
879
+ 57
880
+ 20
881
+ 1
882
+ 7
883
+ 6
884
+ 64
885
+ 81
886
+ 7
887
+ 19
888
+ 1
889
+ 15
890
+ 7
891
+ 8
892
+ 20
893
+ 1
894
+ 47
895
+ 101
896
+ 9
897
+ 7
898
+ 10
899
+ 5
900
+ 20
901
+ 0
902
+ 47
903
+ 49
904
+ 11
905
+ 1
906
+ 47
907
+ 101
908
+ 9
909
+ 63
910
+ 4
911
+ 11
912
+ I
913
+ 7
914
+ I
915
+ 2
916
+ I
917
+ 1
918
+ I
919
+ 2
920
+ n
921
+ p
922
+ 12
923
+ s
924
+ 93
925
+ You are using deprecated behavior which will be removed from the next major or minor release.
926
+ n
927
+ x
928
+ 6
929
+ Regexp
930
+ s
931
+ 3
932
+ \.$
933
+ x
934
+ 3
935
+ new
936
+ x
937
+ 2
938
+ =~
939
+ s
940
+ 1
941
+ .
942
+ x
943
+ 1
944
+ +
945
+ s
946
+ 21
947
+ DEPRECATION WARNING:
948
+ x
949
+ 4
950
+ to_s
951
+ s
952
+ 1
953
+
954
+ x
955
+ 26
956
+ deprecation_caller_message
957
+ p
958
+ 9
959
+ I
960
+ -1
961
+ I
962
+ 1f
963
+ I
964
+ 8
965
+ I
966
+ 20
967
+ I
968
+ 14
969
+ I
970
+ 21
971
+ I
972
+ 3a
973
+ I
974
+ 22
975
+ I
976
+ 50
977
+ x
978
+ 94
979
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/reporting.rb
980
+ p
981
+ 2
982
+ x
983
+ 9
984
+ callstack
985
+ x
986
+ 7
987
+ message
988
+ x
989
+ 26
990
+ deprecation_caller_message
991
+ M
992
+ 1
993
+ n
994
+ n
995
+ x
996
+ 26
997
+ deprecation_caller_message
998
+ i
999
+ 86
1000
+ 5
1001
+ 20
1002
+ 0
1003
+ 47
1004
+ 49
1005
+ 0
1006
+ 1
1007
+ 97
1008
+ 37
1009
+ 19
1010
+ 1
1011
+ 15
1012
+ 37
1013
+ 19
1014
+ 2
1015
+ 15
1016
+ 37
1017
+ 19
1018
+ 3
1019
+ 15
1020
+ 15
1021
+ 2
1022
+ 15
1023
+ 20
1024
+ 1
1025
+ 9
1026
+ 84
1027
+ 20
1028
+ 2
1029
+ 13
1030
+ 9
1031
+ 35
1032
+ 15
1033
+ 20
1034
+ 3
1035
+ 9
1036
+ 64
1037
+ 7
1038
+ 1
1039
+ 20
1040
+ 3
1041
+ 47
1042
+ 101
1043
+ 2
1044
+ 7
1045
+ 3
1046
+ 20
1047
+ 1
1048
+ 47
1049
+ 101
1050
+ 2
1051
+ 7
1052
+ 4
1053
+ 20
1054
+ 2
1055
+ 47
1056
+ 101
1057
+ 2
1058
+ 7
1059
+ 5
1060
+ 63
1061
+ 7
1062
+ 8
1063
+ 82
1064
+ 7
1065
+ 1
1066
+ 20
1067
+ 1
1068
+ 47
1069
+ 101
1070
+ 2
1071
+ 7
1072
+ 4
1073
+ 20
1074
+ 2
1075
+ 47
1076
+ 101
1077
+ 2
1078
+ 7
1079
+ 5
1080
+ 63
1081
+ 5
1082
+ 8
1083
+ 85
1084
+ 1
1085
+ 11
1086
+ I
1087
+ b
1088
+ I
1089
+ 4
1090
+ I
1091
+ 1
1092
+ I
1093
+ 1
1094
+ n
1095
+ p
1096
+ 6
1097
+ x
1098
+ 17
1099
+ extract_callstack
1100
+ s
1101
+ 13
1102
+ (called from
1103
+ x
1104
+ 4
1105
+ to_s
1106
+ s
1107
+ 4
1108
+ at
1109
+ s
1110
+ 1
1111
+ :
1112
+ s
1113
+ 1
1114
+ )
1115
+ p
1116
+ 15
1117
+ I
1118
+ -1
1119
+ I
1120
+ 25
1121
+ I
1122
+ 0
1123
+ I
1124
+ 26
1125
+ I
1126
+ 17
1127
+ I
1128
+ 27
1129
+ I
1130
+ 1b
1131
+ I
1132
+ 28
1133
+ I
1134
+ 25
1135
+ I
1136
+ 29
1137
+ I
1138
+ 40
1139
+ I
1140
+ 2b
1141
+ I
1142
+ 54
1143
+ I
1144
+ 27
1145
+ I
1146
+ 56
1147
+ x
1148
+ 94
1149
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/reporting.rb
1150
+ p
1151
+ 4
1152
+ x
1153
+ 9
1154
+ callstack
1155
+ x
1156
+ 4
1157
+ file
1158
+ x
1159
+ 4
1160
+ line
1161
+ x
1162
+ 6
1163
+ method
1164
+ x
1165
+ 17
1166
+ extract_callstack
1167
+ M
1168
+ 1
1169
+ n
1170
+ n
1171
+ x
1172
+ 17
1173
+ extract_callstack
1174
+ i
1175
+ 84
1176
+ 45
1177
+ 0
1178
+ 1
1179
+ 7
1180
+ 2
1181
+ 64
1182
+ 65
1183
+ 49
1184
+ 3
1185
+ 0
1186
+ 49
1187
+ 4
1188
+ 2
1189
+ 7
1190
+ 5
1191
+ 64
1192
+ 81
1193
+ 6
1194
+ 19
1195
+ 1
1196
+ 15
1197
+ 20
1198
+ 0
1199
+ 56
1200
+ 7
1201
+ 50
1202
+ 8
1203
+ 0
1204
+ 13
1205
+ 10
1206
+ 37
1207
+ 15
1208
+ 20
1209
+ 0
1210
+ 49
1211
+ 9
1212
+ 0
1213
+ 19
1214
+ 2
1215
+ 15
1216
+ 20
1217
+ 2
1218
+ 9
1219
+ 82
1220
+ 20
1221
+ 2
1222
+ 7
1223
+ 10
1224
+ 13
1225
+ 70
1226
+ 9
1227
+ 64
1228
+ 15
1229
+ 44
1230
+ 43
1231
+ 11
1232
+ 7
1233
+ 12
1234
+ 78
1235
+ 49
1236
+ 13
1237
+ 2
1238
+ 6
1239
+ 10
1240
+ 49
1241
+ 14
1242
+ 1
1243
+ 19
1244
+ 3
1245
+ 9
1246
+ 78
1247
+ 20
1248
+ 3
1249
+ 49
1250
+ 15
1251
+ 0
1252
+ 8
1253
+ 80
1254
+ 20
1255
+ 2
1256
+ 8
1257
+ 83
1258
+ 1
1259
+ 11
1260
+ I
1261
+ 8
1262
+ I
1263
+ 4
1264
+ I
1265
+ 1
1266
+ I
1267
+ 1
1268
+ n
1269
+ p
1270
+ 16
1271
+ x
1272
+ 4
1273
+ File
1274
+ n
1275
+ s
1276
+ 14
1277
+ ../../../../..
1278
+ x
1279
+ 11
1280
+ active_path
1281
+ x
1282
+ 11
1283
+ expand_path
1284
+ s
1285
+ 1
1286
+ /
1287
+ x
1288
+ 1
1289
+ +
1290
+ M
1291
+ 1
1292
+ p
1293
+ 2
1294
+ x
1295
+ 9
1296
+ for_block
1297
+ t
1298
+ n
1299
+ x
1300
+ 17
1301
+ extract_callstack
1302
+ i
1303
+ 19
1304
+ 57
1305
+ 19
1306
+ 0
1307
+ 15
1308
+ 20
1309
+ 0
1310
+ 21
1311
+ 1
1312
+ 1
1313
+ 49
1314
+ 0
1315
+ 1
1316
+ 10
1317
+ 17
1318
+ 2
1319
+ 8
1320
+ 18
1321
+ 3
1322
+ 11
1323
+ I
1324
+ 4
1325
+ I
1326
+ 1
1327
+ I
1328
+ 1
1329
+ I
1330
+ 1
1331
+ n
1332
+ p
1333
+ 1
1334
+ x
1335
+ 11
1336
+ start_with?
1337
+ p
1338
+ 3
1339
+ I
1340
+ 0
1341
+ I
1342
+ 32
1343
+ I
1344
+ 13
1345
+ x
1346
+ 94
1347
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/reporting.rb
1348
+ p
1349
+ 1
1350
+ x
1351
+ 4
1352
+ line
1353
+ x
1354
+ 4
1355
+ find
1356
+ x
1357
+ 5
1358
+ first
1359
+ n
1360
+ x
1361
+ 6
1362
+ Regexp
1363
+ s
1364
+ 28
1365
+ ^(.+?):(\d+)(?::in `(.*?)')?
1366
+ x
1367
+ 3
1368
+ new
1369
+ x
1370
+ 5
1371
+ match
1372
+ x
1373
+ 8
1374
+ captures
1375
+ p
1376
+ 17
1377
+ I
1378
+ -1
1379
+ I
1380
+ 30
1381
+ I
1382
+ 0
1383
+ I
1384
+ 31
1385
+ I
1386
+ 15
1387
+ I
1388
+ 32
1389
+ I
1390
+ 28
1391
+ I
1392
+ 33
1393
+ I
1394
+ 2c
1395
+ I
1396
+ 34
1397
+ I
1398
+ 47
1399
+ I
1400
+ 35
1401
+ I
1402
+ 4e
1403
+ I
1404
+ 37
1405
+ I
1406
+ 52
1407
+ I
1408
+ 33
1409
+ I
1410
+ 54
1411
+ x
1412
+ 94
1413
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/reporting.rb
1414
+ p
1415
+ 4
1416
+ x
1417
+ 9
1418
+ callstack
1419
+ x
1420
+ 14
1421
+ rails_gem_root
1422
+ x
1423
+ 14
1424
+ offending_line
1425
+ x
1426
+ 2
1427
+ md
1428
+ p
1429
+ 17
1430
+ I
1431
+ 2
1432
+ I
1433
+ 4
1434
+ I
1435
+ a
1436
+ I
1437
+ 6
1438
+ I
1439
+ 18
1440
+ I
1441
+ e
1442
+ I
1443
+ 26
1444
+ I
1445
+ 15
1446
+ I
1447
+ 34
1448
+ I
1449
+ 1e
1450
+ I
1451
+ 38
1452
+ I
1453
+ 1f
1454
+ I
1455
+ 46
1456
+ I
1457
+ 25
1458
+ I
1459
+ 54
1460
+ I
1461
+ 30
1462
+ I
1463
+ 62
1464
+ x
1465
+ 94
1466
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/reporting.rb
1467
+ p
1468
+ 0
1469
+ x
1470
+ 13
1471
+ attach_method
1472
+ p
1473
+ 3
1474
+ I
1475
+ 2
1476
+ I
1477
+ 3
1478
+ I
1479
+ 1e
1480
+ x
1481
+ 94
1482
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/reporting.rb
1483
+ p
1484
+ 0
1485
+ x
1486
+ 13
1487
+ attach_method
1488
+ p
1489
+ 3
1490
+ I
1491
+ 2
1492
+ I
1493
+ 2
1494
+ I
1495
+ 1c
1496
+ x
1497
+ 94
1498
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/reporting.rb
1499
+ p
1500
+ 0
1501
+ x
1502
+ 13
1503
+ attach_method
1504
+ p
1505
+ 3
1506
+ I
1507
+ 0
1508
+ I
1509
+ 1
1510
+ I
1511
+ 1c
1512
+ x
1513
+ 94
1514
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/deprecation/reporting.rb
1515
+ p
1516
+ 0