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,1299 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 38
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 99
23
+ 7
24
+ 2
25
+ 1
26
+ 65
27
+ 49
28
+ 3
29
+ 3
30
+ 13
31
+ 99
32
+ 12
33
+ 7
34
+ 4
35
+ 12
36
+ 7
37
+ 5
38
+ 12
39
+ 65
40
+ 12
41
+ 49
42
+ 6
43
+ 4
44
+ 15
45
+ 49
46
+ 4
47
+ 0
48
+ 15
49
+ 2
50
+ 11
51
+ I
52
+ 6
53
+ I
54
+ 0
55
+ I
56
+ 0
57
+ I
58
+ 0
59
+ n
60
+ p
61
+ 7
62
+ s
63
+ 23
64
+ active_support/duration
65
+ x
66
+ 7
67
+ require
68
+ x
69
+ 7
70
+ Numeric
71
+ x
72
+ 10
73
+ open_class
74
+ x
75
+ 14
76
+ __class_init__
77
+ M
78
+ 1
79
+ n
80
+ n
81
+ x
82
+ 7
83
+ Numeric
84
+ i
85
+ 194
86
+ 5
87
+ 66
88
+ 99
89
+ 7
90
+ 0
91
+ 7
92
+ 1
93
+ 65
94
+ 67
95
+ 49
96
+ 2
97
+ 0
98
+ 49
99
+ 3
100
+ 4
101
+ 15
102
+ 65
103
+ 7
104
+ 4
105
+ 7
106
+ 0
107
+ 47
108
+ 49
109
+ 5
110
+ 2
111
+ 15
112
+ 99
113
+ 7
114
+ 6
115
+ 7
116
+ 7
117
+ 65
118
+ 67
119
+ 49
120
+ 2
121
+ 0
122
+ 49
123
+ 3
124
+ 4
125
+ 15
126
+ 65
127
+ 7
128
+ 8
129
+ 7
130
+ 6
131
+ 47
132
+ 49
133
+ 5
134
+ 2
135
+ 15
136
+ 99
137
+ 7
138
+ 9
139
+ 7
140
+ 10
141
+ 65
142
+ 67
143
+ 49
144
+ 2
145
+ 0
146
+ 49
147
+ 3
148
+ 4
149
+ 15
150
+ 65
151
+ 7
152
+ 11
153
+ 7
154
+ 9
155
+ 47
156
+ 49
157
+ 5
158
+ 2
159
+ 15
160
+ 99
161
+ 7
162
+ 12
163
+ 7
164
+ 13
165
+ 65
166
+ 67
167
+ 49
168
+ 2
169
+ 0
170
+ 49
171
+ 3
172
+ 4
173
+ 15
174
+ 65
175
+ 7
176
+ 14
177
+ 7
178
+ 12
179
+ 47
180
+ 49
181
+ 5
182
+ 2
183
+ 15
184
+ 99
185
+ 7
186
+ 15
187
+ 7
188
+ 16
189
+ 65
190
+ 67
191
+ 49
192
+ 2
193
+ 0
194
+ 49
195
+ 3
196
+ 4
197
+ 15
198
+ 65
199
+ 7
200
+ 17
201
+ 7
202
+ 15
203
+ 47
204
+ 49
205
+ 5
206
+ 2
207
+ 15
208
+ 99
209
+ 7
210
+ 18
211
+ 7
212
+ 19
213
+ 65
214
+ 67
215
+ 49
216
+ 2
217
+ 0
218
+ 49
219
+ 3
220
+ 4
221
+ 15
222
+ 65
223
+ 7
224
+ 20
225
+ 7
226
+ 18
227
+ 47
228
+ 49
229
+ 5
230
+ 2
231
+ 15
232
+ 99
233
+ 7
234
+ 21
235
+ 7
236
+ 22
237
+ 65
238
+ 67
239
+ 49
240
+ 2
241
+ 0
242
+ 49
243
+ 3
244
+ 4
245
+ 15
246
+ 65
247
+ 7
248
+ 23
249
+ 7
250
+ 21
251
+ 47
252
+ 49
253
+ 5
254
+ 2
255
+ 15
256
+ 99
257
+ 7
258
+ 24
259
+ 7
260
+ 25
261
+ 65
262
+ 67
263
+ 49
264
+ 2
265
+ 0
266
+ 49
267
+ 3
268
+ 4
269
+ 15
270
+ 65
271
+ 7
272
+ 26
273
+ 7
274
+ 24
275
+ 47
276
+ 49
277
+ 5
278
+ 2
279
+ 11
280
+ I
281
+ 5
282
+ I
283
+ 0
284
+ I
285
+ 0
286
+ I
287
+ 0
288
+ n
289
+ p
290
+ 27
291
+ x
292
+ 7
293
+ seconds
294
+ M
295
+ 1
296
+ n
297
+ n
298
+ x
299
+ 7
300
+ seconds
301
+ i
302
+ 43
303
+ 45
304
+ 0
305
+ 1
306
+ 43
307
+ 2
308
+ 13
309
+ 71
310
+ 3
311
+ 47
312
+ 9
313
+ 31
314
+ 47
315
+ 49
316
+ 4
317
+ 0
318
+ 13
319
+ 5
320
+ 7
321
+ 5
322
+ 5
323
+ 35
324
+ 2
325
+ 35
326
+ 1
327
+ 47
328
+ 49
329
+ 6
330
+ 2
331
+ 15
332
+ 8
333
+ 42
334
+ 5
335
+ 7
336
+ 5
337
+ 5
338
+ 35
339
+ 2
340
+ 35
341
+ 1
342
+ 49
343
+ 3
344
+ 2
345
+ 11
346
+ I
347
+ 5
348
+ I
349
+ 0
350
+ I
351
+ 0
352
+ I
353
+ 0
354
+ n
355
+ p
356
+ 7
357
+ x
358
+ 13
359
+ ActiveSupport
360
+ n
361
+ x
362
+ 8
363
+ Duration
364
+ x
365
+ 3
366
+ new
367
+ x
368
+ 8
369
+ allocate
370
+ x
371
+ 7
372
+ seconds
373
+ x
374
+ 10
375
+ initialize
376
+ p
377
+ 5
378
+ I
379
+ -1
380
+ I
381
+ 20
382
+ I
383
+ 0
384
+ I
385
+ 21
386
+ I
387
+ 2b
388
+ x
389
+ 94
390
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/numeric/time.rb
391
+ p
392
+ 0
393
+ x
394
+ 17
395
+ method_visibility
396
+ x
397
+ 15
398
+ add_defn_method
399
+ x
400
+ 6
401
+ second
402
+ x
403
+ 12
404
+ alias_method
405
+ x
406
+ 7
407
+ minutes
408
+ M
409
+ 1
410
+ n
411
+ n
412
+ x
413
+ 7
414
+ minutes
415
+ i
416
+ 63
417
+ 45
418
+ 0
419
+ 1
420
+ 43
421
+ 2
422
+ 13
423
+ 71
424
+ 3
425
+ 47
426
+ 9
427
+ 41
428
+ 47
429
+ 49
430
+ 4
431
+ 0
432
+ 13
433
+ 5
434
+ 4
435
+ 60
436
+ 49
437
+ 5
438
+ 1
439
+ 7
440
+ 6
441
+ 5
442
+ 4
443
+ 60
444
+ 49
445
+ 5
446
+ 1
447
+ 35
448
+ 2
449
+ 35
450
+ 1
451
+ 47
452
+ 49
453
+ 7
454
+ 2
455
+ 15
456
+ 8
457
+ 62
458
+ 5
459
+ 4
460
+ 60
461
+ 49
462
+ 5
463
+ 1
464
+ 7
465
+ 6
466
+ 5
467
+ 4
468
+ 60
469
+ 49
470
+ 5
471
+ 1
472
+ 35
473
+ 2
474
+ 35
475
+ 1
476
+ 49
477
+ 3
478
+ 2
479
+ 11
480
+ I
481
+ 6
482
+ I
483
+ 0
484
+ I
485
+ 0
486
+ I
487
+ 0
488
+ n
489
+ p
490
+ 8
491
+ x
492
+ 13
493
+ ActiveSupport
494
+ n
495
+ x
496
+ 8
497
+ Duration
498
+ x
499
+ 3
500
+ new
501
+ x
502
+ 8
503
+ allocate
504
+ x
505
+ 1
506
+ *
507
+ x
508
+ 7
509
+ seconds
510
+ x
511
+ 10
512
+ initialize
513
+ p
514
+ 5
515
+ I
516
+ -1
517
+ I
518
+ 25
519
+ I
520
+ 0
521
+ I
522
+ 26
523
+ I
524
+ 3f
525
+ x
526
+ 94
527
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/numeric/time.rb
528
+ p
529
+ 0
530
+ x
531
+ 6
532
+ minute
533
+ x
534
+ 5
535
+ hours
536
+ M
537
+ 1
538
+ n
539
+ n
540
+ x
541
+ 5
542
+ hours
543
+ i
544
+ 63
545
+ 45
546
+ 0
547
+ 1
548
+ 43
549
+ 2
550
+ 13
551
+ 71
552
+ 3
553
+ 47
554
+ 9
555
+ 41
556
+ 47
557
+ 49
558
+ 4
559
+ 0
560
+ 13
561
+ 5
562
+ 7
563
+ 5
564
+ 49
565
+ 6
566
+ 1
567
+ 7
568
+ 7
569
+ 5
570
+ 7
571
+ 5
572
+ 49
573
+ 6
574
+ 1
575
+ 35
576
+ 2
577
+ 35
578
+ 1
579
+ 47
580
+ 49
581
+ 8
582
+ 2
583
+ 15
584
+ 8
585
+ 62
586
+ 5
587
+ 7
588
+ 5
589
+ 49
590
+ 6
591
+ 1
592
+ 7
593
+ 7
594
+ 5
595
+ 7
596
+ 5
597
+ 49
598
+ 6
599
+ 1
600
+ 35
601
+ 2
602
+ 35
603
+ 1
604
+ 49
605
+ 3
606
+ 2
607
+ 11
608
+ I
609
+ 6
610
+ I
611
+ 0
612
+ I
613
+ 0
614
+ I
615
+ 0
616
+ n
617
+ p
618
+ 9
619
+ x
620
+ 13
621
+ ActiveSupport
622
+ n
623
+ x
624
+ 8
625
+ Duration
626
+ x
627
+ 3
628
+ new
629
+ x
630
+ 8
631
+ allocate
632
+ I
633
+ e10
634
+ x
635
+ 1
636
+ *
637
+ x
638
+ 7
639
+ seconds
640
+ x
641
+ 10
642
+ initialize
643
+ p
644
+ 5
645
+ I
646
+ -1
647
+ I
648
+ 2a
649
+ I
650
+ 0
651
+ I
652
+ 2b
653
+ I
654
+ 3f
655
+ x
656
+ 94
657
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/numeric/time.rb
658
+ p
659
+ 0
660
+ x
661
+ 4
662
+ hour
663
+ x
664
+ 4
665
+ days
666
+ M
667
+ 1
668
+ n
669
+ n
670
+ x
671
+ 4
672
+ days
673
+ i
674
+ 59
675
+ 45
676
+ 0
677
+ 1
678
+ 43
679
+ 2
680
+ 13
681
+ 71
682
+ 3
683
+ 47
684
+ 9
685
+ 39
686
+ 47
687
+ 49
688
+ 4
689
+ 0
690
+ 13
691
+ 5
692
+ 4
693
+ 24
694
+ 49
695
+ 5
696
+ 0
697
+ 49
698
+ 6
699
+ 1
700
+ 7
701
+ 7
702
+ 5
703
+ 35
704
+ 2
705
+ 35
706
+ 1
707
+ 47
708
+ 49
709
+ 8
710
+ 2
711
+ 15
712
+ 8
713
+ 58
714
+ 5
715
+ 4
716
+ 24
717
+ 49
718
+ 5
719
+ 0
720
+ 49
721
+ 6
722
+ 1
723
+ 7
724
+ 7
725
+ 5
726
+ 35
727
+ 2
728
+ 35
729
+ 1
730
+ 49
731
+ 3
732
+ 2
733
+ 11
734
+ I
735
+ 5
736
+ I
737
+ 0
738
+ I
739
+ 0
740
+ I
741
+ 0
742
+ n
743
+ p
744
+ 9
745
+ x
746
+ 13
747
+ ActiveSupport
748
+ n
749
+ x
750
+ 8
751
+ Duration
752
+ x
753
+ 3
754
+ new
755
+ x
756
+ 8
757
+ allocate
758
+ x
759
+ 5
760
+ hours
761
+ x
762
+ 1
763
+ *
764
+ x
765
+ 4
766
+ days
767
+ x
768
+ 10
769
+ initialize
770
+ p
771
+ 5
772
+ I
773
+ -1
774
+ I
775
+ 2f
776
+ I
777
+ 0
778
+ I
779
+ 30
780
+ I
781
+ 3b
782
+ x
783
+ 94
784
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/numeric/time.rb
785
+ p
786
+ 0
787
+ x
788
+ 3
789
+ day
790
+ x
791
+ 5
792
+ weeks
793
+ M
794
+ 1
795
+ n
796
+ n
797
+ x
798
+ 5
799
+ weeks
800
+ i
801
+ 69
802
+ 45
803
+ 0
804
+ 1
805
+ 43
806
+ 2
807
+ 13
808
+ 71
809
+ 3
810
+ 47
811
+ 9
812
+ 44
813
+ 47
814
+ 49
815
+ 4
816
+ 0
817
+ 13
818
+ 5
819
+ 4
820
+ 7
821
+ 49
822
+ 5
823
+ 0
824
+ 49
825
+ 6
826
+ 1
827
+ 7
828
+ 5
829
+ 5
830
+ 4
831
+ 7
832
+ 49
833
+ 6
834
+ 1
835
+ 35
836
+ 2
837
+ 35
838
+ 1
839
+ 47
840
+ 49
841
+ 7
842
+ 2
843
+ 15
844
+ 8
845
+ 68
846
+ 5
847
+ 4
848
+ 7
849
+ 49
850
+ 5
851
+ 0
852
+ 49
853
+ 6
854
+ 1
855
+ 7
856
+ 5
857
+ 5
858
+ 4
859
+ 7
860
+ 49
861
+ 6
862
+ 1
863
+ 35
864
+ 2
865
+ 35
866
+ 1
867
+ 49
868
+ 3
869
+ 2
870
+ 11
871
+ I
872
+ 6
873
+ I
874
+ 0
875
+ I
876
+ 0
877
+ I
878
+ 0
879
+ n
880
+ p
881
+ 8
882
+ x
883
+ 13
884
+ ActiveSupport
885
+ n
886
+ x
887
+ 8
888
+ Duration
889
+ x
890
+ 3
891
+ new
892
+ x
893
+ 8
894
+ allocate
895
+ x
896
+ 4
897
+ days
898
+ x
899
+ 1
900
+ *
901
+ x
902
+ 10
903
+ initialize
904
+ p
905
+ 5
906
+ I
907
+ -1
908
+ I
909
+ 34
910
+ I
911
+ 0
912
+ I
913
+ 35
914
+ I
915
+ 45
916
+ x
917
+ 94
918
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/numeric/time.rb
919
+ p
920
+ 0
921
+ x
922
+ 4
923
+ week
924
+ x
925
+ 10
926
+ fortnights
927
+ M
928
+ 1
929
+ n
930
+ n
931
+ x
932
+ 10
933
+ fortnights
934
+ i
935
+ 67
936
+ 45
937
+ 0
938
+ 1
939
+ 43
940
+ 2
941
+ 13
942
+ 71
943
+ 3
944
+ 47
945
+ 9
946
+ 43
947
+ 47
948
+ 49
949
+ 4
950
+ 0
951
+ 13
952
+ 5
953
+ 80
954
+ 49
955
+ 5
956
+ 0
957
+ 49
958
+ 6
959
+ 1
960
+ 7
961
+ 7
962
+ 5
963
+ 4
964
+ 14
965
+ 49
966
+ 6
967
+ 1
968
+ 35
969
+ 2
970
+ 35
971
+ 1
972
+ 47
973
+ 49
974
+ 8
975
+ 2
976
+ 15
977
+ 8
978
+ 66
979
+ 5
980
+ 80
981
+ 49
982
+ 5
983
+ 0
984
+ 49
985
+ 6
986
+ 1
987
+ 7
988
+ 7
989
+ 5
990
+ 4
991
+ 14
992
+ 49
993
+ 6
994
+ 1
995
+ 35
996
+ 2
997
+ 35
998
+ 1
999
+ 49
1000
+ 3
1001
+ 2
1002
+ 11
1003
+ I
1004
+ 6
1005
+ I
1006
+ 0
1007
+ I
1008
+ 0
1009
+ I
1010
+ 0
1011
+ n
1012
+ p
1013
+ 9
1014
+ x
1015
+ 13
1016
+ ActiveSupport
1017
+ n
1018
+ x
1019
+ 8
1020
+ Duration
1021
+ x
1022
+ 3
1023
+ new
1024
+ x
1025
+ 8
1026
+ allocate
1027
+ x
1028
+ 5
1029
+ weeks
1030
+ x
1031
+ 1
1032
+ *
1033
+ x
1034
+ 4
1035
+ days
1036
+ x
1037
+ 10
1038
+ initialize
1039
+ p
1040
+ 5
1041
+ I
1042
+ -1
1043
+ I
1044
+ 39
1045
+ I
1046
+ 0
1047
+ I
1048
+ 3a
1049
+ I
1050
+ 43
1051
+ x
1052
+ 94
1053
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/numeric/time.rb
1054
+ p
1055
+ 0
1056
+ x
1057
+ 9
1058
+ fortnight
1059
+ x
1060
+ 3
1061
+ ago
1062
+ M
1063
+ 1
1064
+ n
1065
+ n
1066
+ x
1067
+ 3
1068
+ ago
1069
+ i
1070
+ 19
1071
+ 23
1072
+ 0
1073
+ 10
1074
+ 13
1075
+ 44
1076
+ 43
1077
+ 0
1078
+ 49
1079
+ 1
1080
+ 0
1081
+ 19
1082
+ 0
1083
+ 15
1084
+ 20
1085
+ 0
1086
+ 5
1087
+ 82
1088
+ 2
1089
+ 11
1090
+ I
1091
+ 3
1092
+ I
1093
+ 1
1094
+ I
1095
+ 0
1096
+ I
1097
+ 1
1098
+ n
1099
+ p
1100
+ 3
1101
+ x
1102
+ 4
1103
+ Time
1104
+ x
1105
+ 7
1106
+ current
1107
+ x
1108
+ 1
1109
+ -
1110
+ p
1111
+ 5
1112
+ I
1113
+ -1
1114
+ I
1115
+ 3f
1116
+ I
1117
+ d
1118
+ I
1119
+ 40
1120
+ I
1121
+ 13
1122
+ x
1123
+ 94
1124
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/numeric/time.rb
1125
+ p
1126
+ 1
1127
+ x
1128
+ 4
1129
+ time
1130
+ x
1131
+ 5
1132
+ until
1133
+ x
1134
+ 5
1135
+ since
1136
+ M
1137
+ 1
1138
+ n
1139
+ n
1140
+ x
1141
+ 5
1142
+ since
1143
+ i
1144
+ 19
1145
+ 23
1146
+ 0
1147
+ 10
1148
+ 13
1149
+ 44
1150
+ 43
1151
+ 0
1152
+ 49
1153
+ 1
1154
+ 0
1155
+ 19
1156
+ 0
1157
+ 15
1158
+ 20
1159
+ 0
1160
+ 5
1161
+ 81
1162
+ 2
1163
+ 11
1164
+ I
1165
+ 3
1166
+ I
1167
+ 1
1168
+ I
1169
+ 0
1170
+ I
1171
+ 1
1172
+ n
1173
+ p
1174
+ 3
1175
+ x
1176
+ 4
1177
+ Time
1178
+ x
1179
+ 7
1180
+ current
1181
+ x
1182
+ 1
1183
+ +
1184
+ p
1185
+ 5
1186
+ I
1187
+ -1
1188
+ I
1189
+ 47
1190
+ I
1191
+ d
1192
+ I
1193
+ 48
1194
+ I
1195
+ 13
1196
+ x
1197
+ 94
1198
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/numeric/time.rb
1199
+ p
1200
+ 1
1201
+ x
1202
+ 4
1203
+ time
1204
+ x
1205
+ 8
1206
+ from_now
1207
+ p
1208
+ 33
1209
+ I
1210
+ 2
1211
+ I
1212
+ 20
1213
+ I
1214
+ 10
1215
+ I
1216
+ 23
1217
+ I
1218
+ 1a
1219
+ I
1220
+ 25
1221
+ I
1222
+ 28
1223
+ I
1224
+ 28
1225
+ I
1226
+ 32
1227
+ I
1228
+ 2a
1229
+ I
1230
+ 40
1231
+ I
1232
+ 2d
1233
+ I
1234
+ 4a
1235
+ I
1236
+ 2f
1237
+ I
1238
+ 58
1239
+ I
1240
+ 32
1241
+ I
1242
+ 62
1243
+ I
1244
+ 34
1245
+ I
1246
+ 70
1247
+ I
1248
+ 37
1249
+ I
1250
+ 7a
1251
+ I
1252
+ 39
1253
+ I
1254
+ 88
1255
+ I
1256
+ 3c
1257
+ I
1258
+ 92
1259
+ I
1260
+ 3f
1261
+ I
1262
+ a0
1263
+ I
1264
+ 44
1265
+ I
1266
+ aa
1267
+ I
1268
+ 47
1269
+ I
1270
+ b8
1271
+ I
1272
+ 4c
1273
+ I
1274
+ c2
1275
+ x
1276
+ 94
1277
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/numeric/time.rb
1278
+ p
1279
+ 0
1280
+ x
1281
+ 13
1282
+ attach_method
1283
+ p
1284
+ 5
1285
+ I
1286
+ 0
1287
+ I
1288
+ 1
1289
+ I
1290
+ 9
1291
+ I
1292
+ 3
1293
+ I
1294
+ 26
1295
+ x
1296
+ 94
1297
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/numeric/time.rb
1298
+ p
1299
+ 0