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