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,1922 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 65
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 5
23
+ 7
24
+ 2
25
+ 64
26
+ 47
27
+ 49
28
+ 1
29
+ 1
30
+ 15
31
+ 5
32
+ 7
33
+ 3
34
+ 64
35
+ 47
36
+ 49
37
+ 1
38
+ 1
39
+ 15
40
+ 5
41
+ 7
42
+ 4
43
+ 64
44
+ 47
45
+ 49
46
+ 1
47
+ 1
48
+ 15
49
+ 99
50
+ 7
51
+ 5
52
+ 1
53
+ 65
54
+ 49
55
+ 6
56
+ 3
57
+ 13
58
+ 99
59
+ 12
60
+ 7
61
+ 7
62
+ 12
63
+ 7
64
+ 8
65
+ 12
66
+ 65
67
+ 12
68
+ 49
69
+ 9
70
+ 4
71
+ 15
72
+ 49
73
+ 7
74
+ 0
75
+ 15
76
+ 2
77
+ 11
78
+ I
79
+ 6
80
+ I
81
+ 0
82
+ I
83
+ 0
84
+ I
85
+ 0
86
+ n
87
+ p
88
+ 10
89
+ s
90
+ 23
91
+ active_support/xml_mini
92
+ x
93
+ 7
94
+ require
95
+ s
96
+ 33
97
+ active_support/core_ext/hash/keys
98
+ s
99
+ 42
100
+ active_support/core_ext/hash/reverse_merge
101
+ s
102
+ 42
103
+ active_support/core_ext/string/inflections
104
+ x
105
+ 5
106
+ Array
107
+ x
108
+ 10
109
+ open_class
110
+ x
111
+ 14
112
+ __class_init__
113
+ M
114
+ 1
115
+ n
116
+ n
117
+ x
118
+ 5
119
+ Array
120
+ i
121
+ 64
122
+ 5
123
+ 66
124
+ 99
125
+ 7
126
+ 0
127
+ 7
128
+ 1
129
+ 65
130
+ 67
131
+ 49
132
+ 2
133
+ 0
134
+ 49
135
+ 3
136
+ 4
137
+ 15
138
+ 99
139
+ 7
140
+ 4
141
+ 7
142
+ 5
143
+ 65
144
+ 67
145
+ 49
146
+ 2
147
+ 0
148
+ 49
149
+ 3
150
+ 4
151
+ 15
152
+ 5
153
+ 7
154
+ 6
155
+ 7
156
+ 7
157
+ 47
158
+ 49
159
+ 8
160
+ 2
161
+ 15
162
+ 5
163
+ 7
164
+ 7
165
+ 7
166
+ 4
167
+ 47
168
+ 49
169
+ 8
170
+ 2
171
+ 15
172
+ 99
173
+ 7
174
+ 9
175
+ 7
176
+ 10
177
+ 65
178
+ 67
179
+ 49
180
+ 2
181
+ 0
182
+ 49
183
+ 3
184
+ 4
185
+ 11
186
+ I
187
+ 5
188
+ I
189
+ 0
190
+ I
191
+ 0
192
+ I
193
+ 0
194
+ n
195
+ p
196
+ 11
197
+ x
198
+ 11
199
+ to_sentence
200
+ M
201
+ 1
202
+ n
203
+ n
204
+ x
205
+ 11
206
+ to_sentence
207
+ i
208
+ 344
209
+ 23
210
+ 0
211
+ 10
212
+ 14
213
+ 44
214
+ 43
215
+ 0
216
+ 78
217
+ 49
218
+ 1
219
+ 1
220
+ 19
221
+ 0
222
+ 15
223
+ 26
224
+ 93
225
+ 0
226
+ 15
227
+ 29
228
+ 29
229
+ 0
230
+ 7
231
+ 2
232
+ 98
233
+ 3
234
+ 1
235
+ 30
236
+ 8
237
+ 35
238
+ 25
239
+ 92
240
+ 0
241
+ 27
242
+ 8
243
+ 40
244
+ 15
245
+ 7
246
+ 4
247
+ 8
248
+ 41
249
+ 1
250
+ 9
251
+ 140
252
+ 45
253
+ 2
254
+ 5
255
+ 7
256
+ 6
257
+ 44
258
+ 43
259
+ 0
260
+ 79
261
+ 49
262
+ 1
263
+ 1
264
+ 13
265
+ 7
266
+ 7
267
+ 20
268
+ 0
269
+ 7
270
+ 7
271
+ 49
272
+ 8
273
+ 1
274
+ 49
275
+ 9
276
+ 2
277
+ 15
278
+ 49
279
+ 10
280
+ 2
281
+ 19
282
+ 1
283
+ 15
284
+ 45
285
+ 2
286
+ 11
287
+ 7
288
+ 12
289
+ 44
290
+ 43
291
+ 0
292
+ 79
293
+ 49
294
+ 1
295
+ 1
296
+ 13
297
+ 7
298
+ 7
299
+ 20
300
+ 0
301
+ 7
302
+ 7
303
+ 49
304
+ 8
305
+ 1
306
+ 49
307
+ 9
308
+ 2
309
+ 15
310
+ 49
311
+ 10
312
+ 2
313
+ 19
314
+ 2
315
+ 15
316
+ 45
317
+ 2
318
+ 13
319
+ 7
320
+ 14
321
+ 44
322
+ 43
323
+ 0
324
+ 79
325
+ 49
326
+ 1
327
+ 1
328
+ 13
329
+ 7
330
+ 7
331
+ 20
332
+ 0
333
+ 7
334
+ 7
335
+ 49
336
+ 8
337
+ 1
338
+ 49
339
+ 9
340
+ 2
341
+ 15
342
+ 49
343
+ 10
344
+ 2
345
+ 19
346
+ 3
347
+ 8
348
+ 157
349
+ 7
350
+ 15
351
+ 64
352
+ 19
353
+ 1
354
+ 15
355
+ 7
356
+ 16
357
+ 64
358
+ 19
359
+ 2
360
+ 15
361
+ 7
362
+ 17
363
+ 64
364
+ 19
365
+ 3
366
+ 15
367
+ 20
368
+ 0
369
+ 7
370
+ 18
371
+ 7
372
+ 19
373
+ 7
374
+ 20
375
+ 7
376
+ 7
377
+ 49
378
+ 21
379
+ 4
380
+ 15
381
+ 20
382
+ 0
383
+ 44
384
+ 43
385
+ 0
386
+ 4
387
+ 3
388
+ 49
389
+ 1
390
+ 1
391
+ 13
392
+ 7
393
+ 18
394
+ 20
395
+ 1
396
+ 49
397
+ 9
398
+ 2
399
+ 15
400
+ 13
401
+ 7
402
+ 19
403
+ 20
404
+ 2
405
+ 49
406
+ 9
407
+ 2
408
+ 15
409
+ 13
410
+ 7
411
+ 20
412
+ 20
413
+ 3
414
+ 49
415
+ 9
416
+ 2
417
+ 15
418
+ 49
419
+ 22
420
+ 1
421
+ 15
422
+ 5
423
+ 48
424
+ 23
425
+ 13
426
+ 78
427
+ 12
428
+ 49
429
+ 24
430
+ 1
431
+ 9
432
+ 230
433
+ 15
434
+ 7
435
+ 25
436
+ 64
437
+ 8
438
+ 343
439
+ 13
440
+ 79
441
+ 12
442
+ 49
443
+ 24
444
+ 1
445
+ 9
446
+ 253
447
+ 15
448
+ 5
449
+ 78
450
+ 47
451
+ 49
452
+ 8
453
+ 1
454
+ 49
455
+ 26
456
+ 0
457
+ 49
458
+ 27
459
+ 0
460
+ 8
461
+ 343
462
+ 13
463
+ 80
464
+ 12
465
+ 49
466
+ 24
467
+ 1
468
+ 9
469
+ 294
470
+ 15
471
+ 5
472
+ 78
473
+ 47
474
+ 49
475
+ 8
476
+ 1
477
+ 47
478
+ 101
479
+ 26
480
+ 20
481
+ 0
482
+ 7
483
+ 19
484
+ 49
485
+ 8
486
+ 1
487
+ 47
488
+ 101
489
+ 26
490
+ 5
491
+ 79
492
+ 47
493
+ 49
494
+ 8
495
+ 1
496
+ 47
497
+ 101
498
+ 26
499
+ 63
500
+ 3
501
+ 8
502
+ 343
503
+ 15
504
+ 5
505
+ 44
506
+ 43
507
+ 28
508
+ 78
509
+ 77
510
+ 2
511
+ 49
512
+ 29
513
+ 3
514
+ 47
515
+ 49
516
+ 8
517
+ 1
518
+ 20
519
+ 0
520
+ 7
521
+ 18
522
+ 49
523
+ 8
524
+ 1
525
+ 49
526
+ 30
527
+ 1
528
+ 47
529
+ 101
530
+ 26
531
+ 20
532
+ 0
533
+ 7
534
+ 20
535
+ 49
536
+ 8
537
+ 1
538
+ 47
539
+ 101
540
+ 26
541
+ 5
542
+ 77
543
+ 47
544
+ 49
545
+ 8
546
+ 1
547
+ 47
548
+ 101
549
+ 26
550
+ 63
551
+ 3
552
+ 11
553
+ I
554
+ c
555
+ I
556
+ 4
557
+ I
558
+ 0
559
+ I
560
+ 1
561
+ n
562
+ p
563
+ 31
564
+ x
565
+ 4
566
+ Hash
567
+ x
568
+ 16
569
+ new_from_literal
570
+ x
571
+ 4
572
+ I18n
573
+ x
574
+ 16
575
+ vm_const_defined
576
+ s
577
+ 8
578
+ constant
579
+ n
580
+ x
581
+ 29
582
+ support.array.words_connector
583
+ x
584
+ 6
585
+ locale
586
+ x
587
+ 2
588
+ []
589
+ x
590
+ 3
591
+ []=
592
+ x
593
+ 9
594
+ translate
595
+ n
596
+ x
597
+ 33
598
+ support.array.two_words_connector
599
+ n
600
+ x
601
+ 33
602
+ support.array.last_word_connector
603
+ s
604
+ 2
605
+ ,
606
+ s
607
+ 5
608
+ and
609
+ s
610
+ 6
611
+ , and
612
+ x
613
+ 15
614
+ words_connector
615
+ x
616
+ 19
617
+ two_words_connector
618
+ x
619
+ 19
620
+ last_word_connector
621
+ x
622
+ 17
623
+ assert_valid_keys
624
+ x
625
+ 14
626
+ reverse_merge!
627
+ x
628
+ 6
629
+ length
630
+ x
631
+ 3
632
+ ===
633
+ s
634
+ 0
635
+
636
+ x
637
+ 4
638
+ to_s
639
+ x
640
+ 3
641
+ dup
642
+ x
643
+ 5
644
+ Range
645
+ x
646
+ 3
647
+ new
648
+ x
649
+ 4
650
+ join
651
+ p
652
+ 37
653
+ I
654
+ -1
655
+ I
656
+ b
657
+ I
658
+ e
659
+ I
660
+ c
661
+ I
662
+ 2b
663
+ I
664
+ d
665
+ I
666
+ 4b
667
+ I
668
+ e
669
+ I
670
+ 6b
671
+ I
672
+ f
673
+ I
674
+ 8c
675
+ I
676
+ 11
677
+ I
678
+ 92
679
+ I
680
+ 12
681
+ I
682
+ 98
683
+ I
684
+ 13
685
+ I
686
+ 9e
687
+ I
688
+ 16
689
+ I
690
+ ac
691
+ I
692
+ 17
693
+ I
694
+ d5
695
+ I
696
+ 19
697
+ I
698
+ d8
699
+ I
700
+ 1a
701
+ I
702
+ e1
703
+ I
704
+ 1b
705
+ I
706
+ e6
707
+ I
708
+ 1c
709
+ I
710
+ ef
711
+ I
712
+ 1d
713
+ I
714
+ fd
715
+ I
716
+ 1e
717
+ I
718
+ 106
719
+ I
720
+ 1f
721
+ I
722
+ 127
723
+ I
724
+ 21
725
+ I
726
+ 158
727
+ x
728
+ 99
729
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/array/conversions.rb
730
+ p
731
+ 4
732
+ x
733
+ 7
734
+ options
735
+ x
736
+ 23
737
+ default_words_connector
738
+ x
739
+ 27
740
+ default_two_words_connector
741
+ x
742
+ 27
743
+ default_last_word_connector
744
+ x
745
+ 17
746
+ method_visibility
747
+ x
748
+ 15
749
+ add_defn_method
750
+ x
751
+ 14
752
+ to_formatted_s
753
+ M
754
+ 1
755
+ n
756
+ n
757
+ x
758
+ 14
759
+ to_formatted_s
760
+ i
761
+ 63
762
+ 23
763
+ 0
764
+ 10
765
+ 9
766
+ 7
767
+ 0
768
+ 19
769
+ 0
770
+ 15
771
+ 20
772
+ 0
773
+ 13
774
+ 7
775
+ 1
776
+ 12
777
+ 49
778
+ 2
779
+ 1
780
+ 9
781
+ 58
782
+ 15
783
+ 5
784
+ 7
785
+ 3
786
+ 47
787
+ 49
788
+ 4
789
+ 1
790
+ 13
791
+ 9
792
+ 36
793
+ 15
794
+ 5
795
+ 49
796
+ 3
797
+ 0
798
+ 9
799
+ 43
800
+ 7
801
+ 5
802
+ 64
803
+ 8
804
+ 56
805
+ 5
806
+ 56
807
+ 6
808
+ 47
809
+ 50
810
+ 7
811
+ 0
812
+ 7
813
+ 8
814
+ 64
815
+ 49
816
+ 9
817
+ 1
818
+ 8
819
+ 62
820
+ 15
821
+ 5
822
+ 48
823
+ 10
824
+ 11
825
+ I
826
+ 4
827
+ I
828
+ 1
829
+ I
830
+ 0
831
+ I
832
+ 1
833
+ n
834
+ p
835
+ 11
836
+ x
837
+ 7
838
+ default
839
+ x
840
+ 2
841
+ db
842
+ x
843
+ 3
844
+ ===
845
+ x
846
+ 6
847
+ empty?
848
+ x
849
+ 11
850
+ respond_to?
851
+ s
852
+ 4
853
+ null
854
+ M
855
+ 1
856
+ p
857
+ 2
858
+ x
859
+ 9
860
+ for_block
861
+ t
862
+ n
863
+ x
864
+ 14
865
+ to_formatted_s
866
+ i
867
+ 10
868
+ 57
869
+ 19
870
+ 0
871
+ 15
872
+ 20
873
+ 0
874
+ 49
875
+ 0
876
+ 0
877
+ 11
878
+ I
879
+ 3
880
+ I
881
+ 1
882
+ I
883
+ 1
884
+ I
885
+ 1
886
+ n
887
+ p
888
+ 1
889
+ x
890
+ 2
891
+ id
892
+ p
893
+ 3
894
+ I
895
+ 0
896
+ I
897
+ 34
898
+ I
899
+ a
900
+ x
901
+ 99
902
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/array/conversions.rb
903
+ p
904
+ 1
905
+ x
906
+ 7
907
+ element
908
+ x
909
+ 7
910
+ collect
911
+ s
912
+ 1
913
+ ,
914
+ x
915
+ 4
916
+ join
917
+ x
918
+ 12
919
+ to_default_s
920
+ p
921
+ 15
922
+ I
923
+ -1
924
+ I
925
+ 2e
926
+ I
927
+ 9
928
+ I
929
+ 2f
930
+ I
931
+ b
932
+ I
933
+ 30
934
+ I
935
+ 15
936
+ I
937
+ 31
938
+ I
939
+ 26
940
+ I
941
+ 32
942
+ I
943
+ 2b
944
+ I
945
+ 34
946
+ I
947
+ 3b
948
+ I
949
+ 37
950
+ I
951
+ 3f
952
+ x
953
+ 99
954
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/array/conversions.rb
955
+ p
956
+ 1
957
+ x
958
+ 6
959
+ format
960
+ x
961
+ 12
962
+ to_default_s
963
+ x
964
+ 4
965
+ to_s
966
+ x
967
+ 12
968
+ alias_method
969
+ x
970
+ 6
971
+ to_xml
972
+ M
973
+ 1
974
+ n
975
+ n
976
+ x
977
+ 6
978
+ to_xml
979
+ i
980
+ 433
981
+ 23
982
+ 0
983
+ 10
984
+ 14
985
+ 44
986
+ 43
987
+ 0
988
+ 78
989
+ 49
990
+ 1
991
+ 1
992
+ 19
993
+ 0
994
+ 15
995
+ 26
996
+ 93
997
+ 0
998
+ 15
999
+ 29
1000
+ 29
1001
+ 0
1002
+ 7
1003
+ 2
1004
+ 98
1005
+ 3
1006
+ 1
1007
+ 30
1008
+ 8
1009
+ 35
1010
+ 25
1011
+ 92
1012
+ 0
1013
+ 27
1014
+ 8
1015
+ 40
1016
+ 15
1017
+ 7
1018
+ 4
1019
+ 8
1020
+ 41
1021
+ 1
1022
+ 9
1023
+ 46
1024
+ 1
1025
+ 8
1026
+ 54
1027
+ 5
1028
+ 7
1029
+ 5
1030
+ 64
1031
+ 47
1032
+ 49
1033
+ 6
1034
+ 1
1035
+ 15
1036
+ 20
1037
+ 0
1038
+ 49
1039
+ 7
1040
+ 0
1041
+ 19
1042
+ 0
1043
+ 15
1044
+ 20
1045
+ 0
1046
+ 7
1047
+ 8
1048
+ 14
1049
+ 2
1050
+ 49
1051
+ 9
1052
+ 1
1053
+ 13
1054
+ 10
1055
+ 86
1056
+ 15
1057
+ 80
1058
+ 13
1059
+ 18
1060
+ 3
1061
+ 49
1062
+ 10
1063
+ 2
1064
+ 15
1065
+ 8
1066
+ 90
1067
+ 18
1068
+ 2
1069
+ 16
1070
+ 2
1071
+ 15
1072
+ 20
1073
+ 0
1074
+ 7
1075
+ 11
1076
+ 14
1077
+ 2
1078
+ 49
1079
+ 9
1080
+ 1
1081
+ 13
1082
+ 10
1083
+ 181
1084
+ 15
1085
+ 45
1086
+ 2
1087
+ 12
1088
+ 43
1089
+ 13
1090
+ 13
1091
+ 71
1092
+ 14
1093
+ 47
1094
+ 9
1095
+ 148
1096
+ 47
1097
+ 49
1098
+ 15
1099
+ 0
1100
+ 13
1101
+ 44
1102
+ 43
1103
+ 0
1104
+ 79
1105
+ 49
1106
+ 1
1107
+ 1
1108
+ 13
1109
+ 7
1110
+ 8
1111
+ 20
1112
+ 0
1113
+ 7
1114
+ 8
1115
+ 49
1116
+ 9
1117
+ 1
1118
+ 49
1119
+ 10
1120
+ 2
1121
+ 15
1122
+ 47
1123
+ 49
1124
+ 16
1125
+ 1
1126
+ 15
1127
+ 8
1128
+ 172
1129
+ 44
1130
+ 43
1131
+ 0
1132
+ 79
1133
+ 49
1134
+ 1
1135
+ 1
1136
+ 13
1137
+ 7
1138
+ 8
1139
+ 20
1140
+ 0
1141
+ 7
1142
+ 8
1143
+ 49
1144
+ 9
1145
+ 1
1146
+ 49
1147
+ 10
1148
+ 2
1149
+ 15
1150
+ 49
1151
+ 14
1152
+ 1
1153
+ 13
1154
+ 18
1155
+ 3
1156
+ 49
1157
+ 10
1158
+ 2
1159
+ 15
1160
+ 8
1161
+ 185
1162
+ 18
1163
+ 2
1164
+ 16
1165
+ 2
1166
+ 15
1167
+ 20
1168
+ 0
1169
+ 7
1170
+ 17
1171
+ 14
1172
+ 2
1173
+ 49
1174
+ 9
1175
+ 1
1176
+ 13
1177
+ 10
1178
+ 285
1179
+ 15
1180
+ 5
1181
+ 48
1182
+ 18
1183
+ 49
1184
+ 19
1185
+ 0
1186
+ 49
1187
+ 20
1188
+ 0
1189
+ 7
1190
+ 21
1191
+ 64
1192
+ 83
1193
+ 22
1194
+ 10
1195
+ 218
1196
+ 2
1197
+ 8
1198
+ 219
1199
+ 3
1200
+ 13
1201
+ 9
1202
+ 230
1203
+ 15
1204
+ 5
1205
+ 56
1206
+ 23
1207
+ 47
1208
+ 50
1209
+ 24
1210
+ 0
1211
+ 9
1212
+ 273
1213
+ 45
1214
+ 25
1215
+ 26
1216
+ 43
1217
+ 27
1218
+ 5
1219
+ 48
1220
+ 18
1221
+ 49
1222
+ 19
1223
+ 0
1224
+ 49
1225
+ 28
1226
+ 0
1227
+ 49
1228
+ 29
1229
+ 1
1230
+ 19
1231
+ 1
1232
+ 15
1233
+ 45
1234
+ 25
1235
+ 30
1236
+ 43
1237
+ 27
1238
+ 20
1239
+ 1
1240
+ 49
1241
+ 31
1242
+ 1
1243
+ 7
1244
+ 32
1245
+ 64
1246
+ 7
1247
+ 33
1248
+ 64
1249
+ 49
1250
+ 34
1251
+ 2
1252
+ 8
1253
+ 276
1254
+ 7
1255
+ 35
1256
+ 64
1257
+ 13
1258
+ 18
1259
+ 3
1260
+ 49
1261
+ 10
1262
+ 2
1263
+ 15
1264
+ 8
1265
+ 289
1266
+ 18
1267
+ 2
1268
+ 16
1269
+ 2
1270
+ 15
1271
+ 20
1272
+ 0
1273
+ 7
1274
+ 11
1275
+ 49
1276
+ 9
1277
+ 1
1278
+ 19
1279
+ 2
1280
+ 15
1281
+ 20
1282
+ 0
1283
+ 7
1284
+ 36
1285
+ 49
1286
+ 37
1287
+ 1
1288
+ 9
1289
+ 312
1290
+ 1
1291
+ 8
1292
+ 317
1293
+ 20
1294
+ 2
1295
+ 49
1296
+ 38
1297
+ 0
1298
+ 15
1299
+ 45
1300
+ 25
1301
+ 39
1302
+ 43
1303
+ 40
1304
+ 20
1305
+ 0
1306
+ 7
1307
+ 17
1308
+ 49
1309
+ 9
1310
+ 1
1311
+ 49
1312
+ 20
1313
+ 0
1314
+ 20
1315
+ 0
1316
+ 49
1317
+ 41
1318
+ 2
1319
+ 19
1320
+ 3
1321
+ 15
1322
+ 20
1323
+ 0
1324
+ 7
1325
+ 42
1326
+ 49
1327
+ 37
1328
+ 1
1329
+ 13
1330
+ 10
1331
+ 357
1332
+ 15
1333
+ 20
1334
+ 3
1335
+ 49
1336
+ 43
1337
+ 0
1338
+ 19
1339
+ 4
1340
+ 15
1341
+ 20
1342
+ 0
1343
+ 7
1344
+ 44
1345
+ 49
1346
+ 9
1347
+ 1
1348
+ 9
1349
+ 378
1350
+ 44
1351
+ 43
1352
+ 0
1353
+ 78
1354
+ 49
1355
+ 1
1356
+ 1
1357
+ 8
1358
+ 395
1359
+ 44
1360
+ 43
1361
+ 0
1362
+ 79
1363
+ 49
1364
+ 1
1365
+ 1
1366
+ 13
1367
+ 7
1368
+ 45
1369
+ 7
1370
+ 46
1371
+ 64
1372
+ 49
1373
+ 10
1374
+ 2
1375
+ 15
1376
+ 19
1377
+ 5
1378
+ 15
1379
+ 5
1380
+ 47
1381
+ 49
1382
+ 47
1383
+ 0
1384
+ 9
1385
+ 417
1386
+ 20
1387
+ 2
1388
+ 20
1389
+ 3
1390
+ 20
1391
+ 5
1392
+ 49
1393
+ 48
1394
+ 2
1395
+ 11
1396
+ 8
1397
+ 418
1398
+ 1
1399
+ 15
1400
+ 20
1401
+ 2
1402
+ 7
1403
+ 49
1404
+ 20
1405
+ 3
1406
+ 20
1407
+ 5
1408
+ 56
1409
+ 50
1410
+ 50
1411
+ 51
1412
+ 3
1413
+ 11
1414
+ I
1415
+ 10
1416
+ I
1417
+ 6
1418
+ I
1419
+ 0
1420
+ I
1421
+ 1
1422
+ n
1423
+ p
1424
+ 52
1425
+ x
1426
+ 4
1427
+ Hash
1428
+ x
1429
+ 16
1430
+ new_from_literal
1431
+ x
1432
+ 7
1433
+ Builder
1434
+ x
1435
+ 16
1436
+ vm_const_defined
1437
+ s
1438
+ 8
1439
+ constant
1440
+ s
1441
+ 22
1442
+ active_support/builder
1443
+ x
1444
+ 7
1445
+ require
1446
+ x
1447
+ 3
1448
+ dup
1449
+ x
1450
+ 6
1451
+ indent
1452
+ x
1453
+ 2
1454
+ []
1455
+ x
1456
+ 3
1457
+ []=
1458
+ x
1459
+ 7
1460
+ builder
1461
+ n
1462
+ x
1463
+ 9
1464
+ XmlMarkup
1465
+ x
1466
+ 3
1467
+ new
1468
+ x
1469
+ 8
1470
+ allocate
1471
+ x
1472
+ 10
1473
+ initialize
1474
+ x
1475
+ 4
1476
+ root
1477
+ x
1478
+ 5
1479
+ first
1480
+ x
1481
+ 5
1482
+ class
1483
+ x
1484
+ 4
1485
+ to_s
1486
+ s
1487
+ 4
1488
+ Hash
1489
+ x
1490
+ 2
1491
+ ==
1492
+ M
1493
+ 1
1494
+ p
1495
+ 2
1496
+ x
1497
+ 9
1498
+ for_block
1499
+ t
1500
+ n
1501
+ x
1502
+ 6
1503
+ to_xml
1504
+ i
1505
+ 16
1506
+ 57
1507
+ 19
1508
+ 0
1509
+ 15
1510
+ 20
1511
+ 0
1512
+ 5
1513
+ 48
1514
+ 0
1515
+ 49
1516
+ 1
1517
+ 0
1518
+ 49
1519
+ 2
1520
+ 1
1521
+ 11
1522
+ I
1523
+ 4
1524
+ I
1525
+ 1
1526
+ I
1527
+ 1
1528
+ I
1529
+ 1
1530
+ n
1531
+ p
1532
+ 3
1533
+ x
1534
+ 5
1535
+ first
1536
+ x
1537
+ 5
1538
+ class
1539
+ x
1540
+ 5
1541
+ is_a?
1542
+ p
1543
+ 3
1544
+ I
1545
+ 0
1546
+ I
1547
+ 8e
1548
+ I
1549
+ 10
1550
+ x
1551
+ 99
1552
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/array/conversions.rb
1553
+ p
1554
+ 1
1555
+ x
1556
+ 1
1557
+ e
1558
+ x
1559
+ 4
1560
+ all?
1561
+ x
1562
+ 13
1563
+ ActiveSupport
1564
+ n
1565
+ x
1566
+ 9
1567
+ Inflector
1568
+ x
1569
+ 4
1570
+ name
1571
+ x
1572
+ 10
1573
+ underscore
1574
+ n
1575
+ x
1576
+ 9
1577
+ pluralize
1578
+ s
1579
+ 1
1580
+ /
1581
+ s
1582
+ 1
1583
+ _
1584
+ x
1585
+ 2
1586
+ tr
1587
+ s
1588
+ 7
1589
+ objects
1590
+ x
1591
+ 13
1592
+ skip_instruct
1593
+ x
1594
+ 6
1595
+ delete
1596
+ x
1597
+ 9
1598
+ instruct!
1599
+ n
1600
+ x
1601
+ 7
1602
+ XmlMini
1603
+ x
1604
+ 10
1605
+ rename_key
1606
+ x
1607
+ 8
1608
+ children
1609
+ x
1610
+ 11
1611
+ singularize
1612
+ x
1613
+ 10
1614
+ skip_types
1615
+ x
1616
+ 4
1617
+ type
1618
+ s
1619
+ 5
1620
+ array
1621
+ x
1622
+ 6
1623
+ empty?
1624
+ x
1625
+ 4
1626
+ tag!
1627
+ x
1628
+ 14
1629
+ method_missing
1630
+ M
1631
+ 1
1632
+ p
1633
+ 2
1634
+ x
1635
+ 9
1636
+ for_block
1637
+ t
1638
+ n
1639
+ x
1640
+ 6
1641
+ to_xml
1642
+ i
1643
+ 20
1644
+ 5
1645
+ 56
1646
+ 0
1647
+ 47
1648
+ 50
1649
+ 1
1650
+ 0
1651
+ 15
1652
+ 94
1653
+ 9
1654
+ 18
1655
+ 21
1656
+ 1
1657
+ 2
1658
+ 60
1659
+ 1
1660
+ 8
1661
+ 19
1662
+ 1
1663
+ 11
1664
+ I
1665
+ 3
1666
+ I
1667
+ 0
1668
+ I
1669
+ 0
1670
+ I
1671
+ 0
1672
+ I
1673
+ -2
1674
+ p
1675
+ 2
1676
+ M
1677
+ 1
1678
+ p
1679
+ 2
1680
+ x
1681
+ 9
1682
+ for_block
1683
+ t
1684
+ n
1685
+ x
1686
+ 6
1687
+ to_xml
1688
+ i
1689
+ 21
1690
+ 57
1691
+ 19
1692
+ 0
1693
+ 15
1694
+ 45
1695
+ 0
1696
+ 1
1697
+ 43
1698
+ 2
1699
+ 21
1700
+ 2
1701
+ 4
1702
+ 20
1703
+ 0
1704
+ 21
1705
+ 2
1706
+ 0
1707
+ 49
1708
+ 3
1709
+ 3
1710
+ 11
1711
+ I
1712
+ 6
1713
+ I
1714
+ 1
1715
+ I
1716
+ 1
1717
+ I
1718
+ 1
1719
+ n
1720
+ p
1721
+ 4
1722
+ x
1723
+ 13
1724
+ ActiveSupport
1725
+ n
1726
+ x
1727
+ 7
1728
+ XmlMini
1729
+ x
1730
+ 6
1731
+ to_tag
1732
+ p
1733
+ 3
1734
+ I
1735
+ 0
1736
+ I
1737
+ 9f
1738
+ I
1739
+ 15
1740
+ x
1741
+ 99
1742
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/array/conversions.rb
1743
+ p
1744
+ 1
1745
+ x
1746
+ 5
1747
+ value
1748
+ x
1749
+ 4
1750
+ each
1751
+ p
1752
+ 5
1753
+ I
1754
+ 0
1755
+ I
1756
+ 9f
1757
+ I
1758
+ 8
1759
+ I
1760
+ a0
1761
+ I
1762
+ 14
1763
+ x
1764
+ 99
1765
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/array/conversions.rb
1766
+ p
1767
+ 0
1768
+ x
1769
+ 8
1770
+ __send__
1771
+ p
1772
+ 33
1773
+ I
1774
+ -1
1775
+ I
1776
+ 88
1777
+ I
1778
+ e
1779
+ I
1780
+ 89
1781
+ I
1782
+ 37
1783
+ I
1784
+ 8b
1785
+ I
1786
+ 3f
1787
+ I
1788
+ 8c
1789
+ I
1790
+ 5b
1791
+ I
1792
+ 8d
1793
+ I
1794
+ ba
1795
+ I
1796
+ 8e
1797
+ I
1798
+ e8
1799
+ I
1800
+ 8f
1801
+ I
1802
+ fc
1803
+ I
1804
+ 90
1805
+ I
1806
+ 111
1807
+ I
1808
+ 92
1809
+ I
1810
+ 122
1811
+ I
1812
+ 95
1813
+ I
1814
+ 12c
1815
+ I
1816
+ 96
1817
+ I
1818
+ 13e
1819
+ I
1820
+ 98
1821
+ I
1822
+ 155
1823
+ I
1824
+ 99
1825
+ I
1826
+ 168
1827
+ I
1828
+ 9b
1829
+ I
1830
+ 18e
1831
+ I
1832
+ 9c
1833
+ I
1834
+ 1a3
1835
+ I
1836
+ 9e
1837
+ I
1838
+ 1b1
1839
+ x
1840
+ 99
1841
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/array/conversions.rb
1842
+ p
1843
+ 6
1844
+ x
1845
+ 7
1846
+ options
1847
+ x
1848
+ 11
1849
+ underscored
1850
+ x
1851
+ 7
1852
+ builder
1853
+ x
1854
+ 4
1855
+ root
1856
+ x
1857
+ 8
1858
+ children
1859
+ x
1860
+ 10
1861
+ attributes
1862
+ p
1863
+ 11
1864
+ I
1865
+ 2
1866
+ I
1867
+ b
1868
+ I
1869
+ 10
1870
+ I
1871
+ 2e
1872
+ I
1873
+ 1e
1874
+ I
1875
+ 3a
1876
+ I
1877
+ 28
1878
+ I
1879
+ 3b
1880
+ I
1881
+ 32
1882
+ I
1883
+ 88
1884
+ I
1885
+ 40
1886
+ x
1887
+ 99
1888
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/array/conversions.rb
1889
+ p
1890
+ 0
1891
+ x
1892
+ 13
1893
+ attach_method
1894
+ p
1895
+ 11
1896
+ I
1897
+ 0
1898
+ I
1899
+ 1
1900
+ I
1901
+ 9
1902
+ I
1903
+ 2
1904
+ I
1905
+ 12
1906
+ I
1907
+ 3
1908
+ I
1909
+ 1b
1910
+ I
1911
+ 4
1912
+ I
1913
+ 24
1914
+ I
1915
+ 6
1916
+ I
1917
+ 41
1918
+ x
1919
+ 99
1920
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/array/conversions.rb
1921
+ p
1922
+ 0