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,343 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 29
13
+ 99
14
+ 7
15
+ 0
16
+ 1
17
+ 65
18
+ 49
19
+ 1
20
+ 3
21
+ 13
22
+ 99
23
+ 12
24
+ 7
25
+ 2
26
+ 12
27
+ 7
28
+ 3
29
+ 12
30
+ 65
31
+ 12
32
+ 49
33
+ 4
34
+ 4
35
+ 15
36
+ 49
37
+ 2
38
+ 0
39
+ 15
40
+ 2
41
+ 11
42
+ I
43
+ 6
44
+ I
45
+ 0
46
+ I
47
+ 0
48
+ I
49
+ 0
50
+ n
51
+ p
52
+ 5
53
+ x
54
+ 4
55
+ Hash
56
+ x
57
+ 10
58
+ open_class
59
+ x
60
+ 14
61
+ __class_init__
62
+ M
63
+ 1
64
+ n
65
+ n
66
+ x
67
+ 4
68
+ Hash
69
+ i
70
+ 40
71
+ 5
72
+ 66
73
+ 99
74
+ 7
75
+ 0
76
+ 7
77
+ 1
78
+ 65
79
+ 67
80
+ 49
81
+ 2
82
+ 0
83
+ 49
84
+ 3
85
+ 4
86
+ 15
87
+ 99
88
+ 7
89
+ 4
90
+ 7
91
+ 5
92
+ 65
93
+ 67
94
+ 49
95
+ 2
96
+ 0
97
+ 49
98
+ 3
99
+ 4
100
+ 15
101
+ 5
102
+ 7
103
+ 6
104
+ 7
105
+ 4
106
+ 47
107
+ 49
108
+ 7
109
+ 2
110
+ 11
111
+ I
112
+ 5
113
+ I
114
+ 0
115
+ I
116
+ 0
117
+ I
118
+ 0
119
+ n
120
+ p
121
+ 8
122
+ x
123
+ 13
124
+ reverse_merge
125
+ M
126
+ 1
127
+ n
128
+ n
129
+ x
130
+ 13
131
+ reverse_merge
132
+ i
133
+ 7
134
+ 20
135
+ 0
136
+ 5
137
+ 49
138
+ 0
139
+ 1
140
+ 11
141
+ I
142
+ 3
143
+ I
144
+ 1
145
+ I
146
+ 1
147
+ I
148
+ 1
149
+ n
150
+ p
151
+ 1
152
+ x
153
+ 5
154
+ merge
155
+ p
156
+ 5
157
+ I
158
+ -1
159
+ I
160
+ 11
161
+ I
162
+ 0
163
+ I
164
+ 12
165
+ I
166
+ 7
167
+ x
168
+ 100
169
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb
170
+ p
171
+ 1
172
+ x
173
+ 10
174
+ other_hash
175
+ x
176
+ 17
177
+ method_visibility
178
+ x
179
+ 15
180
+ add_defn_method
181
+ x
182
+ 14
183
+ reverse_merge!
184
+ M
185
+ 1
186
+ n
187
+ n
188
+ x
189
+ 14
190
+ reverse_merge!
191
+ i
192
+ 10
193
+ 5
194
+ 20
195
+ 0
196
+ 56
197
+ 0
198
+ 47
199
+ 50
200
+ 1
201
+ 1
202
+ 11
203
+ I
204
+ 4
205
+ I
206
+ 1
207
+ I
208
+ 1
209
+ I
210
+ 1
211
+ n
212
+ p
213
+ 2
214
+ M
215
+ 1
216
+ p
217
+ 2
218
+ x
219
+ 9
220
+ for_block
221
+ t
222
+ n
223
+ x
224
+ 14
225
+ reverse_merge!
226
+ i
227
+ 17
228
+ 58
229
+ 37
230
+ 19
231
+ 0
232
+ 15
233
+ 37
234
+ 19
235
+ 1
236
+ 15
237
+ 37
238
+ 19
239
+ 2
240
+ 15
241
+ 15
242
+ 20
243
+ 1
244
+ 11
245
+ I
246
+ 6
247
+ I
248
+ 3
249
+ I
250
+ 3
251
+ I
252
+ 3
253
+ n
254
+ p
255
+ 0
256
+ p
257
+ 3
258
+ I
259
+ 0
260
+ I
261
+ 18
262
+ I
263
+ 11
264
+ x
265
+ 100
266
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb
267
+ p
268
+ 3
269
+ x
270
+ 1
271
+ k
272
+ x
273
+ 1
274
+ o
275
+ x
276
+ 1
277
+ n
278
+ x
279
+ 6
280
+ merge!
281
+ p
282
+ 5
283
+ I
284
+ -1
285
+ I
286
+ 17
287
+ I
288
+ 0
289
+ I
290
+ 18
291
+ I
292
+ a
293
+ x
294
+ 100
295
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb
296
+ p
297
+ 1
298
+ x
299
+ 10
300
+ other_hash
301
+ x
302
+ 14
303
+ reverse_update
304
+ x
305
+ 12
306
+ alias_method
307
+ p
308
+ 7
309
+ I
310
+ 2
311
+ I
312
+ 11
313
+ I
314
+ 10
315
+ I
316
+ 17
317
+ I
318
+ 1e
319
+ I
320
+ 1b
321
+ I
322
+ 28
323
+ x
324
+ 100
325
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb
326
+ p
327
+ 0
328
+ x
329
+ 13
330
+ attach_method
331
+ p
332
+ 3
333
+ I
334
+ 0
335
+ I
336
+ 1
337
+ I
338
+ 1d
339
+ x
340
+ 100
341
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/reverse_merge.rb
342
+ p
343
+ 0
@@ -0,0 +1,816 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 29
13
+ 99
14
+ 7
15
+ 0
16
+ 1
17
+ 65
18
+ 49
19
+ 1
20
+ 3
21
+ 13
22
+ 99
23
+ 12
24
+ 7
25
+ 2
26
+ 12
27
+ 7
28
+ 3
29
+ 12
30
+ 65
31
+ 12
32
+ 49
33
+ 4
34
+ 4
35
+ 15
36
+ 49
37
+ 2
38
+ 0
39
+ 15
40
+ 2
41
+ 11
42
+ I
43
+ 6
44
+ I
45
+ 0
46
+ I
47
+ 0
48
+ I
49
+ 0
50
+ n
51
+ p
52
+ 5
53
+ x
54
+ 4
55
+ Hash
56
+ x
57
+ 10
58
+ open_class
59
+ x
60
+ 14
61
+ __class_init__
62
+ M
63
+ 1
64
+ n
65
+ n
66
+ x
67
+ 4
68
+ Hash
69
+ i
70
+ 44
71
+ 5
72
+ 66
73
+ 99
74
+ 7
75
+ 0
76
+ 7
77
+ 1
78
+ 65
79
+ 67
80
+ 49
81
+ 2
82
+ 0
83
+ 49
84
+ 3
85
+ 4
86
+ 15
87
+ 99
88
+ 7
89
+ 4
90
+ 7
91
+ 5
92
+ 65
93
+ 67
94
+ 49
95
+ 2
96
+ 0
97
+ 49
98
+ 3
99
+ 4
100
+ 15
101
+ 99
102
+ 7
103
+ 6
104
+ 7
105
+ 7
106
+ 65
107
+ 67
108
+ 49
109
+ 2
110
+ 0
111
+ 49
112
+ 3
113
+ 4
114
+ 11
115
+ I
116
+ 5
117
+ I
118
+ 0
119
+ I
120
+ 0
121
+ I
122
+ 0
123
+ n
124
+ p
125
+ 8
126
+ x
127
+ 5
128
+ slice
129
+ M
130
+ 1
131
+ n
132
+ n
133
+ x
134
+ 5
135
+ slice
136
+ i
137
+ 61
138
+ 5
139
+ 7
140
+ 0
141
+ 47
142
+ 49
143
+ 1
144
+ 1
145
+ 9
146
+ 20
147
+ 20
148
+ 0
149
+ 56
150
+ 2
151
+ 50
152
+ 3
153
+ 0
154
+ 19
155
+ 0
156
+ 8
157
+ 21
158
+ 1
159
+ 15
160
+ 5
161
+ 49
162
+ 4
163
+ 0
164
+ 13
165
+ 71
166
+ 5
167
+ 47
168
+ 9
169
+ 44
170
+ 47
171
+ 49
172
+ 6
173
+ 0
174
+ 13
175
+ 47
176
+ 49
177
+ 7
178
+ 0
179
+ 15
180
+ 8
181
+ 47
182
+ 49
183
+ 5
184
+ 0
185
+ 19
186
+ 1
187
+ 15
188
+ 20
189
+ 0
190
+ 56
191
+ 8
192
+ 50
193
+ 9
194
+ 0
195
+ 15
196
+ 20
197
+ 1
198
+ 11
199
+ I
200
+ 4
201
+ I
202
+ 2
203
+ I
204
+ 0
205
+ I
206
+ 0
207
+ I
208
+ 0
209
+ p
210
+ 10
211
+ x
212
+ 11
213
+ convert_key
214
+ x
215
+ 11
216
+ respond_to?
217
+ M
218
+ 1
219
+ p
220
+ 2
221
+ x
222
+ 9
223
+ for_block
224
+ t
225
+ n
226
+ x
227
+ 5
228
+ slice
229
+ i
230
+ 12
231
+ 57
232
+ 19
233
+ 0
234
+ 15
235
+ 5
236
+ 20
237
+ 0
238
+ 47
239
+ 49
240
+ 0
241
+ 1
242
+ 11
243
+ I
244
+ 4
245
+ I
246
+ 1
247
+ I
248
+ 1
249
+ I
250
+ 1
251
+ n
252
+ p
253
+ 1
254
+ x
255
+ 11
256
+ convert_key
257
+ p
258
+ 3
259
+ I
260
+ 0
261
+ I
262
+ 10
263
+ I
264
+ c
265
+ x
266
+ 92
267
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/slice.rb
268
+ p
269
+ 1
270
+ x
271
+ 3
272
+ key
273
+ x
274
+ 4
275
+ map!
276
+ x
277
+ 5
278
+ class
279
+ x
280
+ 3
281
+ new
282
+ x
283
+ 8
284
+ allocate
285
+ x
286
+ 10
287
+ initialize
288
+ M
289
+ 1
290
+ p
291
+ 2
292
+ x
293
+ 9
294
+ for_block
295
+ t
296
+ n
297
+ x
298
+ 5
299
+ slice
300
+ i
301
+ 36
302
+ 57
303
+ 19
304
+ 0
305
+ 15
306
+ 5
307
+ 20
308
+ 0
309
+ 47
310
+ 49
311
+ 0
312
+ 1
313
+ 9
314
+ 34
315
+ 21
316
+ 1
317
+ 1
318
+ 20
319
+ 0
320
+ 5
321
+ 20
322
+ 0
323
+ 47
324
+ 49
325
+ 1
326
+ 1
327
+ 13
328
+ 18
329
+ 3
330
+ 49
331
+ 2
332
+ 2
333
+ 15
334
+ 8
335
+ 35
336
+ 1
337
+ 11
338
+ I
339
+ 6
340
+ I
341
+ 1
342
+ I
343
+ 1
344
+ I
345
+ 1
346
+ n
347
+ p
348
+ 3
349
+ x
350
+ 8
351
+ has_key?
352
+ x
353
+ 2
354
+ []
355
+ x
356
+ 3
357
+ []=
358
+ p
359
+ 3
360
+ I
361
+ 0
362
+ I
363
+ 12
364
+ I
365
+ 24
366
+ x
367
+ 92
368
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/slice.rb
369
+ p
370
+ 1
371
+ x
372
+ 1
373
+ k
374
+ x
375
+ 4
376
+ each
377
+ p
378
+ 11
379
+ I
380
+ -1
381
+ I
382
+ f
383
+ I
384
+ 0
385
+ I
386
+ 10
387
+ I
388
+ 16
389
+ I
390
+ 11
391
+ I
392
+ 32
393
+ I
394
+ 12
395
+ I
396
+ 3a
397
+ I
398
+ 13
399
+ I
400
+ 3d
401
+ x
402
+ 92
403
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/slice.rb
404
+ p
405
+ 2
406
+ x
407
+ 4
408
+ keys
409
+ x
410
+ 4
411
+ hash
412
+ x
413
+ 17
414
+ method_visibility
415
+ x
416
+ 15
417
+ add_defn_method
418
+ x
419
+ 6
420
+ slice!
421
+ M
422
+ 1
423
+ n
424
+ n
425
+ x
426
+ 6
427
+ slice!
428
+ i
429
+ 63
430
+ 5
431
+ 7
432
+ 0
433
+ 47
434
+ 49
435
+ 1
436
+ 1
437
+ 9
438
+ 20
439
+ 20
440
+ 0
441
+ 56
442
+ 2
443
+ 50
444
+ 3
445
+ 0
446
+ 19
447
+ 0
448
+ 8
449
+ 21
450
+ 1
451
+ 15
452
+ 5
453
+ 5
454
+ 49
455
+ 4
456
+ 0
457
+ 20
458
+ 0
459
+ 82
460
+ 5
461
+ 36
462
+ 1
463
+ 47
464
+ 51
465
+ 6
466
+ 0
467
+ 19
468
+ 1
469
+ 15
470
+ 5
471
+ 20
472
+ 0
473
+ 36
474
+ 1
475
+ 47
476
+ 51
477
+ 6
478
+ 0
479
+ 19
480
+ 2
481
+ 15
482
+ 5
483
+ 20
484
+ 2
485
+ 47
486
+ 49
487
+ 7
488
+ 1
489
+ 15
490
+ 20
491
+ 1
492
+ 11
493
+ I
494
+ 6
495
+ I
496
+ 3
497
+ I
498
+ 0
499
+ I
500
+ 0
501
+ I
502
+ 0
503
+ p
504
+ 8
505
+ x
506
+ 11
507
+ convert_key
508
+ x
509
+ 11
510
+ respond_to?
511
+ M
512
+ 1
513
+ p
514
+ 2
515
+ x
516
+ 9
517
+ for_block
518
+ t
519
+ n
520
+ x
521
+ 6
522
+ slice!
523
+ i
524
+ 12
525
+ 57
526
+ 19
527
+ 0
528
+ 15
529
+ 5
530
+ 20
531
+ 0
532
+ 47
533
+ 49
534
+ 0
535
+ 1
536
+ 11
537
+ I
538
+ 4
539
+ I
540
+ 1
541
+ I
542
+ 1
543
+ I
544
+ 1
545
+ n
546
+ p
547
+ 1
548
+ x
549
+ 11
550
+ convert_key
551
+ p
552
+ 3
553
+ I
554
+ 0
555
+ I
556
+ 1a
557
+ I
558
+ c
559
+ x
560
+ 92
561
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/slice.rb
562
+ p
563
+ 1
564
+ x
565
+ 3
566
+ key
567
+ x
568
+ 4
569
+ map!
570
+ x
571
+ 4
572
+ keys
573
+ x
574
+ 1
575
+ -
576
+ x
577
+ 5
578
+ slice
579
+ x
580
+ 7
581
+ replace
582
+ p
583
+ 13
584
+ I
585
+ -1
586
+ I
587
+ 19
588
+ I
589
+ 0
590
+ I
591
+ 1a
592
+ I
593
+ 16
594
+ I
595
+ 1b
596
+ I
597
+ 28
598
+ I
599
+ 1c
600
+ I
601
+ 34
602
+ I
603
+ 1d
604
+ I
605
+ 3c
606
+ I
607
+ 1e
608
+ I
609
+ 3f
610
+ x
611
+ 92
612
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/slice.rb
613
+ p
614
+ 3
615
+ x
616
+ 4
617
+ keys
618
+ x
619
+ 4
620
+ omit
621
+ x
622
+ 4
623
+ hash
624
+ x
625
+ 8
626
+ extract!
627
+ M
628
+ 1
629
+ n
630
+ n
631
+ x
632
+ 8
633
+ extract!
634
+ i
635
+ 21
636
+ 44
637
+ 43
638
+ 0
639
+ 78
640
+ 49
641
+ 1
642
+ 1
643
+ 19
644
+ 1
645
+ 15
646
+ 20
647
+ 0
648
+ 56
649
+ 2
650
+ 50
651
+ 3
652
+ 0
653
+ 15
654
+ 20
655
+ 1
656
+ 11
657
+ I
658
+ 4
659
+ I
660
+ 2
661
+ I
662
+ 0
663
+ I
664
+ 0
665
+ I
666
+ 0
667
+ p
668
+ 4
669
+ x
670
+ 4
671
+ Hash
672
+ x
673
+ 16
674
+ new_from_literal
675
+ M
676
+ 1
677
+ p
678
+ 2
679
+ x
680
+ 9
681
+ for_block
682
+ t
683
+ n
684
+ x
685
+ 8
686
+ extract!
687
+ i
688
+ 24
689
+ 57
690
+ 19
691
+ 0
692
+ 15
693
+ 21
694
+ 1
695
+ 1
696
+ 20
697
+ 0
698
+ 5
699
+ 20
700
+ 0
701
+ 47
702
+ 49
703
+ 0
704
+ 1
705
+ 13
706
+ 18
707
+ 3
708
+ 49
709
+ 1
710
+ 2
711
+ 15
712
+ 11
713
+ I
714
+ 6
715
+ I
716
+ 1
717
+ I
718
+ 1
719
+ I
720
+ 1
721
+ n
722
+ p
723
+ 2
724
+ x
725
+ 6
726
+ delete
727
+ x
728
+ 3
729
+ []=
730
+ p
731
+ 3
732
+ I
733
+ 0
734
+ I
735
+ 23
736
+ I
737
+ 18
738
+ x
739
+ 92
740
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/slice.rb
741
+ p
742
+ 1
743
+ x
744
+ 3
745
+ key
746
+ x
747
+ 4
748
+ each
749
+ p
750
+ 9
751
+ I
752
+ -1
753
+ I
754
+ 21
755
+ I
756
+ 0
757
+ I
758
+ 22
759
+ I
760
+ a
761
+ I
762
+ 23
763
+ I
764
+ 12
765
+ I
766
+ 24
767
+ I
768
+ 15
769
+ x
770
+ 92
771
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/slice.rb
772
+ p
773
+ 2
774
+ x
775
+ 4
776
+ keys
777
+ x
778
+ 6
779
+ result
780
+ p
781
+ 7
782
+ I
783
+ 2
784
+ I
785
+ f
786
+ I
787
+ 10
788
+ I
789
+ 19
790
+ I
791
+ 1e
792
+ I
793
+ 21
794
+ I
795
+ 2c
796
+ x
797
+ 92
798
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/slice.rb
799
+ p
800
+ 0
801
+ x
802
+ 13
803
+ attach_method
804
+ p
805
+ 3
806
+ I
807
+ 0
808
+ I
809
+ 1
810
+ I
811
+ 1d
812
+ x
813
+ 92
814
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/slice.rb
815
+ p
816
+ 0