activesupport 3.0.6 → 3.0.7.rc1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

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