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