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