alf 0.10.0 → 0.10.1

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