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,193 @@
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
+ 40
64
+ active_support/core_ext/object/acts_like
65
+ x
66
+ 7
67
+ require
68
+ x
69
+ 4
70
+ Date
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
+ 4
83
+ Date
84
+ i
85
+ 16
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
+ 11
102
+ I
103
+ 5
104
+ I
105
+ 0
106
+ I
107
+ 0
108
+ I
109
+ 0
110
+ n
111
+ p
112
+ 4
113
+ x
114
+ 15
115
+ acts_like_date?
116
+ M
117
+ 1
118
+ n
119
+ n
120
+ x
121
+ 15
122
+ acts_like_date?
123
+ i
124
+ 2
125
+ 2
126
+ 11
127
+ I
128
+ 1
129
+ I
130
+ 0
131
+ I
132
+ 0
133
+ I
134
+ 0
135
+ n
136
+ p
137
+ 0
138
+ p
139
+ 5
140
+ I
141
+ -1
142
+ I
143
+ 5
144
+ I
145
+ 0
146
+ I
147
+ 6
148
+ I
149
+ 2
150
+ x
151
+ 96
152
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/acts_like.rb
153
+ p
154
+ 0
155
+ x
156
+ 17
157
+ method_visibility
158
+ x
159
+ 15
160
+ add_defn_method
161
+ p
162
+ 3
163
+ I
164
+ 2
165
+ I
166
+ 5
167
+ I
168
+ 10
169
+ x
170
+ 96
171
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/acts_like.rb
172
+ p
173
+ 0
174
+ x
175
+ 13
176
+ attach_method
177
+ p
178
+ 5
179
+ I
180
+ 0
181
+ I
182
+ 1
183
+ I
184
+ 9
185
+ I
186
+ 3
187
+ I
188
+ 26
189
+ x
190
+ 96
191
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/acts_like.rb
192
+ p
193
+ 0
@@ -0,0 +1,4918 @@
1
+ !RBIX
2
+ 12079494195756429234
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 74
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 5
23
+ 7
24
+ 2
25
+ 64
26
+ 47
27
+ 49
28
+ 1
29
+ 1
30
+ 15
31
+ 5
32
+ 7
33
+ 3
34
+ 64
35
+ 47
36
+ 49
37
+ 1
38
+ 1
39
+ 15
40
+ 5
41
+ 7
42
+ 4
43
+ 64
44
+ 47
45
+ 49
46
+ 1
47
+ 1
48
+ 15
49
+ 5
50
+ 7
51
+ 5
52
+ 64
53
+ 47
54
+ 49
55
+ 1
56
+ 1
57
+ 15
58
+ 99
59
+ 7
60
+ 6
61
+ 1
62
+ 65
63
+ 49
64
+ 7
65
+ 3
66
+ 13
67
+ 99
68
+ 12
69
+ 7
70
+ 8
71
+ 12
72
+ 7
73
+ 9
74
+ 12
75
+ 65
76
+ 12
77
+ 49
78
+ 10
79
+ 4
80
+ 15
81
+ 49
82
+ 8
83
+ 0
84
+ 15
85
+ 2
86
+ 11
87
+ I
88
+ 6
89
+ I
90
+ 0
91
+ I
92
+ 0
93
+ I
94
+ 0
95
+ n
96
+ p
97
+ 11
98
+ s
99
+ 4
100
+ date
101
+ x
102
+ 7
103
+ require
104
+ s
105
+ 23
106
+ active_support/duration
107
+ s
108
+ 40
109
+ active_support/core_ext/object/acts_like
110
+ s
111
+ 34
112
+ active_support/core_ext/date/zones
113
+ s
114
+ 34
115
+ active_support/core_ext/time/zones
116
+ x
117
+ 4
118
+ Date
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
+ 4
131
+ Date
132
+ i
133
+ 712
134
+ 5
135
+ 66
136
+ 45
137
+ 0
138
+ 1
139
+ 7
140
+ 2
141
+ 64
142
+ 84
143
+ 3
144
+ 9
145
+ 34
146
+ 65
147
+ 7
148
+ 4
149
+ 49
150
+ 5
151
+ 1
152
+ 15
153
+ 99
154
+ 7
155
+ 4
156
+ 7
157
+ 6
158
+ 65
159
+ 67
160
+ 49
161
+ 7
162
+ 0
163
+ 49
164
+ 8
165
+ 4
166
+ 8
167
+ 35
168
+ 1
169
+ 15
170
+ 5
171
+ 99
172
+ 43
173
+ 9
174
+ 12
175
+ 49
176
+ 10
177
+ 1
178
+ 13
179
+ 99
180
+ 12
181
+ 7
182
+ 11
183
+ 12
184
+ 7
185
+ 12
186
+ 12
187
+ 65
188
+ 12
189
+ 49
190
+ 13
191
+ 4
192
+ 15
193
+ 54
194
+ 50
195
+ 11
196
+ 0
197
+ 15
198
+ 99
199
+ 7
200
+ 14
201
+ 7
202
+ 15
203
+ 65
204
+ 67
205
+ 49
206
+ 7
207
+ 0
208
+ 49
209
+ 8
210
+ 4
211
+ 15
212
+ 99
213
+ 7
214
+ 16
215
+ 7
216
+ 17
217
+ 65
218
+ 67
219
+ 49
220
+ 7
221
+ 0
222
+ 49
223
+ 8
224
+ 4
225
+ 15
226
+ 99
227
+ 7
228
+ 18
229
+ 7
230
+ 19
231
+ 65
232
+ 67
233
+ 49
234
+ 7
235
+ 0
236
+ 49
237
+ 8
238
+ 4
239
+ 15
240
+ 99
241
+ 7
242
+ 20
243
+ 7
244
+ 21
245
+ 65
246
+ 67
247
+ 49
248
+ 7
249
+ 0
250
+ 49
251
+ 8
252
+ 4
253
+ 15
254
+ 99
255
+ 7
256
+ 22
257
+ 7
258
+ 23
259
+ 65
260
+ 67
261
+ 49
262
+ 7
263
+ 0
264
+ 49
265
+ 8
266
+ 4
267
+ 15
268
+ 65
269
+ 7
270
+ 24
271
+ 7
272
+ 22
273
+ 47
274
+ 49
275
+ 25
276
+ 2
277
+ 15
278
+ 99
279
+ 7
280
+ 26
281
+ 7
282
+ 27
283
+ 65
284
+ 67
285
+ 49
286
+ 7
287
+ 0
288
+ 49
289
+ 8
290
+ 4
291
+ 15
292
+ 65
293
+ 7
294
+ 28
295
+ 7
296
+ 26
297
+ 47
298
+ 49
299
+ 25
300
+ 2
301
+ 15
302
+ 65
303
+ 7
304
+ 29
305
+ 7
306
+ 26
307
+ 47
308
+ 49
309
+ 25
310
+ 2
311
+ 15
312
+ 65
313
+ 7
314
+ 30
315
+ 7
316
+ 26
317
+ 47
318
+ 49
319
+ 25
320
+ 2
321
+ 15
322
+ 99
323
+ 7
324
+ 31
325
+ 7
326
+ 32
327
+ 65
328
+ 67
329
+ 49
330
+ 7
331
+ 0
332
+ 49
333
+ 8
334
+ 4
335
+ 15
336
+ 99
337
+ 7
338
+ 33
339
+ 7
340
+ 34
341
+ 65
342
+ 67
343
+ 49
344
+ 7
345
+ 0
346
+ 49
347
+ 8
348
+ 4
349
+ 15
350
+ 5
351
+ 7
352
+ 35
353
+ 7
354
+ 36
355
+ 47
356
+ 49
357
+ 25
358
+ 2
359
+ 15
360
+ 5
361
+ 7
362
+ 36
363
+ 7
364
+ 33
365
+ 47
366
+ 49
367
+ 25
368
+ 2
369
+ 15
370
+ 99
371
+ 7
372
+ 37
373
+ 7
374
+ 38
375
+ 65
376
+ 67
377
+ 49
378
+ 7
379
+ 0
380
+ 49
381
+ 8
382
+ 4
383
+ 15
384
+ 5
385
+ 7
386
+ 39
387
+ 7
388
+ 40
389
+ 47
390
+ 49
391
+ 25
392
+ 2
393
+ 15
394
+ 5
395
+ 7
396
+ 40
397
+ 7
398
+ 37
399
+ 47
400
+ 49
401
+ 25
402
+ 2
403
+ 15
404
+ 99
405
+ 7
406
+ 41
407
+ 7
408
+ 42
409
+ 65
410
+ 67
411
+ 49
412
+ 7
413
+ 0
414
+ 49
415
+ 8
416
+ 4
417
+ 15
418
+ 99
419
+ 7
420
+ 43
421
+ 7
422
+ 44
423
+ 65
424
+ 67
425
+ 49
426
+ 7
427
+ 0
428
+ 49
429
+ 8
430
+ 4
431
+ 15
432
+ 99
433
+ 7
434
+ 45
435
+ 7
436
+ 46
437
+ 65
438
+ 67
439
+ 49
440
+ 7
441
+ 0
442
+ 49
443
+ 8
444
+ 4
445
+ 15
446
+ 99
447
+ 7
448
+ 47
449
+ 7
450
+ 48
451
+ 65
452
+ 67
453
+ 49
454
+ 7
455
+ 0
456
+ 49
457
+ 8
458
+ 4
459
+ 15
460
+ 99
461
+ 7
462
+ 49
463
+ 7
464
+ 50
465
+ 65
466
+ 67
467
+ 49
468
+ 7
469
+ 0
470
+ 49
471
+ 8
472
+ 4
473
+ 15
474
+ 99
475
+ 7
476
+ 51
477
+ 7
478
+ 52
479
+ 65
480
+ 67
481
+ 49
482
+ 7
483
+ 0
484
+ 49
485
+ 8
486
+ 4
487
+ 15
488
+ 5
489
+ 7
490
+ 53
491
+ 47
492
+ 49
493
+ 54
494
+ 1
495
+ 9
496
+ 366
497
+ 1
498
+ 8
499
+ 379
500
+ 99
501
+ 7
502
+ 53
503
+ 7
504
+ 55
505
+ 65
506
+ 67
507
+ 49
508
+ 7
509
+ 0
510
+ 49
511
+ 8
512
+ 4
513
+ 15
514
+ 5
515
+ 7
516
+ 56
517
+ 47
518
+ 49
519
+ 54
520
+ 1
521
+ 9
522
+ 392
523
+ 1
524
+ 8
525
+ 405
526
+ 99
527
+ 7
528
+ 56
529
+ 7
530
+ 57
531
+ 65
532
+ 67
533
+ 49
534
+ 7
535
+ 0
536
+ 49
537
+ 8
538
+ 4
539
+ 15
540
+ 5
541
+ 7
542
+ 58
543
+ 47
544
+ 49
545
+ 54
546
+ 1
547
+ 9
548
+ 418
549
+ 1
550
+ 8
551
+ 431
552
+ 99
553
+ 7
554
+ 58
555
+ 7
556
+ 59
557
+ 65
558
+ 67
559
+ 49
560
+ 7
561
+ 0
562
+ 49
563
+ 8
564
+ 4
565
+ 15
566
+ 5
567
+ 7
568
+ 60
569
+ 47
570
+ 49
571
+ 54
572
+ 1
573
+ 9
574
+ 444
575
+ 1
576
+ 8
577
+ 457
578
+ 99
579
+ 7
580
+ 60
581
+ 7
582
+ 61
583
+ 65
584
+ 67
585
+ 49
586
+ 7
587
+ 0
588
+ 49
589
+ 8
590
+ 4
591
+ 15
592
+ 99
593
+ 7
594
+ 62
595
+ 7
596
+ 63
597
+ 65
598
+ 67
599
+ 49
600
+ 7
601
+ 0
602
+ 49
603
+ 8
604
+ 4
605
+ 15
606
+ 65
607
+ 7
608
+ 64
609
+ 7
610
+ 62
611
+ 47
612
+ 49
613
+ 25
614
+ 2
615
+ 15
616
+ 65
617
+ 7
618
+ 65
619
+ 7
620
+ 62
621
+ 47
622
+ 49
623
+ 25
624
+ 2
625
+ 15
626
+ 99
627
+ 7
628
+ 66
629
+ 7
630
+ 67
631
+ 65
632
+ 67
633
+ 49
634
+ 7
635
+ 0
636
+ 49
637
+ 8
638
+ 4
639
+ 15
640
+ 65
641
+ 7
642
+ 68
643
+ 7
644
+ 66
645
+ 47
646
+ 49
647
+ 25
648
+ 2
649
+ 15
650
+ 65
651
+ 7
652
+ 69
653
+ 7
654
+ 66
655
+ 47
656
+ 49
657
+ 25
658
+ 2
659
+ 15
660
+ 99
661
+ 7
662
+ 70
663
+ 7
664
+ 71
665
+ 65
666
+ 67
667
+ 49
668
+ 7
669
+ 0
670
+ 49
671
+ 8
672
+ 4
673
+ 15
674
+ 99
675
+ 7
676
+ 72
677
+ 7
678
+ 73
679
+ 65
680
+ 67
681
+ 49
682
+ 7
683
+ 0
684
+ 49
685
+ 8
686
+ 4
687
+ 15
688
+ 65
689
+ 7
690
+ 74
691
+ 7
692
+ 72
693
+ 47
694
+ 49
695
+ 25
696
+ 2
697
+ 15
698
+ 99
699
+ 7
700
+ 75
701
+ 7
702
+ 76
703
+ 65
704
+ 67
705
+ 49
706
+ 7
707
+ 0
708
+ 49
709
+ 8
710
+ 4
711
+ 15
712
+ 65
713
+ 7
714
+ 77
715
+ 7
716
+ 75
717
+ 47
718
+ 49
719
+ 25
720
+ 2
721
+ 15
722
+ 99
723
+ 7
724
+ 78
725
+ 7
726
+ 79
727
+ 65
728
+ 67
729
+ 49
730
+ 7
731
+ 0
732
+ 49
733
+ 8
734
+ 4
735
+ 15
736
+ 65
737
+ 7
738
+ 80
739
+ 7
740
+ 78
741
+ 47
742
+ 49
743
+ 25
744
+ 2
745
+ 15
746
+ 99
747
+ 7
748
+ 81
749
+ 7
750
+ 82
751
+ 65
752
+ 67
753
+ 49
754
+ 7
755
+ 0
756
+ 49
757
+ 8
758
+ 4
759
+ 15
760
+ 65
761
+ 7
762
+ 83
763
+ 7
764
+ 81
765
+ 47
766
+ 49
767
+ 25
768
+ 2
769
+ 15
770
+ 99
771
+ 7
772
+ 84
773
+ 7
774
+ 85
775
+ 65
776
+ 67
777
+ 49
778
+ 7
779
+ 0
780
+ 49
781
+ 8
782
+ 4
783
+ 15
784
+ 65
785
+ 7
786
+ 86
787
+ 7
788
+ 84
789
+ 47
790
+ 49
791
+ 25
792
+ 2
793
+ 15
794
+ 99
795
+ 7
796
+ 87
797
+ 7
798
+ 88
799
+ 65
800
+ 67
801
+ 49
802
+ 7
803
+ 0
804
+ 49
805
+ 8
806
+ 4
807
+ 15
808
+ 65
809
+ 7
810
+ 89
811
+ 7
812
+ 87
813
+ 47
814
+ 49
815
+ 25
816
+ 2
817
+ 15
818
+ 99
819
+ 7
820
+ 90
821
+ 7
822
+ 91
823
+ 65
824
+ 67
825
+ 49
826
+ 7
827
+ 0
828
+ 49
829
+ 8
830
+ 4
831
+ 15
832
+ 99
833
+ 7
834
+ 92
835
+ 7
836
+ 93
837
+ 65
838
+ 67
839
+ 49
840
+ 7
841
+ 0
842
+ 49
843
+ 8
844
+ 4
845
+ 11
846
+ I
847
+ 6
848
+ I
849
+ 0
850
+ I
851
+ 0
852
+ I
853
+ 0
854
+ n
855
+ p
856
+ 94
857
+ x
858
+ 12
859
+ RUBY_VERSION
860
+ n
861
+ s
862
+ 3
863
+ 1.9
864
+ x
865
+ 1
866
+ <
867
+ x
868
+ 2
869
+ >>
870
+ x
871
+ 16
872
+ __undef_method__
873
+ M
874
+ 1
875
+ n
876
+ n
877
+ x
878
+ 2
879
+ >>
880
+ i
881
+ 126
882
+ 5
883
+ 48
884
+ 0
885
+ 4
886
+ 12
887
+ 49
888
+ 1
889
+ 1
890
+ 5
891
+ 48
892
+ 2
893
+ 79
894
+ 82
895
+ 3
896
+ 81
897
+ 4
898
+ 20
899
+ 0
900
+ 81
901
+ 4
902
+ 4
903
+ 12
904
+ 49
905
+ 5
906
+ 1
907
+ 97
908
+ 37
909
+ 19
910
+ 1
911
+ 15
912
+ 37
913
+ 19
914
+ 2
915
+ 15
916
+ 15
917
+ 2
918
+ 15
919
+ 20
920
+ 2
921
+ 79
922
+ 81
923
+ 4
924
+ 79
925
+ 49
926
+ 5
927
+ 1
928
+ 97
929
+ 37
930
+ 19
931
+ 2
932
+ 15
933
+ 15
934
+ 2
935
+ 15
936
+ 5
937
+ 48
938
+ 6
939
+ 19
940
+ 3
941
+ 15
942
+ 5
943
+ 49
944
+ 7
945
+ 0
946
+ 20
947
+ 1
948
+ 20
949
+ 2
950
+ 20
951
+ 3
952
+ 5
953
+ 48
954
+ 8
955
+ 49
956
+ 9
957
+ 4
958
+ 19
959
+ 4
960
+ 10
961
+ 113
962
+ 20
963
+ 3
964
+ 79
965
+ 82
966
+ 3
967
+ 19
968
+ 3
969
+ 15
970
+ 20
971
+ 3
972
+ 78
973
+ 85
974
+ 10
975
+ 9
976
+ 98
977
+ 1
978
+ 8
979
+ 109
980
+ 5
981
+ 45
982
+ 11
983
+ 12
984
+ 7
985
+ 13
986
+ 64
987
+ 47
988
+ 49
989
+ 14
990
+ 2
991
+ 15
992
+ 68
993
+ 8
994
+ 60
995
+ 1
996
+ 15
997
+ 5
998
+ 20
999
+ 4
1000
+ 5
1001
+ 48
1002
+ 15
1003
+ 82
1004
+ 3
1005
+ 81
1006
+ 4
1007
+ 11
1008
+ I
1009
+ a
1010
+ I
1011
+ 5
1012
+ I
1013
+ 1
1014
+ I
1015
+ 1
1016
+ n
1017
+ p
1018
+ 16
1019
+ x
1020
+ 4
1021
+ year
1022
+ x
1023
+ 1
1024
+ *
1025
+ x
1026
+ 3
1027
+ mon
1028
+ x
1029
+ 1
1030
+ -
1031
+ x
1032
+ 1
1033
+ +
1034
+ x
1035
+ 6
1036
+ divmod
1037
+ x
1038
+ 4
1039
+ mday
1040
+ x
1041
+ 5
1042
+ class
1043
+ x
1044
+ 5
1045
+ start
1046
+ x
1047
+ 12
1048
+ valid_civil?
1049
+ x
1050
+ 1
1051
+ >
1052
+ x
1053
+ 13
1054
+ ArgumentError
1055
+ n
1056
+ s
1057
+ 12
1058
+ invalid date
1059
+ x
1060
+ 5
1061
+ raise
1062
+ x
1063
+ 2
1064
+ jd
1065
+ p
1066
+ 17
1067
+ I
1068
+ -1
1069
+ I
1070
+ e
1071
+ I
1072
+ 0
1073
+ I
1074
+ f
1075
+ I
1076
+ 25
1077
+ I
1078
+ 10
1079
+ I
1080
+ 36
1081
+ I
1082
+ 11
1083
+ I
1084
+ 3c
1085
+ I
1086
+ 12
1087
+ I
1088
+ 50
1089
+ I
1090
+ 13
1091
+ I
1092
+ 58
1093
+ I
1094
+ 14
1095
+ I
1096
+ 73
1097
+ I
1098
+ 16
1099
+ I
1100
+ 7e
1101
+ x
1102
+ 99
1103
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
1104
+ p
1105
+ 5
1106
+ x
1107
+ 1
1108
+ n
1109
+ x
1110
+ 1
1111
+ y
1112
+ x
1113
+ 1
1114
+ m
1115
+ x
1116
+ 1
1117
+ d
1118
+ x
1119
+ 3
1120
+ jd2
1121
+ x
1122
+ 17
1123
+ method_visibility
1124
+ x
1125
+ 15
1126
+ add_defn_method
1127
+ x
1128
+ 4
1129
+ Type
1130
+ x
1131
+ 22
1132
+ object_singleton_class
1133
+ x
1134
+ 18
1135
+ __metaclass_init__
1136
+ M
1137
+ 1
1138
+ n
1139
+ n
1140
+ x
1141
+ 18
1142
+ __metaclass_init__
1143
+ i
1144
+ 44
1145
+ 5
1146
+ 66
1147
+ 99
1148
+ 7
1149
+ 0
1150
+ 7
1151
+ 1
1152
+ 65
1153
+ 67
1154
+ 49
1155
+ 2
1156
+ 0
1157
+ 49
1158
+ 3
1159
+ 4
1160
+ 15
1161
+ 99
1162
+ 7
1163
+ 4
1164
+ 7
1165
+ 5
1166
+ 65
1167
+ 67
1168
+ 49
1169
+ 2
1170
+ 0
1171
+ 49
1172
+ 3
1173
+ 4
1174
+ 15
1175
+ 99
1176
+ 7
1177
+ 6
1178
+ 7
1179
+ 7
1180
+ 65
1181
+ 67
1182
+ 49
1183
+ 2
1184
+ 0
1185
+ 49
1186
+ 3
1187
+ 4
1188
+ 11
1189
+ I
1190
+ 5
1191
+ I
1192
+ 0
1193
+ I
1194
+ 0
1195
+ I
1196
+ 0
1197
+ n
1198
+ p
1199
+ 8
1200
+ x
1201
+ 9
1202
+ yesterday
1203
+ M
1204
+ 1
1205
+ n
1206
+ n
1207
+ x
1208
+ 9
1209
+ yesterday
1210
+ i
1211
+ 10
1212
+ 44
1213
+ 43
1214
+ 0
1215
+ 49
1216
+ 1
1217
+ 0
1218
+ 49
1219
+ 2
1220
+ 0
1221
+ 11
1222
+ I
1223
+ 1
1224
+ I
1225
+ 0
1226
+ I
1227
+ 0
1228
+ I
1229
+ 0
1230
+ n
1231
+ p
1232
+ 3
1233
+ x
1234
+ 4
1235
+ Date
1236
+ x
1237
+ 7
1238
+ current
1239
+ x
1240
+ 9
1241
+ yesterday
1242
+ p
1243
+ 5
1244
+ I
1245
+ -1
1246
+ I
1247
+ 1c
1248
+ I
1249
+ 0
1250
+ I
1251
+ 1d
1252
+ I
1253
+ a
1254
+ x
1255
+ 99
1256
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
1257
+ p
1258
+ 0
1259
+ x
1260
+ 17
1261
+ method_visibility
1262
+ x
1263
+ 15
1264
+ add_defn_method
1265
+ x
1266
+ 8
1267
+ tomorrow
1268
+ M
1269
+ 1
1270
+ n
1271
+ n
1272
+ x
1273
+ 8
1274
+ tomorrow
1275
+ i
1276
+ 10
1277
+ 44
1278
+ 43
1279
+ 0
1280
+ 49
1281
+ 1
1282
+ 0
1283
+ 49
1284
+ 2
1285
+ 0
1286
+ 11
1287
+ I
1288
+ 1
1289
+ I
1290
+ 0
1291
+ I
1292
+ 0
1293
+ I
1294
+ 0
1295
+ n
1296
+ p
1297
+ 3
1298
+ x
1299
+ 4
1300
+ Date
1301
+ x
1302
+ 7
1303
+ current
1304
+ x
1305
+ 8
1306
+ tomorrow
1307
+ p
1308
+ 5
1309
+ I
1310
+ -1
1311
+ I
1312
+ 21
1313
+ I
1314
+ 0
1315
+ I
1316
+ 22
1317
+ I
1318
+ a
1319
+ x
1320
+ 99
1321
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
1322
+ p
1323
+ 0
1324
+ x
1325
+ 7
1326
+ current
1327
+ M
1328
+ 1
1329
+ n
1330
+ n
1331
+ x
1332
+ 7
1333
+ current
1334
+ i
1335
+ 26
1336
+ 44
1337
+ 43
1338
+ 0
1339
+ 49
1340
+ 1
1341
+ 0
1342
+ 9
1343
+ 19
1344
+ 44
1345
+ 43
1346
+ 0
1347
+ 49
1348
+ 1
1349
+ 0
1350
+ 49
1351
+ 2
1352
+ 0
1353
+ 8
1354
+ 25
1355
+ 44
1356
+ 43
1357
+ 3
1358
+ 49
1359
+ 2
1360
+ 0
1361
+ 11
1362
+ I
1363
+ 1
1364
+ I
1365
+ 0
1366
+ I
1367
+ 0
1368
+ I
1369
+ 0
1370
+ n
1371
+ p
1372
+ 4
1373
+ x
1374
+ 4
1375
+ Time
1376
+ x
1377
+ 4
1378
+ zone
1379
+ x
1380
+ 5
1381
+ today
1382
+ x
1383
+ 4
1384
+ Date
1385
+ p
1386
+ 5
1387
+ I
1388
+ -1
1389
+ I
1390
+ 26
1391
+ I
1392
+ 0
1393
+ I
1394
+ 27
1395
+ I
1396
+ 1a
1397
+ x
1398
+ 99
1399
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
1400
+ p
1401
+ 0
1402
+ p
1403
+ 7
1404
+ I
1405
+ 2
1406
+ I
1407
+ 1c
1408
+ I
1409
+ 10
1410
+ I
1411
+ 21
1412
+ I
1413
+ 1e
1414
+ I
1415
+ 26
1416
+ I
1417
+ 2c
1418
+ x
1419
+ 99
1420
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
1421
+ p
1422
+ 0
1423
+ x
1424
+ 13
1425
+ attach_method
1426
+ x
1427
+ 5
1428
+ past?
1429
+ M
1430
+ 1
1431
+ n
1432
+ n
1433
+ x
1434
+ 5
1435
+ past?
1436
+ i
1437
+ 10
1438
+ 5
1439
+ 44
1440
+ 43
1441
+ 0
1442
+ 49
1443
+ 1
1444
+ 0
1445
+ 84
1446
+ 2
1447
+ 11
1448
+ I
1449
+ 2
1450
+ I
1451
+ 0
1452
+ I
1453
+ 0
1454
+ I
1455
+ 0
1456
+ n
1457
+ p
1458
+ 3
1459
+ x
1460
+ 4
1461
+ Date
1462
+ x
1463
+ 7
1464
+ current
1465
+ x
1466
+ 1
1467
+ <
1468
+ p
1469
+ 5
1470
+ I
1471
+ -1
1472
+ I
1473
+ 2c
1474
+ I
1475
+ 0
1476
+ I
1477
+ 2d
1478
+ I
1479
+ a
1480
+ x
1481
+ 99
1482
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
1483
+ p
1484
+ 0
1485
+ x
1486
+ 6
1487
+ today?
1488
+ M
1489
+ 1
1490
+ n
1491
+ n
1492
+ x
1493
+ 6
1494
+ today?
1495
+ i
1496
+ 13
1497
+ 5
1498
+ 49
1499
+ 0
1500
+ 0
1501
+ 44
1502
+ 43
1503
+ 1
1504
+ 49
1505
+ 2
1506
+ 0
1507
+ 83
1508
+ 3
1509
+ 11
1510
+ I
1511
+ 2
1512
+ I
1513
+ 0
1514
+ I
1515
+ 0
1516
+ I
1517
+ 0
1518
+ n
1519
+ p
1520
+ 4
1521
+ x
1522
+ 7
1523
+ to_date
1524
+ x
1525
+ 4
1526
+ Date
1527
+ x
1528
+ 7
1529
+ current
1530
+ x
1531
+ 2
1532
+ ==
1533
+ p
1534
+ 5
1535
+ I
1536
+ -1
1537
+ I
1538
+ 31
1539
+ I
1540
+ 0
1541
+ I
1542
+ 32
1543
+ I
1544
+ d
1545
+ x
1546
+ 99
1547
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
1548
+ p
1549
+ 0
1550
+ x
1551
+ 7
1552
+ future?
1553
+ M
1554
+ 1
1555
+ n
1556
+ n
1557
+ x
1558
+ 7
1559
+ future?
1560
+ i
1561
+ 10
1562
+ 5
1563
+ 44
1564
+ 43
1565
+ 0
1566
+ 49
1567
+ 1
1568
+ 0
1569
+ 85
1570
+ 2
1571
+ 11
1572
+ I
1573
+ 2
1574
+ I
1575
+ 0
1576
+ I
1577
+ 0
1578
+ I
1579
+ 0
1580
+ n
1581
+ p
1582
+ 3
1583
+ x
1584
+ 4
1585
+ Date
1586
+ x
1587
+ 7
1588
+ current
1589
+ x
1590
+ 1
1591
+ >
1592
+ p
1593
+ 5
1594
+ I
1595
+ -1
1596
+ I
1597
+ 36
1598
+ I
1599
+ 0
1600
+ I
1601
+ 37
1602
+ I
1603
+ a
1604
+ x
1605
+ 99
1606
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
1607
+ p
1608
+ 0
1609
+ x
1610
+ 3
1611
+ ago
1612
+ M
1613
+ 1
1614
+ n
1615
+ n
1616
+ x
1617
+ 3
1618
+ ago
1619
+ i
1620
+ 12
1621
+ 5
1622
+ 48
1623
+ 0
1624
+ 20
1625
+ 0
1626
+ 49
1627
+ 1
1628
+ 0
1629
+ 49
1630
+ 2
1631
+ 1
1632
+ 11
1633
+ I
1634
+ 3
1635
+ I
1636
+ 1
1637
+ I
1638
+ 1
1639
+ I
1640
+ 1
1641
+ n
1642
+ p
1643
+ 3
1644
+ x
1645
+ 23
1646
+ to_time_in_current_zone
1647
+ x
1648
+ 2
1649
+ -@
1650
+ x
1651
+ 5
1652
+ since
1653
+ p
1654
+ 5
1655
+ I
1656
+ -1
1657
+ I
1658
+ 3c
1659
+ I
1660
+ 0
1661
+ I
1662
+ 3d
1663
+ I
1664
+ c
1665
+ x
1666
+ 99
1667
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
1668
+ p
1669
+ 1
1670
+ x
1671
+ 7
1672
+ seconds
1673
+ x
1674
+ 5
1675
+ since
1676
+ M
1677
+ 1
1678
+ n
1679
+ n
1680
+ x
1681
+ 5
1682
+ since
1683
+ i
1684
+ 9
1685
+ 5
1686
+ 48
1687
+ 0
1688
+ 20
1689
+ 0
1690
+ 49
1691
+ 1
1692
+ 1
1693
+ 11
1694
+ I
1695
+ 3
1696
+ I
1697
+ 1
1698
+ I
1699
+ 1
1700
+ I
1701
+ 1
1702
+ n
1703
+ p
1704
+ 2
1705
+ x
1706
+ 23
1707
+ to_time_in_current_zone
1708
+ x
1709
+ 5
1710
+ since
1711
+ p
1712
+ 5
1713
+ I
1714
+ -1
1715
+ I
1716
+ 42
1717
+ I
1718
+ 0
1719
+ I
1720
+ 43
1721
+ I
1722
+ 9
1723
+ x
1724
+ 99
1725
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
1726
+ p
1727
+ 1
1728
+ x
1729
+ 7
1730
+ seconds
1731
+ x
1732
+ 2
1733
+ in
1734
+ x
1735
+ 12
1736
+ alias_method
1737
+ x
1738
+ 16
1739
+ beginning_of_day
1740
+ M
1741
+ 1
1742
+ n
1743
+ n
1744
+ x
1745
+ 16
1746
+ beginning_of_day
1747
+ i
1748
+ 4
1749
+ 5
1750
+ 48
1751
+ 0
1752
+ 11
1753
+ I
1754
+ 1
1755
+ I
1756
+ 0
1757
+ I
1758
+ 0
1759
+ I
1760
+ 0
1761
+ n
1762
+ p
1763
+ 1
1764
+ x
1765
+ 23
1766
+ to_time_in_current_zone
1767
+ p
1768
+ 5
1769
+ I
1770
+ -1
1771
+ I
1772
+ 48
1773
+ I
1774
+ 0
1775
+ I
1776
+ 49
1777
+ I
1778
+ 4
1779
+ x
1780
+ 99
1781
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
1782
+ p
1783
+ 0
1784
+ x
1785
+ 8
1786
+ midnight
1787
+ x
1788
+ 11
1789
+ at_midnight
1790
+ x
1791
+ 19
1792
+ at_beginning_of_day
1793
+ x
1794
+ 10
1795
+ end_of_day
1796
+ M
1797
+ 1
1798
+ n
1799
+ n
1800
+ x
1801
+ 10
1802
+ end_of_day
1803
+ i
1804
+ 7
1805
+ 5
1806
+ 48
1807
+ 0
1808
+ 49
1809
+ 1
1810
+ 0
1811
+ 11
1812
+ I
1813
+ 1
1814
+ I
1815
+ 0
1816
+ I
1817
+ 0
1818
+ I
1819
+ 0
1820
+ n
1821
+ p
1822
+ 2
1823
+ x
1824
+ 23
1825
+ to_time_in_current_zone
1826
+ x
1827
+ 10
1828
+ end_of_day
1829
+ p
1830
+ 5
1831
+ I
1832
+ -1
1833
+ I
1834
+ 50
1835
+ I
1836
+ 0
1837
+ I
1838
+ 51
1839
+ I
1840
+ 7
1841
+ x
1842
+ 99
1843
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
1844
+ p
1845
+ 0
1846
+ x
1847
+ 18
1848
+ plus_with_duration
1849
+ M
1850
+ 1
1851
+ n
1852
+ n
1853
+ x
1854
+ 18
1855
+ plus_with_duration
1856
+ i
1857
+ 27
1858
+ 45
1859
+ 0
1860
+ 1
1861
+ 43
1862
+ 2
1863
+ 20
1864
+ 0
1865
+ 86
1866
+ 3
1867
+ 9
1868
+ 19
1869
+ 20
1870
+ 0
1871
+ 5
1872
+ 49
1873
+ 4
1874
+ 1
1875
+ 8
1876
+ 26
1877
+ 5
1878
+ 20
1879
+ 0
1880
+ 47
1881
+ 49
1882
+ 5
1883
+ 1
1884
+ 11
1885
+ I
1886
+ 3
1887
+ I
1888
+ 1
1889
+ I
1890
+ 1
1891
+ I
1892
+ 1
1893
+ n
1894
+ p
1895
+ 6
1896
+ x
1897
+ 13
1898
+ ActiveSupport
1899
+ n
1900
+ x
1901
+ 8
1902
+ Duration
1903
+ x
1904
+ 3
1905
+ ===
1906
+ x
1907
+ 5
1908
+ since
1909
+ x
1910
+ 21
1911
+ plus_without_duration
1912
+ p
1913
+ 9
1914
+ I
1915
+ -1
1916
+ I
1917
+ 54
1918
+ I
1919
+ 0
1920
+ I
1921
+ 55
1922
+ I
1923
+ b
1924
+ I
1925
+ 56
1926
+ I
1927
+ 13
1928
+ I
1929
+ 58
1930
+ I
1931
+ 1b
1932
+ x
1933
+ 99
1934
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
1935
+ p
1936
+ 1
1937
+ x
1938
+ 5
1939
+ other
1940
+ x
1941
+ 21
1942
+ plus_without_duration
1943
+ x
1944
+ 1
1945
+ +
1946
+ x
1947
+ 19
1948
+ minus_with_duration
1949
+ M
1950
+ 1
1951
+ n
1952
+ n
1953
+ x
1954
+ 19
1955
+ minus_with_duration
1956
+ i
1957
+ 31
1958
+ 45
1959
+ 0
1960
+ 1
1961
+ 43
1962
+ 2
1963
+ 20
1964
+ 0
1965
+ 86
1966
+ 3
1967
+ 9
1968
+ 23
1969
+ 5
1970
+ 20
1971
+ 0
1972
+ 49
1973
+ 4
1974
+ 0
1975
+ 47
1976
+ 49
1977
+ 5
1978
+ 1
1979
+ 8
1980
+ 30
1981
+ 5
1982
+ 20
1983
+ 0
1984
+ 47
1985
+ 49
1986
+ 6
1987
+ 1
1988
+ 11
1989
+ I
1990
+ 3
1991
+ I
1992
+ 1
1993
+ I
1994
+ 1
1995
+ I
1996
+ 1
1997
+ n
1998
+ p
1999
+ 7
2000
+ x
2001
+ 13
2002
+ ActiveSupport
2003
+ n
2004
+ x
2005
+ 8
2006
+ Duration
2007
+ x
2008
+ 3
2009
+ ===
2010
+ x
2011
+ 2
2012
+ -@
2013
+ x
2014
+ 18
2015
+ plus_with_duration
2016
+ x
2017
+ 22
2018
+ minus_without_duration
2019
+ p
2020
+ 9
2021
+ I
2022
+ -1
2023
+ I
2024
+ 5e
2025
+ I
2026
+ 0
2027
+ I
2028
+ 5f
2029
+ I
2030
+ b
2031
+ I
2032
+ 60
2033
+ I
2034
+ 17
2035
+ I
2036
+ 62
2037
+ I
2038
+ 1f
2039
+ x
2040
+ 99
2041
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
2042
+ p
2043
+ 1
2044
+ x
2045
+ 5
2046
+ other
2047
+ x
2048
+ 22
2049
+ minus_without_duration
2050
+ x
2051
+ 1
2052
+ -
2053
+ x
2054
+ 7
2055
+ advance
2056
+ M
2057
+ 1
2058
+ n
2059
+ n
2060
+ x
2061
+ 7
2062
+ advance
2063
+ i
2064
+ 131
2065
+ 20
2066
+ 0
2067
+ 49
2068
+ 0
2069
+ 0
2070
+ 19
2071
+ 0
2072
+ 15
2073
+ 5
2074
+ 19
2075
+ 1
2076
+ 15
2077
+ 20
2078
+ 0
2079
+ 7
2080
+ 1
2081
+ 49
2082
+ 2
2083
+ 1
2084
+ 9
2085
+ 42
2086
+ 20
2087
+ 1
2088
+ 20
2089
+ 0
2090
+ 7
2091
+ 1
2092
+ 49
2093
+ 3
2094
+ 1
2095
+ 4
2096
+ 12
2097
+ 49
2098
+ 4
2099
+ 1
2100
+ 49
2101
+ 5
2102
+ 1
2103
+ 19
2104
+ 1
2105
+ 8
2106
+ 43
2107
+ 1
2108
+ 15
2109
+ 20
2110
+ 0
2111
+ 7
2112
+ 6
2113
+ 49
2114
+ 2
2115
+ 1
2116
+ 9
2117
+ 69
2118
+ 20
2119
+ 1
2120
+ 20
2121
+ 0
2122
+ 7
2123
+ 6
2124
+ 49
2125
+ 3
2126
+ 1
2127
+ 49
2128
+ 5
2129
+ 1
2130
+ 19
2131
+ 1
2132
+ 8
2133
+ 70
2134
+ 1
2135
+ 15
2136
+ 20
2137
+ 0
2138
+ 7
2139
+ 7
2140
+ 49
2141
+ 2
2142
+ 1
2143
+ 9
2144
+ 100
2145
+ 20
2146
+ 1
2147
+ 20
2148
+ 0
2149
+ 7
2150
+ 7
2151
+ 49
2152
+ 3
2153
+ 1
2154
+ 4
2155
+ 7
2156
+ 49
2157
+ 4
2158
+ 1
2159
+ 81
2160
+ 8
2161
+ 19
2162
+ 1
2163
+ 8
2164
+ 101
2165
+ 1
2166
+ 15
2167
+ 20
2168
+ 0
2169
+ 7
2170
+ 9
2171
+ 49
2172
+ 2
2173
+ 1
2174
+ 9
2175
+ 126
2176
+ 20
2177
+ 1
2178
+ 20
2179
+ 0
2180
+ 7
2181
+ 9
2182
+ 49
2183
+ 3
2184
+ 1
2185
+ 81
2186
+ 8
2187
+ 19
2188
+ 1
2189
+ 8
2190
+ 127
2191
+ 1
2192
+ 15
2193
+ 20
2194
+ 1
2195
+ 11
2196
+ I
2197
+ 5
2198
+ I
2199
+ 2
2200
+ I
2201
+ 1
2202
+ I
2203
+ 1
2204
+ n
2205
+ p
2206
+ 10
2207
+ x
2208
+ 3
2209
+ dup
2210
+ x
2211
+ 5
2212
+ years
2213
+ x
2214
+ 2
2215
+ []
2216
+ x
2217
+ 6
2218
+ delete
2219
+ x
2220
+ 1
2221
+ *
2222
+ x
2223
+ 2
2224
+ >>
2225
+ x
2226
+ 6
2227
+ months
2228
+ x
2229
+ 5
2230
+ weeks
2231
+ x
2232
+ 1
2233
+ +
2234
+ x
2235
+ 4
2236
+ days
2237
+ p
2238
+ 17
2239
+ I
2240
+ -1
2241
+ I
2242
+ 6a
2243
+ I
2244
+ 0
2245
+ I
2246
+ 6b
2247
+ I
2248
+ 8
2249
+ I
2250
+ 6c
2251
+ I
2252
+ c
2253
+ I
2254
+ 6d
2255
+ I
2256
+ 2c
2257
+ I
2258
+ 6e
2259
+ I
2260
+ 47
2261
+ I
2262
+ 6f
2263
+ I
2264
+ 66
2265
+ I
2266
+ 70
2267
+ I
2268
+ 80
2269
+ I
2270
+ 71
2271
+ I
2272
+ 83
2273
+ x
2274
+ 99
2275
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
2276
+ p
2277
+ 2
2278
+ x
2279
+ 7
2280
+ options
2281
+ x
2282
+ 1
2283
+ d
2284
+ x
2285
+ 6
2286
+ change
2287
+ M
2288
+ 1
2289
+ n
2290
+ n
2291
+ x
2292
+ 6
2293
+ change
2294
+ i
2295
+ 115
2296
+ 44
2297
+ 43
2298
+ 0
2299
+ 13
2300
+ 71
2301
+ 1
2302
+ 47
2303
+ 9
2304
+ 66
2305
+ 47
2306
+ 49
2307
+ 2
2308
+ 0
2309
+ 13
2310
+ 20
2311
+ 0
2312
+ 7
2313
+ 3
2314
+ 49
2315
+ 4
2316
+ 1
2317
+ 13
2318
+ 10
2319
+ 29
2320
+ 15
2321
+ 5
2322
+ 49
2323
+ 3
2324
+ 0
2325
+ 20
2326
+ 0
2327
+ 7
2328
+ 5
2329
+ 49
2330
+ 4
2331
+ 1
2332
+ 13
2333
+ 10
2334
+ 44
2335
+ 15
2336
+ 5
2337
+ 49
2338
+ 5
2339
+ 0
2340
+ 20
2341
+ 0
2342
+ 7
2343
+ 6
2344
+ 49
2345
+ 4
2346
+ 1
2347
+ 13
2348
+ 10
2349
+ 59
2350
+ 15
2351
+ 5
2352
+ 49
2353
+ 6
2354
+ 0
2355
+ 47
2356
+ 49
2357
+ 7
2358
+ 3
2359
+ 15
2360
+ 8
2361
+ 114
2362
+ 20
2363
+ 0
2364
+ 7
2365
+ 3
2366
+ 49
2367
+ 4
2368
+ 1
2369
+ 13
2370
+ 10
2371
+ 81
2372
+ 15
2373
+ 5
2374
+ 49
2375
+ 3
2376
+ 0
2377
+ 20
2378
+ 0
2379
+ 7
2380
+ 5
2381
+ 49
2382
+ 4
2383
+ 1
2384
+ 13
2385
+ 10
2386
+ 96
2387
+ 15
2388
+ 5
2389
+ 49
2390
+ 5
2391
+ 0
2392
+ 20
2393
+ 0
2394
+ 7
2395
+ 6
2396
+ 49
2397
+ 4
2398
+ 1
2399
+ 13
2400
+ 10
2401
+ 111
2402
+ 15
2403
+ 5
2404
+ 49
2405
+ 6
2406
+ 0
2407
+ 49
2408
+ 1
2409
+ 3
2410
+ 11
2411
+ I
2412
+ 7
2413
+ I
2414
+ 1
2415
+ I
2416
+ 1
2417
+ I
2418
+ 1
2419
+ n
2420
+ p
2421
+ 8
2422
+ x
2423
+ 4
2424
+ Date
2425
+ x
2426
+ 3
2427
+ new
2428
+ x
2429
+ 8
2430
+ allocate
2431
+ x
2432
+ 4
2433
+ year
2434
+ x
2435
+ 2
2436
+ []
2437
+ x
2438
+ 5
2439
+ month
2440
+ x
2441
+ 3
2442
+ day
2443
+ x
2444
+ 10
2445
+ initialize
2446
+ p
2447
+ 17
2448
+ I
2449
+ -1
2450
+ I
2451
+ 7a
2452
+ I
2453
+ 0
2454
+ I
2455
+ 7b
2456
+ I
2457
+ e
2458
+ I
2459
+ 7c
2460
+ I
2461
+ 1d
2462
+ I
2463
+ 7d
2464
+ I
2465
+ 2c
2466
+ I
2467
+ 7e
2468
+ I
2469
+ 42
2470
+ I
2471
+ 7c
2472
+ I
2473
+ 51
2474
+ I
2475
+ 7d
2476
+ I
2477
+ 60
2478
+ I
2479
+ 7e
2480
+ I
2481
+ 73
2482
+ x
2483
+ 99
2484
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
2485
+ p
2486
+ 1
2487
+ x
2488
+ 7
2489
+ options
2490
+ x
2491
+ 10
2492
+ months_ago
2493
+ M
2494
+ 1
2495
+ n
2496
+ n
2497
+ x
2498
+ 10
2499
+ months_ago
2500
+ i
2501
+ 25
2502
+ 5
2503
+ 44
2504
+ 43
2505
+ 0
2506
+ 79
2507
+ 49
2508
+ 1
2509
+ 1
2510
+ 13
2511
+ 7
2512
+ 2
2513
+ 20
2514
+ 0
2515
+ 49
2516
+ 3
2517
+ 0
2518
+ 49
2519
+ 4
2520
+ 2
2521
+ 15
2522
+ 47
2523
+ 49
2524
+ 5
2525
+ 1
2526
+ 11
2527
+ I
2528
+ 6
2529
+ I
2530
+ 1
2531
+ I
2532
+ 1
2533
+ I
2534
+ 1
2535
+ n
2536
+ p
2537
+ 6
2538
+ x
2539
+ 4
2540
+ Hash
2541
+ x
2542
+ 16
2543
+ new_from_literal
2544
+ x
2545
+ 6
2546
+ months
2547
+ x
2548
+ 2
2549
+ -@
2550
+ x
2551
+ 3
2552
+ []=
2553
+ x
2554
+ 7
2555
+ advance
2556
+ p
2557
+ 5
2558
+ I
2559
+ -1
2560
+ I
2561
+ 83
2562
+ I
2563
+ 0
2564
+ I
2565
+ 84
2566
+ I
2567
+ 19
2568
+ x
2569
+ 99
2570
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
2571
+ p
2572
+ 1
2573
+ x
2574
+ 6
2575
+ months
2576
+ x
2577
+ 12
2578
+ months_since
2579
+ M
2580
+ 1
2581
+ n
2582
+ n
2583
+ x
2584
+ 12
2585
+ months_since
2586
+ i
2587
+ 22
2588
+ 5
2589
+ 44
2590
+ 43
2591
+ 0
2592
+ 79
2593
+ 49
2594
+ 1
2595
+ 1
2596
+ 13
2597
+ 7
2598
+ 2
2599
+ 20
2600
+ 0
2601
+ 49
2602
+ 3
2603
+ 2
2604
+ 15
2605
+ 47
2606
+ 49
2607
+ 4
2608
+ 1
2609
+ 11
2610
+ I
2611
+ 6
2612
+ I
2613
+ 1
2614
+ I
2615
+ 1
2616
+ I
2617
+ 1
2618
+ n
2619
+ p
2620
+ 5
2621
+ x
2622
+ 4
2623
+ Hash
2624
+ x
2625
+ 16
2626
+ new_from_literal
2627
+ x
2628
+ 6
2629
+ months
2630
+ x
2631
+ 3
2632
+ []=
2633
+ x
2634
+ 7
2635
+ advance
2636
+ p
2637
+ 5
2638
+ I
2639
+ -1
2640
+ I
2641
+ 88
2642
+ I
2643
+ 0
2644
+ I
2645
+ 89
2646
+ I
2647
+ 16
2648
+ x
2649
+ 99
2650
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
2651
+ p
2652
+ 1
2653
+ x
2654
+ 6
2655
+ months
2656
+ x
2657
+ 9
2658
+ years_ago
2659
+ M
2660
+ 1
2661
+ n
2662
+ n
2663
+ x
2664
+ 9
2665
+ years_ago
2666
+ i
2667
+ 25
2668
+ 5
2669
+ 44
2670
+ 43
2671
+ 0
2672
+ 79
2673
+ 49
2674
+ 1
2675
+ 1
2676
+ 13
2677
+ 7
2678
+ 2
2679
+ 20
2680
+ 0
2681
+ 49
2682
+ 3
2683
+ 0
2684
+ 49
2685
+ 4
2686
+ 2
2687
+ 15
2688
+ 47
2689
+ 49
2690
+ 5
2691
+ 1
2692
+ 11
2693
+ I
2694
+ 6
2695
+ I
2696
+ 1
2697
+ I
2698
+ 1
2699
+ I
2700
+ 1
2701
+ n
2702
+ p
2703
+ 6
2704
+ x
2705
+ 4
2706
+ Hash
2707
+ x
2708
+ 16
2709
+ new_from_literal
2710
+ x
2711
+ 5
2712
+ years
2713
+ x
2714
+ 2
2715
+ -@
2716
+ x
2717
+ 3
2718
+ []=
2719
+ x
2720
+ 7
2721
+ advance
2722
+ p
2723
+ 5
2724
+ I
2725
+ -1
2726
+ I
2727
+ 8d
2728
+ I
2729
+ 0
2730
+ I
2731
+ 8e
2732
+ I
2733
+ 19
2734
+ x
2735
+ 99
2736
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
2737
+ p
2738
+ 1
2739
+ x
2740
+ 5
2741
+ years
2742
+ x
2743
+ 11
2744
+ years_since
2745
+ M
2746
+ 1
2747
+ n
2748
+ n
2749
+ x
2750
+ 11
2751
+ years_since
2752
+ i
2753
+ 22
2754
+ 5
2755
+ 44
2756
+ 43
2757
+ 0
2758
+ 79
2759
+ 49
2760
+ 1
2761
+ 1
2762
+ 13
2763
+ 7
2764
+ 2
2765
+ 20
2766
+ 0
2767
+ 49
2768
+ 3
2769
+ 2
2770
+ 15
2771
+ 47
2772
+ 49
2773
+ 4
2774
+ 1
2775
+ 11
2776
+ I
2777
+ 6
2778
+ I
2779
+ 1
2780
+ I
2781
+ 1
2782
+ I
2783
+ 1
2784
+ n
2785
+ p
2786
+ 5
2787
+ x
2788
+ 4
2789
+ Hash
2790
+ x
2791
+ 16
2792
+ new_from_literal
2793
+ x
2794
+ 5
2795
+ years
2796
+ x
2797
+ 3
2798
+ []=
2799
+ x
2800
+ 7
2801
+ advance
2802
+ p
2803
+ 5
2804
+ I
2805
+ -1
2806
+ I
2807
+ 92
2808
+ I
2809
+ 0
2810
+ I
2811
+ 93
2812
+ I
2813
+ 16
2814
+ x
2815
+ 99
2816
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
2817
+ p
2818
+ 1
2819
+ x
2820
+ 5
2821
+ years
2822
+ x
2823
+ 9
2824
+ prev_year
2825
+ x
2826
+ 15
2827
+ method_defined?
2828
+ M
2829
+ 1
2830
+ n
2831
+ n
2832
+ x
2833
+ 9
2834
+ prev_year
2835
+ i
2836
+ 7
2837
+ 5
2838
+ 79
2839
+ 47
2840
+ 49
2841
+ 0
2842
+ 1
2843
+ 11
2844
+ I
2845
+ 2
2846
+ I
2847
+ 0
2848
+ I
2849
+ 0
2850
+ I
2851
+ 0
2852
+ n
2853
+ p
2854
+ 1
2855
+ x
2856
+ 9
2857
+ years_ago
2858
+ p
2859
+ 5
2860
+ I
2861
+ -1
2862
+ I
2863
+ 97
2864
+ I
2865
+ 0
2866
+ I
2867
+ 98
2868
+ I
2869
+ 7
2870
+ x
2871
+ 99
2872
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
2873
+ p
2874
+ 0
2875
+ x
2876
+ 9
2877
+ next_year
2878
+ M
2879
+ 1
2880
+ n
2881
+ n
2882
+ x
2883
+ 9
2884
+ next_year
2885
+ i
2886
+ 7
2887
+ 5
2888
+ 79
2889
+ 47
2890
+ 49
2891
+ 0
2892
+ 1
2893
+ 11
2894
+ I
2895
+ 2
2896
+ I
2897
+ 0
2898
+ I
2899
+ 0
2900
+ I
2901
+ 0
2902
+ n
2903
+ p
2904
+ 1
2905
+ x
2906
+ 11
2907
+ years_since
2908
+ p
2909
+ 5
2910
+ I
2911
+ -1
2912
+ I
2913
+ 9c
2914
+ I
2915
+ 0
2916
+ I
2917
+ 9d
2918
+ I
2919
+ 7
2920
+ x
2921
+ 99
2922
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
2923
+ p
2924
+ 0
2925
+ x
2926
+ 10
2927
+ prev_month
2928
+ M
2929
+ 1
2930
+ n
2931
+ n
2932
+ x
2933
+ 10
2934
+ prev_month
2935
+ i
2936
+ 7
2937
+ 5
2938
+ 79
2939
+ 47
2940
+ 49
2941
+ 0
2942
+ 1
2943
+ 11
2944
+ I
2945
+ 2
2946
+ I
2947
+ 0
2948
+ I
2949
+ 0
2950
+ I
2951
+ 0
2952
+ n
2953
+ p
2954
+ 1
2955
+ x
2956
+ 10
2957
+ months_ago
2958
+ p
2959
+ 5
2960
+ I
2961
+ -1
2962
+ I
2963
+ a1
2964
+ I
2965
+ 0
2966
+ I
2967
+ a2
2968
+ I
2969
+ 7
2970
+ x
2971
+ 99
2972
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
2973
+ p
2974
+ 0
2975
+ x
2976
+ 10
2977
+ next_month
2978
+ M
2979
+ 1
2980
+ n
2981
+ n
2982
+ x
2983
+ 10
2984
+ next_month
2985
+ i
2986
+ 7
2987
+ 5
2988
+ 79
2989
+ 47
2990
+ 49
2991
+ 0
2992
+ 1
2993
+ 11
2994
+ I
2995
+ 2
2996
+ I
2997
+ 0
2998
+ I
2999
+ 0
3000
+ I
3001
+ 0
3002
+ n
3003
+ p
3004
+ 1
3005
+ x
3006
+ 12
3007
+ months_since
3008
+ p
3009
+ 5
3010
+ I
3011
+ -1
3012
+ I
3013
+ a6
3014
+ I
3015
+ 0
3016
+ I
3017
+ a7
3018
+ I
3019
+ 7
3020
+ x
3021
+ 99
3022
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
3023
+ p
3024
+ 0
3025
+ x
3026
+ 17
3027
+ beginning_of_week
3028
+ M
3029
+ 1
3030
+ n
3031
+ n
3032
+ x
3033
+ 17
3034
+ beginning_of_week
3035
+ i
3036
+ 55
3037
+ 5
3038
+ 49
3039
+ 0
3040
+ 0
3041
+ 78
3042
+ 83
3043
+ 1
3044
+ 10
3045
+ 12
3046
+ 2
3047
+ 8
3048
+ 13
3049
+ 3
3050
+ 9
3051
+ 24
3052
+ 5
3053
+ 49
3054
+ 0
3055
+ 0
3056
+ 79
3057
+ 82
3058
+ 2
3059
+ 8
3060
+ 26
3061
+ 4
3062
+ 6
3063
+ 19
3064
+ 0
3065
+ 15
3066
+ 5
3067
+ 20
3068
+ 0
3069
+ 82
3070
+ 2
3071
+ 19
3072
+ 1
3073
+ 15
3074
+ 5
3075
+ 7
3076
+ 3
3077
+ 49
3078
+ 4
3079
+ 1
3080
+ 9
3081
+ 52
3082
+ 20
3083
+ 1
3084
+ 49
3085
+ 5
3086
+ 0
3087
+ 8
3088
+ 54
3089
+ 20
3090
+ 1
3091
+ 11
3092
+ I
3093
+ 4
3094
+ I
3095
+ 2
3096
+ I
3097
+ 0
3098
+ I
3099
+ 0
3100
+ n
3101
+ p
3102
+ 6
3103
+ x
3104
+ 4
3105
+ wday
3106
+ x
3107
+ 2
3108
+ ==
3109
+ x
3110
+ 1
3111
+ -
3112
+ x
3113
+ 4
3114
+ time
3115
+ x
3116
+ 10
3117
+ acts_like?
3118
+ x
3119
+ 8
3120
+ midnight
3121
+ p
3122
+ 9
3123
+ I
3124
+ -1
3125
+ I
3126
+ ab
3127
+ I
3128
+ 0
3129
+ I
3130
+ ac
3131
+ I
3132
+ 1d
3133
+ I
3134
+ ad
3135
+ I
3136
+ 25
3137
+ I
3138
+ ae
3139
+ I
3140
+ 37
3141
+ x
3142
+ 99
3143
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
3144
+ p
3145
+ 2
3146
+ x
3147
+ 14
3148
+ days_to_monday
3149
+ x
3150
+ 6
3151
+ result
3152
+ x
3153
+ 6
3154
+ monday
3155
+ x
3156
+ 20
3157
+ at_beginning_of_week
3158
+ x
3159
+ 11
3160
+ end_of_week
3161
+ M
3162
+ 1
3163
+ n
3164
+ n
3165
+ x
3166
+ 11
3167
+ end_of_week
3168
+ i
3169
+ 58
3170
+ 5
3171
+ 49
3172
+ 0
3173
+ 0
3174
+ 78
3175
+ 83
3176
+ 1
3177
+ 10
3178
+ 12
3179
+ 2
3180
+ 8
3181
+ 13
3182
+ 3
3183
+ 9
3184
+ 25
3185
+ 4
3186
+ 7
3187
+ 5
3188
+ 49
3189
+ 0
3190
+ 0
3191
+ 82
3192
+ 2
3193
+ 8
3194
+ 26
3195
+ 78
3196
+ 19
3197
+ 0
3198
+ 15
3199
+ 5
3200
+ 20
3201
+ 0
3202
+ 49
3203
+ 3
3204
+ 0
3205
+ 81
3206
+ 4
3207
+ 19
3208
+ 1
3209
+ 15
3210
+ 5
3211
+ 7
3212
+ 5
3213
+ 49
3214
+ 6
3215
+ 1
3216
+ 9
3217
+ 55
3218
+ 20
3219
+ 1
3220
+ 49
3221
+ 7
3222
+ 0
3223
+ 8
3224
+ 57
3225
+ 20
3226
+ 1
3227
+ 11
3228
+ I
3229
+ 4
3230
+ I
3231
+ 2
3232
+ I
3233
+ 0
3234
+ I
3235
+ 0
3236
+ n
3237
+ p
3238
+ 8
3239
+ x
3240
+ 4
3241
+ wday
3242
+ x
3243
+ 2
3244
+ ==
3245
+ x
3246
+ 1
3247
+ -
3248
+ x
3249
+ 4
3250
+ days
3251
+ x
3252
+ 1
3253
+ +
3254
+ x
3255
+ 4
3256
+ time
3257
+ x
3258
+ 10
3259
+ acts_like?
3260
+ x
3261
+ 10
3262
+ end_of_day
3263
+ p
3264
+ 9
3265
+ I
3266
+ -1
3267
+ I
3268
+ b4
3269
+ I
3270
+ 0
3271
+ I
3272
+ b5
3273
+ I
3274
+ 1d
3275
+ I
3276
+ b6
3277
+ I
3278
+ 28
3279
+ I
3280
+ b7
3281
+ I
3282
+ 3a
3283
+ x
3284
+ 99
3285
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
3286
+ p
3287
+ 2
3288
+ x
3289
+ 14
3290
+ days_to_sunday
3291
+ x
3292
+ 6
3293
+ result
3294
+ x
3295
+ 6
3296
+ sunday
3297
+ x
3298
+ 14
3299
+ at_end_of_week
3300
+ x
3301
+ 9
3302
+ next_week
3303
+ M
3304
+ 1
3305
+ n
3306
+ n
3307
+ x
3308
+ 9
3309
+ next_week
3310
+ i
3311
+ 133
3312
+ 23
3313
+ 0
3314
+ 10
3315
+ 9
3316
+ 7
3317
+ 0
3318
+ 19
3319
+ 0
3320
+ 15
3321
+ 44
3322
+ 43
3323
+ 1
3324
+ 4
3325
+ 7
3326
+ 49
3327
+ 2
3328
+ 1
3329
+ 13
3330
+ 7
3331
+ 0
3332
+ 78
3333
+ 49
3334
+ 3
3335
+ 2
3336
+ 15
3337
+ 13
3338
+ 7
3339
+ 4
3340
+ 79
3341
+ 49
3342
+ 3
3343
+ 2
3344
+ 15
3345
+ 13
3346
+ 7
3347
+ 5
3348
+ 80
3349
+ 49
3350
+ 3
3351
+ 2
3352
+ 15
3353
+ 13
3354
+ 7
3355
+ 6
3356
+ 4
3357
+ 3
3358
+ 49
3359
+ 3
3360
+ 2
3361
+ 15
3362
+ 13
3363
+ 7
3364
+ 7
3365
+ 4
3366
+ 4
3367
+ 49
3368
+ 3
3369
+ 2
3370
+ 15
3371
+ 13
3372
+ 7
3373
+ 8
3374
+ 4
3375
+ 5
3376
+ 49
3377
+ 3
3378
+ 2
3379
+ 15
3380
+ 13
3381
+ 7
3382
+ 9
3383
+ 4
3384
+ 6
3385
+ 49
3386
+ 3
3387
+ 2
3388
+ 15
3389
+ 19
3390
+ 1
3391
+ 15
3392
+ 5
3393
+ 4
3394
+ 7
3395
+ 81
3396
+ 10
3397
+ 49
3398
+ 11
3399
+ 0
3400
+ 20
3401
+ 1
3402
+ 20
3403
+ 0
3404
+ 49
3405
+ 12
3406
+ 1
3407
+ 81
3408
+ 10
3409
+ 19
3410
+ 2
3411
+ 15
3412
+ 5
3413
+ 7
3414
+ 13
3415
+ 49
3416
+ 14
3417
+ 1
3418
+ 9
3419
+ 130
3420
+ 20
3421
+ 2
3422
+ 44
3423
+ 43
3424
+ 1
3425
+ 79
3426
+ 49
3427
+ 2
3428
+ 1
3429
+ 13
3430
+ 7
3431
+ 15
3432
+ 78
3433
+ 49
3434
+ 3
3435
+ 2
3436
+ 15
3437
+ 49
3438
+ 16
3439
+ 1
3440
+ 8
3441
+ 132
3442
+ 20
3443
+ 2
3444
+ 11
3445
+ I
3446
+ 8
3447
+ I
3448
+ 3
3449
+ I
3450
+ 0
3451
+ I
3452
+ 1
3453
+ n
3454
+ p
3455
+ 17
3456
+ x
3457
+ 6
3458
+ monday
3459
+ x
3460
+ 4
3461
+ Hash
3462
+ x
3463
+ 16
3464
+ new_from_literal
3465
+ x
3466
+ 3
3467
+ []=
3468
+ x
3469
+ 7
3470
+ tuesday
3471
+ x
3472
+ 9
3473
+ wednesday
3474
+ x
3475
+ 8
3476
+ thursday
3477
+ x
3478
+ 6
3479
+ friday
3480
+ x
3481
+ 8
3482
+ saturday
3483
+ x
3484
+ 6
3485
+ sunday
3486
+ x
3487
+ 1
3488
+ +
3489
+ x
3490
+ 17
3491
+ beginning_of_week
3492
+ x
3493
+ 2
3494
+ []
3495
+ x
3496
+ 4
3497
+ time
3498
+ x
3499
+ 10
3500
+ acts_like?
3501
+ x
3502
+ 4
3503
+ hour
3504
+ x
3505
+ 6
3506
+ change
3507
+ p
3508
+ 9
3509
+ I
3510
+ -1
3511
+ I
3512
+ bd
3513
+ I
3514
+ 9
3515
+ I
3516
+ be
3517
+ I
3518
+ 50
3519
+ I
3520
+ bf
3521
+ I
3522
+ 64
3523
+ I
3524
+ c0
3525
+ I
3526
+ 85
3527
+ x
3528
+ 99
3529
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
3530
+ p
3531
+ 3
3532
+ x
3533
+ 3
3534
+ day
3535
+ x
3536
+ 14
3537
+ days_into_week
3538
+ x
3539
+ 6
3540
+ result
3541
+ x
3542
+ 18
3543
+ beginning_of_month
3544
+ M
3545
+ 1
3546
+ n
3547
+ n
3548
+ x
3549
+ 18
3550
+ beginning_of_month
3551
+ i
3552
+ 76
3553
+ 5
3554
+ 7
3555
+ 0
3556
+ 49
3557
+ 1
3558
+ 1
3559
+ 9
3560
+ 55
3561
+ 5
3562
+ 44
3563
+ 43
3564
+ 2
3565
+ 4
3566
+ 4
3567
+ 49
3568
+ 3
3569
+ 1
3570
+ 13
3571
+ 7
3572
+ 4
3573
+ 79
3574
+ 49
3575
+ 5
3576
+ 2
3577
+ 15
3578
+ 13
3579
+ 7
3580
+ 6
3581
+ 78
3582
+ 49
3583
+ 5
3584
+ 2
3585
+ 15
3586
+ 13
3587
+ 7
3588
+ 7
3589
+ 78
3590
+ 49
3591
+ 5
3592
+ 2
3593
+ 15
3594
+ 13
3595
+ 7
3596
+ 8
3597
+ 78
3598
+ 49
3599
+ 5
3600
+ 2
3601
+ 15
3602
+ 47
3603
+ 49
3604
+ 9
3605
+ 1
3606
+ 8
3607
+ 75
3608
+ 5
3609
+ 44
3610
+ 43
3611
+ 2
3612
+ 79
3613
+ 49
3614
+ 3
3615
+ 1
3616
+ 13
3617
+ 7
3618
+ 4
3619
+ 79
3620
+ 49
3621
+ 5
3622
+ 2
3623
+ 15
3624
+ 47
3625
+ 49
3626
+ 9
3627
+ 1
3628
+ 11
3629
+ I
3630
+ 5
3631
+ I
3632
+ 0
3633
+ I
3634
+ 0
3635
+ I
3636
+ 0
3637
+ n
3638
+ p
3639
+ 10
3640
+ x
3641
+ 4
3642
+ time
3643
+ x
3644
+ 10
3645
+ acts_like?
3646
+ x
3647
+ 4
3648
+ Hash
3649
+ x
3650
+ 16
3651
+ new_from_literal
3652
+ x
3653
+ 3
3654
+ day
3655
+ x
3656
+ 3
3657
+ []=
3658
+ x
3659
+ 4
3660
+ hour
3661
+ x
3662
+ 3
3663
+ min
3664
+ x
3665
+ 3
3666
+ sec
3667
+ x
3668
+ 6
3669
+ change
3670
+ p
3671
+ 5
3672
+ I
3673
+ -1
3674
+ I
3675
+ c4
3676
+ I
3677
+ 0
3678
+ I
3679
+ c5
3680
+ I
3681
+ 4c
3682
+ x
3683
+ 99
3684
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
3685
+ p
3686
+ 0
3687
+ x
3688
+ 21
3689
+ at_beginning_of_month
3690
+ x
3691
+ 12
3692
+ end_of_month
3693
+ M
3694
+ 1
3695
+ n
3696
+ n
3697
+ x
3698
+ 12
3699
+ end_of_month
3700
+ i
3701
+ 98
3702
+ 44
3703
+ 43
3704
+ 0
3705
+ 5
3706
+ 49
3707
+ 1
3708
+ 0
3709
+ 5
3710
+ 49
3711
+ 2
3712
+ 0
3713
+ 49
3714
+ 3
3715
+ 2
3716
+ 19
3717
+ 0
3718
+ 15
3719
+ 5
3720
+ 7
3721
+ 4
3722
+ 49
3723
+ 5
3724
+ 1
3725
+ 9
3726
+ 76
3727
+ 5
3728
+ 44
3729
+ 43
3730
+ 6
3731
+ 4
3732
+ 4
3733
+ 49
3734
+ 7
3735
+ 1
3736
+ 13
3737
+ 7
3738
+ 8
3739
+ 20
3740
+ 0
3741
+ 49
3742
+ 9
3743
+ 2
3744
+ 15
3745
+ 13
3746
+ 7
3747
+ 10
3748
+ 4
3749
+ 23
3750
+ 49
3751
+ 9
3752
+ 2
3753
+ 15
3754
+ 13
3755
+ 7
3756
+ 11
3757
+ 4
3758
+ 59
3759
+ 49
3760
+ 9
3761
+ 2
3762
+ 15
3763
+ 13
3764
+ 7
3765
+ 12
3766
+ 4
3767
+ 59
3768
+ 49
3769
+ 9
3770
+ 2
3771
+ 15
3772
+ 47
3773
+ 49
3774
+ 13
3775
+ 1
3776
+ 8
3777
+ 97
3778
+ 5
3779
+ 44
3780
+ 43
3781
+ 6
3782
+ 79
3783
+ 49
3784
+ 7
3785
+ 1
3786
+ 13
3787
+ 7
3788
+ 8
3789
+ 20
3790
+ 0
3791
+ 49
3792
+ 9
3793
+ 2
3794
+ 15
3795
+ 47
3796
+ 49
3797
+ 13
3798
+ 1
3799
+ 11
3800
+ I
3801
+ 6
3802
+ I
3803
+ 1
3804
+ I
3805
+ 0
3806
+ I
3807
+ 0
3808
+ n
3809
+ p
3810
+ 14
3811
+ x
3812
+ 4
3813
+ Time
3814
+ x
3815
+ 5
3816
+ month
3817
+ x
3818
+ 4
3819
+ year
3820
+ x
3821
+ 13
3822
+ days_in_month
3823
+ x
3824
+ 4
3825
+ time
3826
+ x
3827
+ 10
3828
+ acts_like?
3829
+ x
3830
+ 4
3831
+ Hash
3832
+ x
3833
+ 16
3834
+ new_from_literal
3835
+ x
3836
+ 3
3837
+ day
3838
+ x
3839
+ 3
3840
+ []=
3841
+ x
3842
+ 4
3843
+ hour
3844
+ x
3845
+ 3
3846
+ min
3847
+ x
3848
+ 3
3849
+ sec
3850
+ x
3851
+ 6
3852
+ change
3853
+ p
3854
+ 7
3855
+ I
3856
+ -1
3857
+ I
3858
+ ca
3859
+ I
3860
+ 0
3861
+ I
3862
+ cb
3863
+ I
3864
+ 11
3865
+ I
3866
+ cc
3867
+ I
3868
+ 62
3869
+ x
3870
+ 99
3871
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
3872
+ p
3873
+ 1
3874
+ x
3875
+ 8
3876
+ last_day
3877
+ x
3878
+ 15
3879
+ at_end_of_month
3880
+ x
3881
+ 20
3882
+ beginning_of_quarter
3883
+ M
3884
+ 1
3885
+ n
3886
+ n
3887
+ x
3888
+ 20
3889
+ beginning_of_quarter
3890
+ i
3891
+ 35
3892
+ 5
3893
+ 48
3894
+ 0
3895
+ 44
3896
+ 43
3897
+ 1
3898
+ 79
3899
+ 49
3900
+ 2
3901
+ 1
3902
+ 13
3903
+ 7
3904
+ 3
3905
+ 4
3906
+ 10
3907
+ 4
3908
+ 7
3909
+ 4
3910
+ 4
3911
+ 79
3912
+ 35
3913
+ 4
3914
+ 56
3915
+ 4
3916
+ 50
3917
+ 5
3918
+ 0
3919
+ 49
3920
+ 6
3921
+ 2
3922
+ 15
3923
+ 49
3924
+ 7
3925
+ 1
3926
+ 11
3927
+ I
3928
+ 8
3929
+ I
3930
+ 0
3931
+ I
3932
+ 0
3933
+ I
3934
+ 0
3935
+ n
3936
+ p
3937
+ 8
3938
+ x
3939
+ 18
3940
+ beginning_of_month
3941
+ x
3942
+ 4
3943
+ Hash
3944
+ x
3945
+ 16
3946
+ new_from_literal
3947
+ x
3948
+ 5
3949
+ month
3950
+ M
3951
+ 1
3952
+ p
3953
+ 2
3954
+ x
3955
+ 9
3956
+ for_block
3957
+ t
3958
+ n
3959
+ x
3960
+ 20
3961
+ beginning_of_quarter
3962
+ i
3963
+ 14
3964
+ 57
3965
+ 19
3966
+ 0
3967
+ 15
3968
+ 20
3969
+ 0
3970
+ 5
3971
+ 49
3972
+ 0
3973
+ 0
3974
+ 49
3975
+ 1
3976
+ 1
3977
+ 11
3978
+ I
3979
+ 4
3980
+ I
3981
+ 1
3982
+ I
3983
+ 1
3984
+ I
3985
+ 1
3986
+ n
3987
+ p
3988
+ 2
3989
+ x
3990
+ 5
3991
+ month
3992
+ x
3993
+ 2
3994
+ <=
3995
+ p
3996
+ 3
3997
+ I
3998
+ 0
3999
+ I
4000
+ d2
4001
+ I
4002
+ e
4003
+ x
4004
+ 99
4005
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
4006
+ p
4007
+ 1
4008
+ x
4009
+ 1
4010
+ m
4011
+ x
4012
+ 6
4013
+ detect
4014
+ x
4015
+ 3
4016
+ []=
4017
+ x
4018
+ 6
4019
+ change
4020
+ p
4021
+ 5
4022
+ I
4023
+ -1
4024
+ I
4025
+ d1
4026
+ I
4027
+ 0
4028
+ I
4029
+ d2
4030
+ I
4031
+ 23
4032
+ x
4033
+ 99
4034
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
4035
+ p
4036
+ 0
4037
+ x
4038
+ 23
4039
+ at_beginning_of_quarter
4040
+ x
4041
+ 14
4042
+ end_of_quarter
4043
+ M
4044
+ 1
4045
+ n
4046
+ n
4047
+ x
4048
+ 14
4049
+ end_of_quarter
4050
+ i
4051
+ 39
4052
+ 5
4053
+ 48
4054
+ 0
4055
+ 44
4056
+ 43
4057
+ 1
4058
+ 79
4059
+ 49
4060
+ 2
4061
+ 1
4062
+ 13
4063
+ 7
4064
+ 3
4065
+ 4
4066
+ 3
4067
+ 4
4068
+ 6
4069
+ 4
4070
+ 9
4071
+ 4
4072
+ 12
4073
+ 35
4074
+ 4
4075
+ 56
4076
+ 4
4077
+ 50
4078
+ 5
4079
+ 0
4080
+ 49
4081
+ 6
4082
+ 2
4083
+ 15
4084
+ 49
4085
+ 7
4086
+ 1
4087
+ 49
4088
+ 8
4089
+ 0
4090
+ 11
4091
+ I
4092
+ 8
4093
+ I
4094
+ 0
4095
+ I
4096
+ 0
4097
+ I
4098
+ 0
4099
+ n
4100
+ p
4101
+ 9
4102
+ x
4103
+ 18
4104
+ beginning_of_month
4105
+ x
4106
+ 4
4107
+ Hash
4108
+ x
4109
+ 16
4110
+ new_from_literal
4111
+ x
4112
+ 5
4113
+ month
4114
+ M
4115
+ 1
4116
+ p
4117
+ 2
4118
+ x
4119
+ 9
4120
+ for_block
4121
+ t
4122
+ n
4123
+ x
4124
+ 14
4125
+ end_of_quarter
4126
+ i
4127
+ 14
4128
+ 57
4129
+ 19
4130
+ 0
4131
+ 15
4132
+ 20
4133
+ 0
4134
+ 5
4135
+ 49
4136
+ 0
4137
+ 0
4138
+ 49
4139
+ 1
4140
+ 1
4141
+ 11
4142
+ I
4143
+ 4
4144
+ I
4145
+ 1
4146
+ I
4147
+ 1
4148
+ I
4149
+ 1
4150
+ n
4151
+ p
4152
+ 2
4153
+ x
4154
+ 5
4155
+ month
4156
+ x
4157
+ 2
4158
+ >=
4159
+ p
4160
+ 3
4161
+ I
4162
+ 0
4163
+ I
4164
+ d8
4165
+ I
4166
+ e
4167
+ x
4168
+ 99
4169
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
4170
+ p
4171
+ 1
4172
+ x
4173
+ 1
4174
+ m
4175
+ x
4176
+ 6
4177
+ detect
4178
+ x
4179
+ 3
4180
+ []=
4181
+ x
4182
+ 6
4183
+ change
4184
+ x
4185
+ 12
4186
+ end_of_month
4187
+ p
4188
+ 5
4189
+ I
4190
+ -1
4191
+ I
4192
+ d7
4193
+ I
4194
+ 0
4195
+ I
4196
+ d8
4197
+ I
4198
+ 27
4199
+ x
4200
+ 99
4201
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
4202
+ p
4203
+ 0
4204
+ x
4205
+ 17
4206
+ at_end_of_quarter
4207
+ x
4208
+ 17
4209
+ beginning_of_year
4210
+ M
4211
+ 1
4212
+ n
4213
+ n
4214
+ x
4215
+ 17
4216
+ beginning_of_year
4217
+ i
4218
+ 92
4219
+ 5
4220
+ 7
4221
+ 0
4222
+ 49
4223
+ 1
4224
+ 1
4225
+ 9
4226
+ 63
4227
+ 5
4228
+ 44
4229
+ 43
4230
+ 2
4231
+ 4
4232
+ 5
4233
+ 49
4234
+ 3
4235
+ 1
4236
+ 13
4237
+ 7
4238
+ 4
4239
+ 79
4240
+ 49
4241
+ 5
4242
+ 2
4243
+ 15
4244
+ 13
4245
+ 7
4246
+ 6
4247
+ 79
4248
+ 49
4249
+ 5
4250
+ 2
4251
+ 15
4252
+ 13
4253
+ 7
4254
+ 7
4255
+ 78
4256
+ 49
4257
+ 5
4258
+ 2
4259
+ 15
4260
+ 13
4261
+ 7
4262
+ 8
4263
+ 78
4264
+ 49
4265
+ 5
4266
+ 2
4267
+ 15
4268
+ 13
4269
+ 7
4270
+ 9
4271
+ 78
4272
+ 49
4273
+ 5
4274
+ 2
4275
+ 15
4276
+ 47
4277
+ 49
4278
+ 10
4279
+ 1
4280
+ 8
4281
+ 91
4282
+ 5
4283
+ 44
4284
+ 43
4285
+ 2
4286
+ 80
4287
+ 49
4288
+ 3
4289
+ 1
4290
+ 13
4291
+ 7
4292
+ 4
4293
+ 79
4294
+ 49
4295
+ 5
4296
+ 2
4297
+ 15
4298
+ 13
4299
+ 7
4300
+ 6
4301
+ 79
4302
+ 49
4303
+ 5
4304
+ 2
4305
+ 15
4306
+ 47
4307
+ 49
4308
+ 10
4309
+ 1
4310
+ 11
4311
+ I
4312
+ 5
4313
+ I
4314
+ 0
4315
+ I
4316
+ 0
4317
+ I
4318
+ 0
4319
+ n
4320
+ p
4321
+ 11
4322
+ x
4323
+ 4
4324
+ time
4325
+ x
4326
+ 10
4327
+ acts_like?
4328
+ x
4329
+ 4
4330
+ Hash
4331
+ x
4332
+ 16
4333
+ new_from_literal
4334
+ x
4335
+ 5
4336
+ month
4337
+ x
4338
+ 3
4339
+ []=
4340
+ x
4341
+ 3
4342
+ day
4343
+ x
4344
+ 4
4345
+ hour
4346
+ x
4347
+ 3
4348
+ min
4349
+ x
4350
+ 3
4351
+ sec
4352
+ x
4353
+ 6
4354
+ change
4355
+ p
4356
+ 5
4357
+ I
4358
+ -1
4359
+ I
4360
+ dd
4361
+ I
4362
+ 0
4363
+ I
4364
+ de
4365
+ I
4366
+ 5c
4367
+ x
4368
+ 99
4369
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
4370
+ p
4371
+ 0
4372
+ x
4373
+ 20
4374
+ at_beginning_of_year
4375
+ x
4376
+ 11
4377
+ end_of_year
4378
+ M
4379
+ 1
4380
+ n
4381
+ n
4382
+ x
4383
+ 11
4384
+ end_of_year
4385
+ i
4386
+ 99
4387
+ 5
4388
+ 7
4389
+ 0
4390
+ 49
4391
+ 1
4392
+ 1
4393
+ 9
4394
+ 68
4395
+ 5
4396
+ 44
4397
+ 43
4398
+ 2
4399
+ 4
4400
+ 5
4401
+ 49
4402
+ 3
4403
+ 1
4404
+ 13
4405
+ 7
4406
+ 4
4407
+ 4
4408
+ 12
4409
+ 49
4410
+ 5
4411
+ 2
4412
+ 15
4413
+ 13
4414
+ 7
4415
+ 6
4416
+ 4
4417
+ 31
4418
+ 49
4419
+ 5
4420
+ 2
4421
+ 15
4422
+ 13
4423
+ 7
4424
+ 7
4425
+ 4
4426
+ 23
4427
+ 49
4428
+ 5
4429
+ 2
4430
+ 15
4431
+ 13
4432
+ 7
4433
+ 8
4434
+ 4
4435
+ 59
4436
+ 49
4437
+ 5
4438
+ 2
4439
+ 15
4440
+ 13
4441
+ 7
4442
+ 9
4443
+ 4
4444
+ 59
4445
+ 49
4446
+ 5
4447
+ 2
4448
+ 15
4449
+ 47
4450
+ 49
4451
+ 10
4452
+ 1
4453
+ 8
4454
+ 98
4455
+ 5
4456
+ 44
4457
+ 43
4458
+ 2
4459
+ 80
4460
+ 49
4461
+ 3
4462
+ 1
4463
+ 13
4464
+ 7
4465
+ 4
4466
+ 4
4467
+ 12
4468
+ 49
4469
+ 5
4470
+ 2
4471
+ 15
4472
+ 13
4473
+ 7
4474
+ 6
4475
+ 4
4476
+ 31
4477
+ 49
4478
+ 5
4479
+ 2
4480
+ 15
4481
+ 47
4482
+ 49
4483
+ 10
4484
+ 1
4485
+ 11
4486
+ I
4487
+ 5
4488
+ I
4489
+ 0
4490
+ I
4491
+ 0
4492
+ I
4493
+ 0
4494
+ n
4495
+ p
4496
+ 11
4497
+ x
4498
+ 4
4499
+ time
4500
+ x
4501
+ 10
4502
+ acts_like?
4503
+ x
4504
+ 4
4505
+ Hash
4506
+ x
4507
+ 16
4508
+ new_from_literal
4509
+ x
4510
+ 5
4511
+ month
4512
+ x
4513
+ 3
4514
+ []=
4515
+ x
4516
+ 3
4517
+ day
4518
+ x
4519
+ 4
4520
+ hour
4521
+ x
4522
+ 3
4523
+ min
4524
+ x
4525
+ 3
4526
+ sec
4527
+ x
4528
+ 6
4529
+ change
4530
+ p
4531
+ 5
4532
+ I
4533
+ -1
4534
+ I
4535
+ e3
4536
+ I
4537
+ 0
4538
+ I
4539
+ e4
4540
+ I
4541
+ 63
4542
+ x
4543
+ 99
4544
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
4545
+ p
4546
+ 0
4547
+ x
4548
+ 14
4549
+ at_end_of_year
4550
+ x
4551
+ 9
4552
+ yesterday
4553
+ M
4554
+ 1
4555
+ n
4556
+ n
4557
+ x
4558
+ 9
4559
+ yesterday
4560
+ i
4561
+ 5
4562
+ 5
4563
+ 79
4564
+ 82
4565
+ 0
4566
+ 11
4567
+ I
4568
+ 2
4569
+ I
4570
+ 0
4571
+ I
4572
+ 0
4573
+ I
4574
+ 0
4575
+ n
4576
+ p
4577
+ 1
4578
+ x
4579
+ 1
4580
+ -
4581
+ p
4582
+ 5
4583
+ I
4584
+ -1
4585
+ I
4586
+ e9
4587
+ I
4588
+ 0
4589
+ I
4590
+ ea
4591
+ I
4592
+ 5
4593
+ x
4594
+ 99
4595
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
4596
+ p
4597
+ 0
4598
+ x
4599
+ 8
4600
+ tomorrow
4601
+ M
4602
+ 1
4603
+ n
4604
+ n
4605
+ x
4606
+ 8
4607
+ tomorrow
4608
+ i
4609
+ 5
4610
+ 5
4611
+ 79
4612
+ 81
4613
+ 0
4614
+ 11
4615
+ I
4616
+ 2
4617
+ I
4618
+ 0
4619
+ I
4620
+ 0
4621
+ I
4622
+ 0
4623
+ n
4624
+ p
4625
+ 1
4626
+ x
4627
+ 1
4628
+ +
4629
+ p
4630
+ 5
4631
+ I
4632
+ -1
4633
+ I
4634
+ ee
4635
+ I
4636
+ 0
4637
+ I
4638
+ ef
4639
+ I
4640
+ 5
4641
+ x
4642
+ 99
4643
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
4644
+ p
4645
+ 0
4646
+ p
4647
+ 115
4648
+ I
4649
+ 2
4650
+ I
4651
+ 8
4652
+ I
4653
+ c
4654
+ I
4655
+ 9
4656
+ I
4657
+ 13
4658
+ I
4659
+ e
4660
+ I
4661
+ 22
4662
+ I
4663
+ 8
4664
+ I
4665
+ 24
4666
+ I
4667
+ 1a
4668
+ I
4669
+ 40
4670
+ I
4671
+ 2c
4672
+ I
4673
+ 4e
4674
+ I
4675
+ 31
4676
+ I
4677
+ 5c
4678
+ I
4679
+ 36
4680
+ I
4681
+ 6a
4682
+ I
4683
+ 3c
4684
+ I
4685
+ 78
4686
+ I
4687
+ 42
4688
+ I
4689
+ 86
4690
+ I
4691
+ 45
4692
+ I
4693
+ 90
4694
+ I
4695
+ 48
4696
+ I
4697
+ 9e
4698
+ I
4699
+ 4b
4700
+ I
4701
+ a8
4702
+ I
4703
+ 4c
4704
+ I
4705
+ b2
4706
+ I
4707
+ 4d
4708
+ I
4709
+ bc
4710
+ I
4711
+ 50
4712
+ I
4713
+ ca
4714
+ I
4715
+ 54
4716
+ I
4717
+ d8
4718
+ I
4719
+ 5b
4720
+ I
4721
+ e2
4722
+ I
4723
+ 5c
4724
+ I
4725
+ ec
4726
+ I
4727
+ 5e
4728
+ I
4729
+ fa
4730
+ I
4731
+ 65
4732
+ I
4733
+ 104
4734
+ I
4735
+ 66
4736
+ I
4737
+ 10e
4738
+ I
4739
+ 6a
4740
+ I
4741
+ 11c
4742
+ I
4743
+ 7a
4744
+ I
4745
+ 12a
4746
+ I
4747
+ 83
4748
+ I
4749
+ 138
4750
+ I
4751
+ 88
4752
+ I
4753
+ 146
4754
+ I
4755
+ 8d
4756
+ I
4757
+ 154
4758
+ I
4759
+ 92
4760
+ I
4761
+ 162
4762
+ I
4763
+ 99
4764
+ I
4765
+ 16e
4766
+ I
4767
+ 97
4768
+ I
4769
+ 17c
4770
+ I
4771
+ 9e
4772
+ I
4773
+ 188
4774
+ I
4775
+ 9c
4776
+ I
4777
+ 196
4778
+ I
4779
+ a3
4780
+ I
4781
+ 1a2
4782
+ I
4783
+ a1
4784
+ I
4785
+ 1b0
4786
+ I
4787
+ a8
4788
+ I
4789
+ 1bc
4790
+ I
4791
+ a6
4792
+ I
4793
+ 1ca
4794
+ I
4795
+ ab
4796
+ I
4797
+ 1d8
4798
+ I
4799
+ b0
4800
+ I
4801
+ 1e2
4802
+ I
4803
+ b1
4804
+ I
4805
+ 1ec
4806
+ I
4807
+ b4
4808
+ I
4809
+ 1fa
4810
+ I
4811
+ b9
4812
+ I
4813
+ 204
4814
+ I
4815
+ ba
4816
+ I
4817
+ 20e
4818
+ I
4819
+ bd
4820
+ I
4821
+ 21c
4822
+ I
4823
+ c4
4824
+ I
4825
+ 22a
4826
+ I
4827
+ c7
4828
+ I
4829
+ 234
4830
+ I
4831
+ ca
4832
+ I
4833
+ 242
4834
+ I
4835
+ ce
4836
+ I
4837
+ 24c
4838
+ I
4839
+ d1
4840
+ I
4841
+ 25a
4842
+ I
4843
+ d4
4844
+ I
4845
+ 264
4846
+ I
4847
+ d7
4848
+ I
4849
+ 272
4850
+ I
4851
+ da
4852
+ I
4853
+ 27c
4854
+ I
4855
+ dd
4856
+ I
4857
+ 28a
4858
+ I
4859
+ e0
4860
+ I
4861
+ 294
4862
+ I
4863
+ e3
4864
+ I
4865
+ 2a2
4866
+ I
4867
+ e6
4868
+ I
4869
+ 2ac
4870
+ I
4871
+ e9
4872
+ I
4873
+ 2ba
4874
+ I
4875
+ ee
4876
+ I
4877
+ 2c8
4878
+ x
4879
+ 99
4880
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
4881
+ p
4882
+ 0
4883
+ x
4884
+ 13
4885
+ attach_method
4886
+ p
4887
+ 13
4888
+ I
4889
+ 0
4890
+ I
4891
+ 1
4892
+ I
4893
+ 9
4894
+ I
4895
+ 2
4896
+ I
4897
+ 12
4898
+ I
4899
+ 3
4900
+ I
4901
+ 1b
4902
+ I
4903
+ 4
4904
+ I
4905
+ 24
4906
+ I
4907
+ 5
4908
+ I
4909
+ 2d
4910
+ I
4911
+ 7
4912
+ I
4913
+ 4a
4914
+ x
4915
+ 99
4916
+ /Users/santiago/WyeWorks/Projs/rails/activesupport/lib/active_support/core_ext/date/calculations.rb
4917
+ p
4918
+ 0