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,2432 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 55
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
+ 99
41
+ 7
42
+ 4
43
+ 65
44
+ 49
45
+ 5
46
+ 2
47
+ 13
48
+ 99
49
+ 12
50
+ 7
51
+ 6
52
+ 12
53
+ 7
54
+ 7
55
+ 12
56
+ 65
57
+ 12
58
+ 49
59
+ 8
60
+ 4
61
+ 15
62
+ 49
63
+ 6
64
+ 0
65
+ 15
66
+ 2
67
+ 11
68
+ I
69
+ 6
70
+ I
71
+ 0
72
+ I
73
+ 0
74
+ I
75
+ 0
76
+ n
77
+ p
78
+ 9
79
+ s
80
+ 27
81
+ active_support/basic_object
82
+ x
83
+ 7
84
+ require
85
+ s
86
+ 41
87
+ active_support/core_ext/array/conversions
88
+ s
89
+ 40
90
+ active_support/core_ext/object/acts_like
91
+ x
92
+ 13
93
+ ActiveSupport
94
+ x
95
+ 11
96
+ open_module
97
+ x
98
+ 15
99
+ __module_init__
100
+ M
101
+ 1
102
+ n
103
+ n
104
+ x
105
+ 13
106
+ ActiveSupport
107
+ i
108
+ 31
109
+ 5
110
+ 66
111
+ 99
112
+ 7
113
+ 0
114
+ 45
115
+ 1
116
+ 2
117
+ 65
118
+ 49
119
+ 3
120
+ 3
121
+ 13
122
+ 99
123
+ 12
124
+ 7
125
+ 4
126
+ 12
127
+ 7
128
+ 5
129
+ 12
130
+ 65
131
+ 12
132
+ 49
133
+ 6
134
+ 4
135
+ 15
136
+ 49
137
+ 4
138
+ 0
139
+ 11
140
+ I
141
+ 6
142
+ I
143
+ 0
144
+ I
145
+ 0
146
+ I
147
+ 0
148
+ n
149
+ p
150
+ 7
151
+ x
152
+ 8
153
+ Duration
154
+ x
155
+ 11
156
+ BasicObject
157
+ n
158
+ x
159
+ 10
160
+ open_class
161
+ x
162
+ 14
163
+ __class_init__
164
+ M
165
+ 1
166
+ n
167
+ n
168
+ x
169
+ 8
170
+ Duration
171
+ i
172
+ 215
173
+ 5
174
+ 66
175
+ 5
176
+ 7
177
+ 0
178
+ 7
179
+ 1
180
+ 47
181
+ 49
182
+ 2
183
+ 2
184
+ 15
185
+ 99
186
+ 7
187
+ 3
188
+ 7
189
+ 4
190
+ 65
191
+ 67
192
+ 49
193
+ 5
194
+ 0
195
+ 49
196
+ 6
197
+ 4
198
+ 15
199
+ 99
200
+ 7
201
+ 7
202
+ 7
203
+ 8
204
+ 65
205
+ 67
206
+ 49
207
+ 5
208
+ 0
209
+ 49
210
+ 6
211
+ 4
212
+ 15
213
+ 99
214
+ 7
215
+ 9
216
+ 7
217
+ 10
218
+ 65
219
+ 67
220
+ 49
221
+ 5
222
+ 0
223
+ 49
224
+ 6
225
+ 4
226
+ 15
227
+ 99
228
+ 7
229
+ 11
230
+ 7
231
+ 12
232
+ 65
233
+ 67
234
+ 49
235
+ 5
236
+ 0
237
+ 49
238
+ 6
239
+ 4
240
+ 15
241
+ 99
242
+ 7
243
+ 13
244
+ 7
245
+ 14
246
+ 65
247
+ 67
248
+ 49
249
+ 5
250
+ 0
251
+ 49
252
+ 6
253
+ 4
254
+ 15
255
+ 65
256
+ 7
257
+ 15
258
+ 7
259
+ 13
260
+ 47
261
+ 49
262
+ 16
263
+ 2
264
+ 15
265
+ 99
266
+ 7
267
+ 17
268
+ 7
269
+ 18
270
+ 65
271
+ 67
272
+ 49
273
+ 5
274
+ 0
275
+ 49
276
+ 6
277
+ 4
278
+ 15
279
+ 99
280
+ 7
281
+ 19
282
+ 7
283
+ 20
284
+ 65
285
+ 5
286
+ 49
287
+ 21
288
+ 4
289
+ 15
290
+ 99
291
+ 7
292
+ 22
293
+ 7
294
+ 23
295
+ 65
296
+ 67
297
+ 49
298
+ 5
299
+ 0
300
+ 49
301
+ 6
302
+ 4
303
+ 15
304
+ 65
305
+ 7
306
+ 24
307
+ 7
308
+ 22
309
+ 47
310
+ 49
311
+ 16
312
+ 2
313
+ 15
314
+ 99
315
+ 7
316
+ 25
317
+ 7
318
+ 26
319
+ 65
320
+ 67
321
+ 49
322
+ 5
323
+ 0
324
+ 49
325
+ 6
326
+ 4
327
+ 15
328
+ 65
329
+ 7
330
+ 27
331
+ 7
332
+ 25
333
+ 47
334
+ 49
335
+ 16
336
+ 2
337
+ 15
338
+ 99
339
+ 7
340
+ 28
341
+ 7
342
+ 29
343
+ 65
344
+ 67
345
+ 49
346
+ 5
347
+ 0
348
+ 49
349
+ 6
350
+ 4
351
+ 15
352
+ 5
353
+ 48
354
+ 30
355
+ 15
356
+ 99
357
+ 7
358
+ 31
359
+ 7
360
+ 32
361
+ 65
362
+ 67
363
+ 49
364
+ 5
365
+ 0
366
+ 49
367
+ 6
368
+ 4
369
+ 15
370
+ 5
371
+ 48
372
+ 33
373
+ 15
374
+ 99
375
+ 7
376
+ 34
377
+ 7
378
+ 35
379
+ 65
380
+ 67
381
+ 49
382
+ 5
383
+ 0
384
+ 49
385
+ 6
386
+ 4
387
+ 11
388
+ I
389
+ 5
390
+ I
391
+ 0
392
+ I
393
+ 0
394
+ I
395
+ 0
396
+ n
397
+ p
398
+ 36
399
+ x
400
+ 5
401
+ value
402
+ x
403
+ 5
404
+ parts
405
+ x
406
+ 13
407
+ attr_accessor
408
+ x
409
+ 10
410
+ initialize
411
+ M
412
+ 1
413
+ n
414
+ n
415
+ x
416
+ 10
417
+ initialize
418
+ i
419
+ 14
420
+ 20
421
+ 0
422
+ 20
423
+ 1
424
+ 17
425
+ 2
426
+ 38
427
+ 0
428
+ 15
429
+ 38
430
+ 1
431
+ 15
432
+ 2
433
+ 11
434
+ I
435
+ 4
436
+ I
437
+ 2
438
+ I
439
+ 2
440
+ I
441
+ 2
442
+ n
443
+ p
444
+ 2
445
+ x
446
+ 6
447
+ @value
448
+ x
449
+ 6
450
+ @parts
451
+ p
452
+ 5
453
+ I
454
+ -1
455
+ I
456
+ e
457
+ I
458
+ 0
459
+ I
460
+ f
461
+ I
462
+ e
463
+ x
464
+ 81
465
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
466
+ p
467
+ 2
468
+ x
469
+ 5
470
+ value
471
+ x
472
+ 5
473
+ parts
474
+ x
475
+ 17
476
+ method_visibility
477
+ x
478
+ 15
479
+ add_defn_method
480
+ x
481
+ 1
482
+ +
483
+ M
484
+ 1
485
+ n
486
+ n
487
+ x
488
+ 1
489
+ +
490
+ i
491
+ 136
492
+ 45
493
+ 0
494
+ 1
495
+ 20
496
+ 0
497
+ 86
498
+ 2
499
+ 9
500
+ 73
501
+ 45
502
+ 0
503
+ 3
504
+ 13
505
+ 71
506
+ 4
507
+ 47
508
+ 9
509
+ 49
510
+ 47
511
+ 49
512
+ 5
513
+ 0
514
+ 13
515
+ 5
516
+ 48
517
+ 6
518
+ 20
519
+ 0
520
+ 49
521
+ 6
522
+ 0
523
+ 81
524
+ 7
525
+ 39
526
+ 8
527
+ 20
528
+ 0
529
+ 49
530
+ 9
531
+ 0
532
+ 81
533
+ 7
534
+ 47
535
+ 49
536
+ 10
537
+ 2
538
+ 15
539
+ 8
540
+ 71
541
+ 5
542
+ 48
543
+ 6
544
+ 20
545
+ 0
546
+ 49
547
+ 6
548
+ 0
549
+ 81
550
+ 7
551
+ 39
552
+ 8
553
+ 20
554
+ 0
555
+ 49
556
+ 9
557
+ 0
558
+ 81
559
+ 7
560
+ 49
561
+ 4
562
+ 2
563
+ 8
564
+ 135
565
+ 45
566
+ 0
567
+ 11
568
+ 13
569
+ 71
570
+ 4
571
+ 47
572
+ 9
573
+ 113
574
+ 47
575
+ 49
576
+ 5
577
+ 0
578
+ 13
579
+ 5
580
+ 48
581
+ 6
582
+ 20
583
+ 0
584
+ 81
585
+ 7
586
+ 39
587
+ 8
588
+ 7
589
+ 12
590
+ 20
591
+ 0
592
+ 35
593
+ 2
594
+ 35
595
+ 1
596
+ 81
597
+ 7
598
+ 47
599
+ 49
600
+ 10
601
+ 2
602
+ 15
603
+ 8
604
+ 135
605
+ 5
606
+ 48
607
+ 6
608
+ 20
609
+ 0
610
+ 81
611
+ 7
612
+ 39
613
+ 8
614
+ 7
615
+ 12
616
+ 20
617
+ 0
618
+ 35
619
+ 2
620
+ 35
621
+ 1
622
+ 81
623
+ 7
624
+ 49
625
+ 4
626
+ 2
627
+ 11
628
+ I
629
+ 7
630
+ I
631
+ 1
632
+ I
633
+ 1
634
+ I
635
+ 1
636
+ n
637
+ p
638
+ 13
639
+ x
640
+ 8
641
+ Duration
642
+ n
643
+ x
644
+ 3
645
+ ===
646
+ n
647
+ x
648
+ 3
649
+ new
650
+ x
651
+ 8
652
+ allocate
653
+ x
654
+ 5
655
+ value
656
+ x
657
+ 1
658
+ +
659
+ x
660
+ 6
661
+ @parts
662
+ x
663
+ 5
664
+ parts
665
+ x
666
+ 10
667
+ initialize
668
+ n
669
+ x
670
+ 7
671
+ seconds
672
+ p
673
+ 9
674
+ I
675
+ -1
676
+ I
677
+ 14
678
+ I
679
+ 0
680
+ I
681
+ 15
682
+ I
683
+ 9
684
+ I
685
+ 16
686
+ I
687
+ 49
688
+ I
689
+ 18
690
+ I
691
+ 88
692
+ x
693
+ 81
694
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
695
+ p
696
+ 1
697
+ x
698
+ 5
699
+ other
700
+ x
701
+ 1
702
+ -
703
+ M
704
+ 1
705
+ n
706
+ n
707
+ x
708
+ 1
709
+ -
710
+ i
711
+ 9
712
+ 5
713
+ 20
714
+ 0
715
+ 49
716
+ 0
717
+ 0
718
+ 81
719
+ 1
720
+ 11
721
+ I
722
+ 3
723
+ I
724
+ 1
725
+ I
726
+ 1
727
+ I
728
+ 1
729
+ n
730
+ p
731
+ 2
732
+ x
733
+ 2
734
+ -@
735
+ x
736
+ 1
737
+ +
738
+ p
739
+ 5
740
+ I
741
+ -1
742
+ I
743
+ 1e
744
+ I
745
+ 0
746
+ I
747
+ 1f
748
+ I
749
+ 9
750
+ x
751
+ 81
752
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
753
+ p
754
+ 1
755
+ x
756
+ 5
757
+ other
758
+ x
759
+ 2
760
+ -@
761
+ M
762
+ 1
763
+ n
764
+ n
765
+ x
766
+ 2
767
+ -@
768
+ i
769
+ 53
770
+ 45
771
+ 0
772
+ 1
773
+ 13
774
+ 71
775
+ 2
776
+ 47
777
+ 9
778
+ 35
779
+ 47
780
+ 49
781
+ 3
782
+ 0
783
+ 13
784
+ 5
785
+ 48
786
+ 4
787
+ 49
788
+ 5
789
+ 0
790
+ 5
791
+ 48
792
+ 6
793
+ 56
794
+ 7
795
+ 50
796
+ 8
797
+ 0
798
+ 47
799
+ 49
800
+ 9
801
+ 2
802
+ 15
803
+ 8
804
+ 52
805
+ 5
806
+ 48
807
+ 4
808
+ 49
809
+ 5
810
+ 0
811
+ 5
812
+ 48
813
+ 6
814
+ 56
815
+ 10
816
+ 50
817
+ 8
818
+ 0
819
+ 49
820
+ 2
821
+ 2
822
+ 11
823
+ I
824
+ 5
825
+ I
826
+ 0
827
+ I
828
+ 0
829
+ I
830
+ 0
831
+ n
832
+ p
833
+ 11
834
+ x
835
+ 8
836
+ Duration
837
+ n
838
+ x
839
+ 3
840
+ new
841
+ x
842
+ 8
843
+ allocate
844
+ x
845
+ 5
846
+ value
847
+ x
848
+ 2
849
+ -@
850
+ x
851
+ 5
852
+ parts
853
+ M
854
+ 1
855
+ p
856
+ 2
857
+ x
858
+ 9
859
+ for_block
860
+ t
861
+ n
862
+ x
863
+ 2
864
+ -@
865
+ i
866
+ 20
867
+ 58
868
+ 37
869
+ 19
870
+ 0
871
+ 15
872
+ 37
873
+ 19
874
+ 1
875
+ 15
876
+ 15
877
+ 20
878
+ 0
879
+ 20
880
+ 1
881
+ 49
882
+ 0
883
+ 0
884
+ 35
885
+ 2
886
+ 11
887
+ I
888
+ 5
889
+ I
890
+ 2
891
+ I
892
+ 2
893
+ I
894
+ 2
895
+ n
896
+ p
897
+ 1
898
+ x
899
+ 2
900
+ -@
901
+ p
902
+ 3
903
+ I
904
+ 0
905
+ I
906
+ 23
907
+ I
908
+ 14
909
+ x
910
+ 81
911
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
912
+ p
913
+ 2
914
+ x
915
+ 4
916
+ type
917
+ x
918
+ 6
919
+ number
920
+ x
921
+ 3
922
+ map
923
+ x
924
+ 10
925
+ initialize
926
+ M
927
+ 1
928
+ p
929
+ 2
930
+ x
931
+ 9
932
+ for_block
933
+ t
934
+ n
935
+ x
936
+ 2
937
+ -@
938
+ i
939
+ 20
940
+ 58
941
+ 37
942
+ 19
943
+ 0
944
+ 15
945
+ 37
946
+ 19
947
+ 1
948
+ 15
949
+ 15
950
+ 20
951
+ 0
952
+ 20
953
+ 1
954
+ 49
955
+ 0
956
+ 0
957
+ 35
958
+ 2
959
+ 11
960
+ I
961
+ 5
962
+ I
963
+ 2
964
+ I
965
+ 2
966
+ I
967
+ 2
968
+ n
969
+ p
970
+ 1
971
+ x
972
+ 2
973
+ -@
974
+ p
975
+ 3
976
+ I
977
+ 0
978
+ I
979
+ 23
980
+ I
981
+ 14
982
+ x
983
+ 81
984
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
985
+ p
986
+ 2
987
+ x
988
+ 4
989
+ type
990
+ x
991
+ 6
992
+ number
993
+ p
994
+ 5
995
+ I
996
+ -1
997
+ I
998
+ 22
999
+ I
1000
+ 0
1001
+ I
1002
+ 23
1003
+ I
1004
+ 35
1005
+ x
1006
+ 81
1007
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
1008
+ p
1009
+ 0
1010
+ x
1011
+ 5
1012
+ is_a?
1013
+ M
1014
+ 1
1015
+ n
1016
+ n
1017
+ x
1018
+ 5
1019
+ is_a?
1020
+ i
1021
+ 20
1022
+ 45
1023
+ 0
1024
+ 1
1025
+ 20
1026
+ 0
1027
+ 83
1028
+ 2
1029
+ 13
1030
+ 10
1031
+ 19
1032
+ 15
1033
+ 5
1034
+ 48
1035
+ 3
1036
+ 20
1037
+ 0
1038
+ 49
1039
+ 4
1040
+ 1
1041
+ 11
1042
+ I
1043
+ 3
1044
+ I
1045
+ 1
1046
+ I
1047
+ 1
1048
+ I
1049
+ 1
1050
+ n
1051
+ p
1052
+ 5
1053
+ x
1054
+ 8
1055
+ Duration
1056
+ n
1057
+ x
1058
+ 2
1059
+ ==
1060
+ x
1061
+ 5
1062
+ value
1063
+ x
1064
+ 5
1065
+ is_a?
1066
+ p
1067
+ 5
1068
+ I
1069
+ -1
1070
+ I
1071
+ 26
1072
+ I
1073
+ 0
1074
+ I
1075
+ 27
1076
+ I
1077
+ 14
1078
+ x
1079
+ 81
1080
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
1081
+ p
1082
+ 1
1083
+ x
1084
+ 5
1085
+ klass
1086
+ x
1087
+ 8
1088
+ kind_of?
1089
+ x
1090
+ 12
1091
+ alias_method
1092
+ x
1093
+ 2
1094
+ ==
1095
+ M
1096
+ 1
1097
+ n
1098
+ n
1099
+ x
1100
+ 2
1101
+ ==
1102
+ i
1103
+ 29
1104
+ 45
1105
+ 0
1106
+ 1
1107
+ 20
1108
+ 0
1109
+ 86
1110
+ 2
1111
+ 9
1112
+ 21
1113
+ 20
1114
+ 0
1115
+ 49
1116
+ 3
1117
+ 0
1118
+ 5
1119
+ 48
1120
+ 3
1121
+ 83
1122
+ 4
1123
+ 8
1124
+ 28
1125
+ 20
1126
+ 0
1127
+ 5
1128
+ 48
1129
+ 3
1130
+ 83
1131
+ 4
1132
+ 11
1133
+ I
1134
+ 3
1135
+ I
1136
+ 1
1137
+ I
1138
+ 1
1139
+ I
1140
+ 1
1141
+ n
1142
+ p
1143
+ 5
1144
+ x
1145
+ 8
1146
+ Duration
1147
+ n
1148
+ x
1149
+ 3
1150
+ ===
1151
+ x
1152
+ 5
1153
+ value
1154
+ x
1155
+ 2
1156
+ ==
1157
+ p
1158
+ 9
1159
+ I
1160
+ -1
1161
+ I
1162
+ 2d
1163
+ I
1164
+ 0
1165
+ I
1166
+ 2e
1167
+ I
1168
+ 9
1169
+ I
1170
+ 2f
1171
+ I
1172
+ 15
1173
+ I
1174
+ 31
1175
+ I
1176
+ 1d
1177
+ x
1178
+ 81
1179
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
1180
+ p
1181
+ 1
1182
+ x
1183
+ 5
1184
+ other
1185
+ x
1186
+ 3
1187
+ ===
1188
+ M
1189
+ 1
1190
+ n
1191
+ n
1192
+ x
1193
+ 3
1194
+ ===
1195
+ i
1196
+ 49
1197
+ 26
1198
+ 93
1199
+ 0
1200
+ 15
1201
+ 29
1202
+ 18
1203
+ 0
1204
+ 20
1205
+ 0
1206
+ 45
1207
+ 0
1208
+ 1
1209
+ 49
1210
+ 2
1211
+ 1
1212
+ 30
1213
+ 8
1214
+ 45
1215
+ 26
1216
+ 93
1217
+ 1
1218
+ 15
1219
+ 24
1220
+ 13
1221
+ 44
1222
+ 43
1223
+ 3
1224
+ 12
1225
+ 49
1226
+ 4
1227
+ 1
1228
+ 10
1229
+ 35
1230
+ 8
1231
+ 40
1232
+ 15
1233
+ 3
1234
+ 25
1235
+ 8
1236
+ 45
1237
+ 15
1238
+ 92
1239
+ 1
1240
+ 27
1241
+ 34
1242
+ 92
1243
+ 0
1244
+ 27
1245
+ 11
1246
+ I
1247
+ 6
1248
+ I
1249
+ 1
1250
+ I
1251
+ 1
1252
+ I
1253
+ 1
1254
+ n
1255
+ p
1256
+ 5
1257
+ x
1258
+ 8
1259
+ Duration
1260
+ n
1261
+ x
1262
+ 5
1263
+ is_a?
1264
+ x
1265
+ 13
1266
+ NoMethodError
1267
+ x
1268
+ 3
1269
+ ===
1270
+ p
1271
+ 9
1272
+ I
1273
+ -1
1274
+ I
1275
+ 35
1276
+ I
1277
+ 0
1278
+ I
1279
+ 36
1280
+ I
1281
+ 17
1282
+ I
1283
+ 37
1284
+ I
1285
+ 24
1286
+ I
1287
+ 38
1288
+ I
1289
+ 31
1290
+ x
1291
+ 81
1292
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
1293
+ p
1294
+ 1
1295
+ x
1296
+ 5
1297
+ other
1298
+ x
1299
+ 13
1300
+ attach_method
1301
+ x
1302
+ 5
1303
+ since
1304
+ M
1305
+ 1
1306
+ n
1307
+ n
1308
+ x
1309
+ 5
1310
+ since
1311
+ i
1312
+ 22
1313
+ 23
1314
+ 0
1315
+ 10
1316
+ 13
1317
+ 44
1318
+ 43
1319
+ 0
1320
+ 49
1321
+ 1
1322
+ 0
1323
+ 19
1324
+ 0
1325
+ 15
1326
+ 5
1327
+ 79
1328
+ 20
1329
+ 0
1330
+ 47
1331
+ 49
1332
+ 2
1333
+ 2
1334
+ 11
1335
+ I
1336
+ 4
1337
+ I
1338
+ 1
1339
+ I
1340
+ 0
1341
+ I
1342
+ 1
1343
+ n
1344
+ p
1345
+ 3
1346
+ x
1347
+ 4
1348
+ Time
1349
+ x
1350
+ 7
1351
+ current
1352
+ x
1353
+ 3
1354
+ sum
1355
+ p
1356
+ 5
1357
+ I
1358
+ -1
1359
+ I
1360
+ 3d
1361
+ I
1362
+ d
1363
+ I
1364
+ 3e
1365
+ I
1366
+ 16
1367
+ x
1368
+ 81
1369
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
1370
+ p
1371
+ 1
1372
+ x
1373
+ 4
1374
+ time
1375
+ x
1376
+ 8
1377
+ from_now
1378
+ x
1379
+ 3
1380
+ ago
1381
+ M
1382
+ 1
1383
+ n
1384
+ n
1385
+ x
1386
+ 3
1387
+ ago
1388
+ i
1389
+ 22
1390
+ 23
1391
+ 0
1392
+ 10
1393
+ 13
1394
+ 44
1395
+ 43
1396
+ 0
1397
+ 49
1398
+ 1
1399
+ 0
1400
+ 19
1401
+ 0
1402
+ 15
1403
+ 5
1404
+ 77
1405
+ 20
1406
+ 0
1407
+ 47
1408
+ 49
1409
+ 2
1410
+ 2
1411
+ 11
1412
+ I
1413
+ 4
1414
+ I
1415
+ 1
1416
+ I
1417
+ 0
1418
+ I
1419
+ 1
1420
+ n
1421
+ p
1422
+ 3
1423
+ x
1424
+ 4
1425
+ Time
1426
+ x
1427
+ 7
1428
+ current
1429
+ x
1430
+ 3
1431
+ sum
1432
+ p
1433
+ 5
1434
+ I
1435
+ -1
1436
+ I
1437
+ 44
1438
+ I
1439
+ d
1440
+ I
1441
+ 45
1442
+ I
1443
+ 16
1444
+ x
1445
+ 81
1446
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
1447
+ p
1448
+ 1
1449
+ x
1450
+ 4
1451
+ time
1452
+ x
1453
+ 5
1454
+ until
1455
+ x
1456
+ 7
1457
+ inspect
1458
+ M
1459
+ 1
1460
+ n
1461
+ n
1462
+ x
1463
+ 7
1464
+ inspect
1465
+ i
1466
+ 100
1467
+ 5
1468
+ 48
1469
+ 0
1470
+ 44
1471
+ 43
1472
+ 1
1473
+ 13
1474
+ 71
1475
+ 2
1476
+ 47
1477
+ 9
1478
+ 25
1479
+ 47
1480
+ 49
1481
+ 3
1482
+ 0
1483
+ 13
1484
+ 78
1485
+ 47
1486
+ 49
1487
+ 4
1488
+ 1
1489
+ 15
1490
+ 8
1491
+ 29
1492
+ 78
1493
+ 49
1494
+ 2
1495
+ 1
1496
+ 56
1497
+ 5
1498
+ 50
1499
+ 6
1500
+ 1
1501
+ 19
1502
+ 0
1503
+ 15
1504
+ 7
1505
+ 7
1506
+ 7
1507
+ 8
1508
+ 7
1509
+ 9
1510
+ 7
1511
+ 10
1512
+ 7
1513
+ 11
1514
+ 35
1515
+ 5
1516
+ 56
1517
+ 12
1518
+ 50
1519
+ 13
1520
+ 0
1521
+ 49
1522
+ 14
1523
+ 0
1524
+ 19
1525
+ 1
1526
+ 15
1527
+ 20
1528
+ 1
1529
+ 49
1530
+ 15
1531
+ 0
1532
+ 9
1533
+ 76
1534
+ 7
1535
+ 16
1536
+ 64
1537
+ 35
1538
+ 1
1539
+ 19
1540
+ 1
1541
+ 8
1542
+ 77
1543
+ 1
1544
+ 15
1545
+ 20
1546
+ 1
1547
+ 44
1548
+ 43
1549
+ 1
1550
+ 79
1551
+ 49
1552
+ 17
1553
+ 1
1554
+ 13
1555
+ 7
1556
+ 18
1557
+ 7
1558
+ 19
1559
+ 49
1560
+ 20
1561
+ 2
1562
+ 15
1563
+ 49
1564
+ 21
1565
+ 1
1566
+ 11
1567
+ I
1568
+ 7
1569
+ I
1570
+ 2
1571
+ I
1572
+ 0
1573
+ I
1574
+ 0
1575
+ n
1576
+ p
1577
+ 22
1578
+ x
1579
+ 5
1580
+ parts
1581
+ x
1582
+ 4
1583
+ Hash
1584
+ x
1585
+ 3
1586
+ new
1587
+ x
1588
+ 8
1589
+ allocate
1590
+ x
1591
+ 10
1592
+ initialize
1593
+ M
1594
+ 1
1595
+ p
1596
+ 2
1597
+ x
1598
+ 9
1599
+ for_block
1600
+ t
1601
+ n
1602
+ x
1603
+ 7
1604
+ inspect
1605
+ i
1606
+ 41
1607
+ 58
1608
+ 37
1609
+ 19
1610
+ 0
1611
+ 15
1612
+ 37
1613
+ 19
1614
+ 1
1615
+ 15
1616
+ 15
1617
+ 20
1618
+ 0
1619
+ 20
1620
+ 1
1621
+ 49
1622
+ 0
1623
+ 0
1624
+ 14
1625
+ 2
1626
+ 49
1627
+ 1
1628
+ 1
1629
+ 20
1630
+ 1
1631
+ 49
1632
+ 2
1633
+ 0
1634
+ 49
1635
+ 3
1636
+ 1
1637
+ 13
1638
+ 18
1639
+ 3
1640
+ 49
1641
+ 4
1642
+ 2
1643
+ 15
1644
+ 15
1645
+ 20
1646
+ 0
1647
+ 11
1648
+ I
1649
+ 7
1650
+ I
1651
+ 2
1652
+ I
1653
+ 2
1654
+ I
1655
+ 2
1656
+ n
1657
+ p
1658
+ 5
1659
+ x
1660
+ 5
1661
+ first
1662
+ x
1663
+ 2
1664
+ []
1665
+ x
1666
+ 4
1667
+ last
1668
+ x
1669
+ 1
1670
+ +
1671
+ x
1672
+ 3
1673
+ []=
1674
+ p
1675
+ 3
1676
+ I
1677
+ 0
1678
+ I
1679
+ 4a
1680
+ I
1681
+ 29
1682
+ x
1683
+ 81
1684
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
1685
+ p
1686
+ 2
1687
+ x
1688
+ 1
1689
+ h
1690
+ x
1691
+ 4
1692
+ part
1693
+ x
1694
+ 6
1695
+ inject
1696
+ x
1697
+ 5
1698
+ years
1699
+ x
1700
+ 6
1701
+ months
1702
+ x
1703
+ 4
1704
+ days
1705
+ x
1706
+ 7
1707
+ minutes
1708
+ x
1709
+ 7
1710
+ seconds
1711
+ M
1712
+ 1
1713
+ p
1714
+ 2
1715
+ x
1716
+ 9
1717
+ for_block
1718
+ t
1719
+ n
1720
+ x
1721
+ 7
1722
+ inspect
1723
+ i
1724
+ 60
1725
+ 57
1726
+ 19
1727
+ 0
1728
+ 15
1729
+ 21
1730
+ 1
1731
+ 0
1732
+ 20
1733
+ 0
1734
+ 49
1735
+ 0
1736
+ 1
1737
+ 19
1738
+ 1
1739
+ 15
1740
+ 20
1741
+ 1
1742
+ 49
1743
+ 1
1744
+ 0
1745
+ 9
1746
+ 58
1747
+ 20
1748
+ 1
1749
+ 47
1750
+ 101
1751
+ 2
1752
+ 7
1753
+ 3
1754
+ 20
1755
+ 1
1756
+ 79
1757
+ 83
1758
+ 4
1759
+ 9
1760
+ 46
1761
+ 20
1762
+ 0
1763
+ 49
1764
+ 2
1765
+ 0
1766
+ 49
1767
+ 5
1768
+ 0
1769
+ 8
1770
+ 51
1771
+ 20
1772
+ 0
1773
+ 49
1774
+ 2
1775
+ 0
1776
+ 47
1777
+ 101
1778
+ 2
1779
+ 63
1780
+ 3
1781
+ 8
1782
+ 59
1783
+ 1
1784
+ 11
1785
+ I
1786
+ 7
1787
+ I
1788
+ 2
1789
+ I
1790
+ 1
1791
+ I
1792
+ 1
1793
+ n
1794
+ p
1795
+ 6
1796
+ x
1797
+ 2
1798
+ []
1799
+ x
1800
+ 8
1801
+ nonzero?
1802
+ x
1803
+ 4
1804
+ to_s
1805
+ s
1806
+ 1
1807
+
1808
+ x
1809
+ 2
1810
+ ==
1811
+ x
1812
+ 11
1813
+ singularize
1814
+ p
1815
+ 7
1816
+ I
1817
+ 0
1818
+ I
1819
+ 4b
1820
+ I
1821
+ 4
1822
+ I
1823
+ 4c
1824
+ I
1825
+ f
1826
+ I
1827
+ 4d
1828
+ I
1829
+ 3c
1830
+ x
1831
+ 81
1832
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
1833
+ p
1834
+ 2
1835
+ x
1836
+ 6
1837
+ length
1838
+ x
1839
+ 1
1840
+ n
1841
+ x
1842
+ 3
1843
+ map
1844
+ x
1845
+ 7
1846
+ compact
1847
+ x
1848
+ 6
1849
+ empty?
1850
+ s
1851
+ 9
1852
+ 0 seconds
1853
+ x
1854
+ 16
1855
+ new_from_literal
1856
+ x
1857
+ 6
1858
+ locale
1859
+ x
1860
+ 2
1861
+ en
1862
+ x
1863
+ 3
1864
+ []=
1865
+ x
1866
+ 11
1867
+ to_sentence
1868
+ p
1869
+ 11
1870
+ I
1871
+ -1
1872
+ I
1873
+ 49
1874
+ I
1875
+ 0
1876
+ I
1877
+ 4a
1878
+ I
1879
+ 25
1880
+ I
1881
+ 4b
1882
+ I
1883
+ 3c
1884
+ I
1885
+ 4f
1886
+ I
1887
+ 4e
1888
+ I
1889
+ 50
1890
+ I
1891
+ 64
1892
+ x
1893
+ 81
1894
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
1895
+ p
1896
+ 2
1897
+ x
1898
+ 12
1899
+ consolidated
1900
+ x
1901
+ 5
1902
+ parts
1903
+ x
1904
+ 9
1905
+ protected
1906
+ x
1907
+ 3
1908
+ sum
1909
+ M
1910
+ 1
1911
+ n
1912
+ n
1913
+ x
1914
+ 3
1915
+ sum
1916
+ i
1917
+ 24
1918
+ 23
1919
+ 1
1920
+ 10
1921
+ 13
1922
+ 44
1923
+ 43
1924
+ 0
1925
+ 49
1926
+ 1
1927
+ 0
1928
+ 19
1929
+ 1
1930
+ 15
1931
+ 5
1932
+ 48
1933
+ 2
1934
+ 20
1935
+ 1
1936
+ 56
1937
+ 3
1938
+ 50
1939
+ 4
1940
+ 1
1941
+ 11
1942
+ I
1943
+ 5
1944
+ I
1945
+ 2
1946
+ I
1947
+ 1
1948
+ I
1949
+ 2
1950
+ n
1951
+ p
1952
+ 5
1953
+ x
1954
+ 4
1955
+ Time
1956
+ x
1957
+ 7
1958
+ current
1959
+ x
1960
+ 5
1961
+ parts
1962
+ M
1963
+ 1
1964
+ p
1965
+ 2
1966
+ x
1967
+ 9
1968
+ for_block
1969
+ t
1970
+ n
1971
+ x
1972
+ 3
1973
+ sum
1974
+ i
1975
+ 111
1976
+ 58
1977
+ 37
1978
+ 19
1979
+ 0
1980
+ 15
1981
+ 37
1982
+ 36
1983
+ 37
1984
+ 19
1985
+ 1
1986
+ 15
1987
+ 37
1988
+ 19
1989
+ 2
1990
+ 15
1991
+ 15
1992
+ 15
1993
+ 20
1994
+ 0
1995
+ 7
1996
+ 0
1997
+ 49
1998
+ 1
1999
+ 1
2000
+ 13
2001
+ 10
2002
+ 35
2003
+ 15
2004
+ 20
2005
+ 0
2006
+ 7
2007
+ 2
2008
+ 49
2009
+ 1
2010
+ 1
2011
+ 9
2012
+ 89
2013
+ 20
2014
+ 1
2015
+ 7
2016
+ 3
2017
+ 83
2018
+ 4
2019
+ 9
2020
+ 60
2021
+ 20
2022
+ 0
2023
+ 21
2024
+ 1
2025
+ 0
2026
+ 20
2027
+ 2
2028
+ 49
2029
+ 5
2030
+ 1
2031
+ 49
2032
+ 6
2033
+ 1
2034
+ 8
2035
+ 87
2036
+ 20
2037
+ 0
2038
+ 44
2039
+ 43
2040
+ 7
2041
+ 79
2042
+ 49
2043
+ 8
2044
+ 1
2045
+ 13
2046
+ 20
2047
+ 1
2048
+ 21
2049
+ 1
2050
+ 0
2051
+ 20
2052
+ 2
2053
+ 49
2054
+ 5
2055
+ 1
2056
+ 49
2057
+ 9
2058
+ 2
2059
+ 15
2060
+ 49
2061
+ 10
2062
+ 1
2063
+ 8
2064
+ 110
2065
+ 5
2066
+ 44
2067
+ 43
2068
+ 11
2069
+ 7
2070
+ 12
2071
+ 21
2072
+ 1
2073
+ 1
2074
+ 49
2075
+ 13
2076
+ 0
2077
+ 47
2078
+ 101
2079
+ 14
2080
+ 63
2081
+ 2
2082
+ 47
2083
+ 49
2084
+ 15
2085
+ 2
2086
+ 11
2087
+ I
2088
+ a
2089
+ I
2090
+ 3
2091
+ I
2092
+ 2
2093
+ I
2094
+ 2
2095
+ n
2096
+ p
2097
+ 16
2098
+ x
2099
+ 4
2100
+ time
2101
+ x
2102
+ 10
2103
+ acts_like?
2104
+ x
2105
+ 4
2106
+ date
2107
+ x
2108
+ 7
2109
+ seconds
2110
+ x
2111
+ 2
2112
+ ==
2113
+ x
2114
+ 1
2115
+ *
2116
+ x
2117
+ 5
2118
+ since
2119
+ x
2120
+ 4
2121
+ Hash
2122
+ x
2123
+ 16
2124
+ new_from_literal
2125
+ x
2126
+ 3
2127
+ []=
2128
+ x
2129
+ 7
2130
+ advance
2131
+ x
2132
+ 13
2133
+ ArgumentError
2134
+ s
2135
+ 29
2136
+ expected a time or date, got
2137
+ x
2138
+ 7
2139
+ inspect
2140
+ x
2141
+ 4
2142
+ to_s
2143
+ x
2144
+ 5
2145
+ raise
2146
+ p
2147
+ 13
2148
+ I
2149
+ 0
2150
+ I
2151
+ 56
2152
+ I
2153
+ 11
2154
+ I
2155
+ 57
2156
+ I
2157
+ 25
2158
+ I
2159
+ 58
2160
+ I
2161
+ 2d
2162
+ I
2163
+ 59
2164
+ I
2165
+ 3c
2166
+ I
2167
+ 5b
2168
+ I
2169
+ 59
2170
+ I
2171
+ 5e
2172
+ I
2173
+ 6f
2174
+ x
2175
+ 81
2176
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
2177
+ p
2178
+ 3
2179
+ x
2180
+ 1
2181
+ t
2182
+ x
2183
+ 4
2184
+ type
2185
+ x
2186
+ 6
2187
+ number
2188
+ x
2189
+ 6
2190
+ inject
2191
+ p
2192
+ 5
2193
+ I
2194
+ -1
2195
+ I
2196
+ 55
2197
+ I
2198
+ d
2199
+ I
2200
+ 56
2201
+ I
2202
+ 18
2203
+ x
2204
+ 81
2205
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
2206
+ p
2207
+ 2
2208
+ x
2209
+ 4
2210
+ sign
2211
+ x
2212
+ 4
2213
+ time
2214
+ x
2215
+ 7
2216
+ private
2217
+ x
2218
+ 14
2219
+ method_missing
2220
+ M
2221
+ 1
2222
+ n
2223
+ n
2224
+ x
2225
+ 14
2226
+ method_missing
2227
+ i
2228
+ 29
2229
+ 95
2230
+ 19
2231
+ 2
2232
+ 15
2233
+ 5
2234
+ 48
2235
+ 0
2236
+ 20
2237
+ 0
2238
+ 20
2239
+ 1
2240
+ 36
2241
+ 20
2242
+ 2
2243
+ 13
2244
+ 70
2245
+ 10
2246
+ 25
2247
+ 44
2248
+ 43
2249
+ 1
2250
+ 12
2251
+ 49
2252
+ 2
2253
+ 1
2254
+ 51
2255
+ 3
2256
+ 1
2257
+ 11
2258
+ I
2259
+ 8
2260
+ I
2261
+ 3
2262
+ I
2263
+ 1
2264
+ I
2265
+ 1
2266
+ I
2267
+ 1
2268
+ p
2269
+ 4
2270
+ x
2271
+ 5
2272
+ value
2273
+ x
2274
+ 4
2275
+ Proc
2276
+ x
2277
+ 14
2278
+ __from_block__
2279
+ x
2280
+ 4
2281
+ send
2282
+ p
2283
+ 5
2284
+ I
2285
+ -1
2286
+ I
2287
+ 65
2288
+ I
2289
+ 4
2290
+ I
2291
+ 66
2292
+ I
2293
+ 1d
2294
+ x
2295
+ 81
2296
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
2297
+ p
2298
+ 3
2299
+ x
2300
+ 6
2301
+ method
2302
+ x
2303
+ 4
2304
+ args
2305
+ x
2306
+ 5
2307
+ block
2308
+ p
2309
+ 37
2310
+ I
2311
+ 2
2312
+ I
2313
+ c
2314
+ I
2315
+ c
2316
+ I
2317
+ e
2318
+ I
2319
+ 1a
2320
+ I
2321
+ 14
2322
+ I
2323
+ 28
2324
+ I
2325
+ 1e
2326
+ I
2327
+ 36
2328
+ I
2329
+ 22
2330
+ I
2331
+ 44
2332
+ I
2333
+ 26
2334
+ I
2335
+ 52
2336
+ I
2337
+ 29
2338
+ I
2339
+ 5c
2340
+ I
2341
+ 2d
2342
+ I
2343
+ 6a
2344
+ I
2345
+ 35
2346
+ I
2347
+ 75
2348
+ I
2349
+ 3d
2350
+ I
2351
+ 83
2352
+ I
2353
+ 40
2354
+ I
2355
+ 8d
2356
+ I
2357
+ 44
2358
+ I
2359
+ 9b
2360
+ I
2361
+ 47
2362
+ I
2363
+ a5
2364
+ I
2365
+ 49
2366
+ I
2367
+ b3
2368
+ I
2369
+ 53
2370
+ I
2371
+ b7
2372
+ I
2373
+ 55
2374
+ I
2375
+ c5
2376
+ I
2377
+ 63
2378
+ I
2379
+ c9
2380
+ I
2381
+ 65
2382
+ I
2383
+ d7
2384
+ x
2385
+ 81
2386
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
2387
+ p
2388
+ 0
2389
+ x
2390
+ 13
2391
+ attach_method
2392
+ p
2393
+ 3
2394
+ I
2395
+ 2
2396
+ I
2397
+ b
2398
+ I
2399
+ 1f
2400
+ x
2401
+ 81
2402
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
2403
+ p
2404
+ 0
2405
+ x
2406
+ 13
2407
+ attach_method
2408
+ p
2409
+ 9
2410
+ I
2411
+ 0
2412
+ I
2413
+ 1
2414
+ I
2415
+ 9
2416
+ I
2417
+ 2
2418
+ I
2419
+ 12
2420
+ I
2421
+ 3
2422
+ I
2423
+ 1b
2424
+ I
2425
+ 5
2426
+ I
2427
+ 37
2428
+ x
2429
+ 81
2430
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/duration.rb
2431
+ p
2432
+ 0