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