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,409 @@
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
+ 30
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
+ 11
101
+ I
102
+ 5
103
+ I
104
+ 0
105
+ I
106
+ 0
107
+ I
108
+ 0
109
+ n
110
+ p
111
+ 6
112
+ x
113
+ 10
114
+ deep_merge
115
+ M
116
+ 1
117
+ n
118
+ n
119
+ x
120
+ 10
121
+ deep_merge
122
+ i
123
+ 9
124
+ 5
125
+ 48
126
+ 0
127
+ 20
128
+ 0
129
+ 49
130
+ 1
131
+ 1
132
+ 11
133
+ I
134
+ 3
135
+ I
136
+ 1
137
+ I
138
+ 1
139
+ I
140
+ 1
141
+ n
142
+ p
143
+ 2
144
+ x
145
+ 3
146
+ dup
147
+ x
148
+ 11
149
+ deep_merge!
150
+ p
151
+ 5
152
+ I
153
+ -1
154
+ I
155
+ 3
156
+ I
157
+ 0
158
+ I
159
+ 4
160
+ I
161
+ 9
162
+ x
163
+ 97
164
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/deep_merge.rb
165
+ p
166
+ 1
167
+ x
168
+ 10
169
+ other_hash
170
+ x
171
+ 17
172
+ method_visibility
173
+ x
174
+ 15
175
+ add_defn_method
176
+ x
177
+ 11
178
+ deep_merge!
179
+ M
180
+ 1
181
+ n
182
+ n
183
+ x
184
+ 11
185
+ deep_merge!
186
+ i
187
+ 10
188
+ 20
189
+ 0
190
+ 56
191
+ 0
192
+ 50
193
+ 1
194
+ 0
195
+ 15
196
+ 5
197
+ 11
198
+ I
199
+ 3
200
+ I
201
+ 1
202
+ I
203
+ 1
204
+ I
205
+ 1
206
+ n
207
+ p
208
+ 2
209
+ M
210
+ 1
211
+ p
212
+ 2
213
+ x
214
+ 9
215
+ for_block
216
+ t
217
+ n
218
+ x
219
+ 11
220
+ deep_merge!
221
+ i
222
+ 65
223
+ 58
224
+ 37
225
+ 19
226
+ 0
227
+ 15
228
+ 37
229
+ 19
230
+ 1
231
+ 15
232
+ 15
233
+ 5
234
+ 20
235
+ 0
236
+ 47
237
+ 49
238
+ 0
239
+ 1
240
+ 19
241
+ 2
242
+ 15
243
+ 5
244
+ 20
245
+ 0
246
+ 20
247
+ 2
248
+ 45
249
+ 1
250
+ 2
251
+ 49
252
+ 3
253
+ 1
254
+ 13
255
+ 9
256
+ 43
257
+ 15
258
+ 20
259
+ 1
260
+ 45
261
+ 1
262
+ 4
263
+ 49
264
+ 3
265
+ 1
266
+ 9
267
+ 54
268
+ 20
269
+ 2
270
+ 20
271
+ 1
272
+ 49
273
+ 5
274
+ 1
275
+ 8
276
+ 56
277
+ 20
278
+ 1
279
+ 13
280
+ 18
281
+ 3
282
+ 47
283
+ 49
284
+ 6
285
+ 2
286
+ 15
287
+ 11
288
+ I
289
+ 8
290
+ I
291
+ 3
292
+ I
293
+ 2
294
+ I
295
+ 2
296
+ n
297
+ p
298
+ 7
299
+ x
300
+ 2
301
+ []
302
+ x
303
+ 4
304
+ Hash
305
+ n
306
+ x
307
+ 5
308
+ is_a?
309
+ n
310
+ x
311
+ 10
312
+ deep_merge
313
+ x
314
+ 3
315
+ []=
316
+ p
317
+ 9
318
+ I
319
+ 0
320
+ I
321
+ a
322
+ I
323
+ a
324
+ I
325
+ b
326
+ I
327
+ 14
328
+ I
329
+ 10
330
+ I
331
+ 15
332
+ I
333
+ c
334
+ I
335
+ 41
336
+ x
337
+ 97
338
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/deep_merge.rb
339
+ p
340
+ 3
341
+ x
342
+ 1
343
+ k
344
+ x
345
+ 1
346
+ v
347
+ x
348
+ 2
349
+ tv
350
+ x
351
+ 9
352
+ each_pair
353
+ p
354
+ 7
355
+ I
356
+ -1
357
+ I
358
+ 9
359
+ I
360
+ 0
361
+ I
362
+ a
363
+ I
364
+ 8
365
+ I
366
+ e
367
+ I
368
+ a
369
+ x
370
+ 97
371
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/deep_merge.rb
372
+ p
373
+ 1
374
+ x
375
+ 10
376
+ other_hash
377
+ p
378
+ 5
379
+ I
380
+ 2
381
+ I
382
+ 3
383
+ I
384
+ 10
385
+ I
386
+ 9
387
+ I
388
+ 1e
389
+ x
390
+ 97
391
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/deep_merge.rb
392
+ p
393
+ 0
394
+ x
395
+ 13
396
+ attach_method
397
+ p
398
+ 3
399
+ I
400
+ 0
401
+ I
402
+ 1
403
+ I
404
+ 1d
405
+ x
406
+ 97
407
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/deep_merge.rb
408
+ p
409
+ 0
@@ -0,0 +1,344 @@
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
+ 16
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
+ 11
87
+ I
88
+ 5
89
+ I
90
+ 0
91
+ I
92
+ 0
93
+ I
94
+ 0
95
+ n
96
+ p
97
+ 4
98
+ x
99
+ 4
100
+ diff
101
+ M
102
+ 1
103
+ n
104
+ n
105
+ x
106
+ 4
107
+ diff
108
+ i
109
+ 22
110
+ 5
111
+ 48
112
+ 0
113
+ 56
114
+ 1
115
+ 50
116
+ 2
117
+ 0
118
+ 20
119
+ 0
120
+ 49
121
+ 0
122
+ 0
123
+ 56
124
+ 3
125
+ 50
126
+ 2
127
+ 0
128
+ 49
129
+ 4
130
+ 1
131
+ 11
132
+ I
133
+ 4
134
+ I
135
+ 1
136
+ I
137
+ 1
138
+ I
139
+ 1
140
+ n
141
+ p
142
+ 5
143
+ x
144
+ 3
145
+ dup
146
+ M
147
+ 1
148
+ p
149
+ 2
150
+ x
151
+ 9
152
+ for_block
153
+ t
154
+ n
155
+ x
156
+ 4
157
+ diff
158
+ i
159
+ 23
160
+ 58
161
+ 37
162
+ 19
163
+ 0
164
+ 15
165
+ 37
166
+ 19
167
+ 1
168
+ 15
169
+ 15
170
+ 21
171
+ 1
172
+ 0
173
+ 20
174
+ 0
175
+ 49
176
+ 0
177
+ 1
178
+ 20
179
+ 1
180
+ 83
181
+ 1
182
+ 11
183
+ I
184
+ 5
185
+ I
186
+ 2
187
+ I
188
+ 2
189
+ I
190
+ 2
191
+ n
192
+ p
193
+ 2
194
+ x
195
+ 2
196
+ []
197
+ x
198
+ 2
199
+ ==
200
+ p
201
+ 3
202
+ I
203
+ 0
204
+ I
205
+ b
206
+ I
207
+ 17
208
+ x
209
+ 91
210
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
211
+ p
212
+ 2
213
+ x
214
+ 1
215
+ k
216
+ x
217
+ 1
218
+ v
219
+ x
220
+ 9
221
+ delete_if
222
+ M
223
+ 1
224
+ p
225
+ 2
226
+ x
227
+ 9
228
+ for_block
229
+ t
230
+ n
231
+ x
232
+ 4
233
+ diff
234
+ i
235
+ 18
236
+ 58
237
+ 37
238
+ 19
239
+ 0
240
+ 15
241
+ 37
242
+ 19
243
+ 1
244
+ 15
245
+ 15
246
+ 5
247
+ 20
248
+ 0
249
+ 47
250
+ 49
251
+ 0
252
+ 1
253
+ 11
254
+ I
255
+ 5
256
+ I
257
+ 2
258
+ I
259
+ 2
260
+ I
261
+ 2
262
+ n
263
+ p
264
+ 1
265
+ x
266
+ 8
267
+ has_key?
268
+ p
269
+ 3
270
+ I
271
+ 0
272
+ I
273
+ b
274
+ I
275
+ 12
276
+ x
277
+ 91
278
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
279
+ p
280
+ 2
281
+ x
282
+ 1
283
+ k
284
+ x
285
+ 1
286
+ v
287
+ x
288
+ 6
289
+ merge!
290
+ p
291
+ 5
292
+ I
293
+ -1
294
+ I
295
+ a
296
+ I
297
+ 0
298
+ I
299
+ b
300
+ I
301
+ 16
302
+ x
303
+ 91
304
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
305
+ p
306
+ 1
307
+ x
308
+ 2
309
+ h2
310
+ x
311
+ 17
312
+ method_visibility
313
+ x
314
+ 15
315
+ add_defn_method
316
+ p
317
+ 3
318
+ I
319
+ 2
320
+ I
321
+ a
322
+ I
323
+ 10
324
+ x
325
+ 91
326
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
327
+ p
328
+ 0
329
+ x
330
+ 13
331
+ attach_method
332
+ p
333
+ 3
334
+ I
335
+ 0
336
+ I
337
+ 1
338
+ I
339
+ 1d
340
+ x
341
+ 91
342
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/hash/diff.rb
343
+ p
344
+ 0