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,2426 @@
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
+ 8
168
+ Renderer
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
+ 35
325
+ 44
326
+ 43
327
+ 0
328
+ 79
329
+ 49
330
+ 1
331
+ 1
332
+ 13
333
+ 7
334
+ 2
335
+ 4
336
+ 10
337
+ 49
338
+ 3
339
+ 2
340
+ 15
341
+ 44
342
+ 43
343
+ 0
344
+ 79
345
+ 49
346
+ 1
347
+ 1
348
+ 13
349
+ 7
350
+ 2
351
+ 4
352
+ 20
353
+ 49
354
+ 3
355
+ 2
356
+ 15
357
+ 35
358
+ 2
359
+ 11
360
+ I
361
+ 6
362
+ I
363
+ 0
364
+ I
365
+ 0
366
+ I
367
+ 0
368
+ I
369
+ -2
370
+ p
371
+ 4
372
+ x
373
+ 4
374
+ Hash
375
+ x
376
+ 16
377
+ new_from_literal
378
+ x
379
+ 4
380
+ size
381
+ x
382
+ 3
383
+ []=
384
+ p
385
+ 3
386
+ I
387
+ 0
388
+ I
389
+ 8
390
+ I
391
+ 23
392
+ x
393
+ 60
394
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
395
+ p
396
+ 0
397
+ x
398
+ 3
399
+ let
400
+ x
401
+ 8
402
+ expected
403
+ M
404
+ 1
405
+ p
406
+ 2
407
+ x
408
+ 9
409
+ for_block
410
+ t
411
+ n
412
+ x
413
+ 3
414
+ CSV
415
+ i
416
+ 4
417
+ 7
418
+ 0
419
+ 64
420
+ 11
421
+ I
422
+ 2
423
+ I
424
+ 0
425
+ I
426
+ 0
427
+ I
428
+ 0
429
+ I
430
+ -2
431
+ p
432
+ 1
433
+ s
434
+ 11
435
+ size
436
+ 10
437
+ 20
438
+
439
+ p
440
+ 3
441
+ I
442
+ 0
443
+ I
444
+ b
445
+ I
446
+ 4
447
+ x
448
+ 60
449
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
450
+ p
451
+ 0
452
+ M
453
+ 1
454
+ p
455
+ 2
456
+ x
457
+ 9
458
+ for_block
459
+ t
460
+ n
461
+ x
462
+ 3
463
+ CSV
464
+ i
465
+ 34
466
+ 5
467
+ 48
468
+ 0
469
+ 45
470
+ 1
471
+ 2
472
+ 13
473
+ 71
474
+ 3
475
+ 47
476
+ 9
477
+ 24
478
+ 47
479
+ 49
480
+ 4
481
+ 0
482
+ 13
483
+ 47
484
+ 49
485
+ 5
486
+ 0
487
+ 15
488
+ 8
489
+ 27
490
+ 49
491
+ 3
492
+ 0
493
+ 49
494
+ 6
495
+ 1
496
+ 49
497
+ 7
498
+ 0
499
+ 11
500
+ I
501
+ 4
502
+ I
503
+ 0
504
+ I
505
+ 0
506
+ I
507
+ 0
508
+ I
509
+ -2
510
+ p
511
+ 8
512
+ x
513
+ 8
514
+ renderer
515
+ x
516
+ 8
517
+ StringIO
518
+ n
519
+ x
520
+ 3
521
+ new
522
+ x
523
+ 8
524
+ allocate
525
+ x
526
+ 10
527
+ initialize
528
+ x
529
+ 7
530
+ execute
531
+ x
532
+ 6
533
+ string
534
+ p
535
+ 3
536
+ I
537
+ 0
538
+ I
539
+ d
540
+ I
541
+ 22
542
+ x
543
+ 60
544
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
545
+ p
546
+ 0
547
+ x
548
+ 7
549
+ subject
550
+ s
551
+ 34
552
+ when called on a renderer directly
553
+ M
554
+ 1
555
+ p
556
+ 2
557
+ x
558
+ 9
559
+ for_block
560
+ t
561
+ n
562
+ x
563
+ 3
564
+ CSV
565
+ i
566
+ 18
567
+ 5
568
+ 7
569
+ 0
570
+ 56
571
+ 1
572
+ 47
573
+ 50
574
+ 2
575
+ 1
576
+ 15
577
+ 5
578
+ 56
579
+ 3
580
+ 47
581
+ 50
582
+ 4
583
+ 0
584
+ 11
585
+ I
586
+ 4
587
+ I
588
+ 0
589
+ I
590
+ 0
591
+ I
592
+ 0
593
+ I
594
+ -2
595
+ p
596
+ 5
597
+ x
598
+ 8
599
+ renderer
600
+ M
601
+ 1
602
+ p
603
+ 2
604
+ x
605
+ 9
606
+ for_block
607
+ t
608
+ n
609
+ x
610
+ 3
611
+ CSV
612
+ i
613
+ 35
614
+ 44
615
+ 43
616
+ 0
617
+ 43
618
+ 1
619
+ 43
620
+ 2
621
+ 13
622
+ 71
623
+ 3
624
+ 47
625
+ 9
626
+ 28
627
+ 47
628
+ 49
629
+ 4
630
+ 0
631
+ 13
632
+ 5
633
+ 48
634
+ 5
635
+ 47
636
+ 49
637
+ 6
638
+ 1
639
+ 15
640
+ 8
641
+ 34
642
+ 5
643
+ 48
644
+ 5
645
+ 49
646
+ 3
647
+ 1
648
+ 11
649
+ I
650
+ 4
651
+ I
652
+ 0
653
+ I
654
+ 0
655
+ I
656
+ 0
657
+ I
658
+ -2
659
+ p
660
+ 7
661
+ x
662
+ 3
663
+ Alf
664
+ x
665
+ 3
666
+ CSV
667
+ x
668
+ 8
669
+ Renderer
670
+ x
671
+ 3
672
+ new
673
+ x
674
+ 8
675
+ allocate
676
+ x
677
+ 5
678
+ input
679
+ x
680
+ 10
681
+ initialize
682
+ p
683
+ 3
684
+ I
685
+ 0
686
+ I
687
+ 11
688
+ I
689
+ 23
690
+ x
691
+ 60
692
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
693
+ p
694
+ 0
695
+ x
696
+ 3
697
+ let
698
+ M
699
+ 1
700
+ p
701
+ 2
702
+ x
703
+ 9
704
+ for_block
705
+ t
706
+ n
707
+ x
708
+ 3
709
+ CSV
710
+ i
711
+ 14
712
+ 5
713
+ 5
714
+ 5
715
+ 48
716
+ 0
717
+ 47
718
+ 49
719
+ 1
720
+ 1
721
+ 47
722
+ 49
723
+ 2
724
+ 1
725
+ 11
726
+ I
727
+ 4
728
+ I
729
+ 0
730
+ I
731
+ 0
732
+ I
733
+ 0
734
+ I
735
+ -2
736
+ p
737
+ 3
738
+ x
739
+ 8
740
+ expected
741
+ x
742
+ 2
743
+ eq
744
+ x
745
+ 6
746
+ should
747
+ p
748
+ 3
749
+ I
750
+ 0
751
+ I
752
+ 13
753
+ I
754
+ e
755
+ x
756
+ 60
757
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
758
+ p
759
+ 0
760
+ x
761
+ 2
762
+ it
763
+ p
764
+ 5
765
+ I
766
+ 0
767
+ I
768
+ 10
769
+ I
770
+ a
771
+ I
772
+ 13
773
+ I
774
+ 12
775
+ x
776
+ 60
777
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
778
+ p
779
+ 0
780
+ x
781
+ 8
782
+ describe
783
+ s
784
+ 35
785
+ when called through registererd one
786
+ M
787
+ 1
788
+ p
789
+ 2
790
+ x
791
+ 9
792
+ for_block
793
+ t
794
+ n
795
+ x
796
+ 3
797
+ CSV
798
+ i
799
+ 18
800
+ 5
801
+ 7
802
+ 0
803
+ 56
804
+ 1
805
+ 47
806
+ 50
807
+ 2
808
+ 1
809
+ 15
810
+ 5
811
+ 56
812
+ 3
813
+ 47
814
+ 50
815
+ 4
816
+ 0
817
+ 11
818
+ I
819
+ 4
820
+ I
821
+ 0
822
+ I
823
+ 0
824
+ I
825
+ 0
826
+ I
827
+ -2
828
+ p
829
+ 5
830
+ x
831
+ 8
832
+ renderer
833
+ M
834
+ 1
835
+ p
836
+ 2
837
+ x
838
+ 9
839
+ for_block
840
+ t
841
+ n
842
+ x
843
+ 3
844
+ CSV
845
+ i
846
+ 14
847
+ 44
848
+ 43
849
+ 0
850
+ 43
851
+ 1
852
+ 7
853
+ 2
854
+ 5
855
+ 48
856
+ 3
857
+ 49
858
+ 4
859
+ 2
860
+ 11
861
+ I
862
+ 4
863
+ I
864
+ 0
865
+ I
866
+ 0
867
+ I
868
+ 0
869
+ I
870
+ -2
871
+ p
872
+ 5
873
+ x
874
+ 3
875
+ Alf
876
+ x
877
+ 8
878
+ Renderer
879
+ x
880
+ 3
881
+ csv
882
+ x
883
+ 5
884
+ input
885
+ x
886
+ 8
887
+ renderer
888
+ p
889
+ 3
890
+ I
891
+ 0
892
+ I
893
+ 18
894
+ I
895
+ e
896
+ x
897
+ 60
898
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
899
+ p
900
+ 0
901
+ x
902
+ 3
903
+ let
904
+ M
905
+ 1
906
+ p
907
+ 2
908
+ x
909
+ 9
910
+ for_block
911
+ t
912
+ n
913
+ x
914
+ 3
915
+ CSV
916
+ i
917
+ 14
918
+ 5
919
+ 5
920
+ 5
921
+ 48
922
+ 0
923
+ 47
924
+ 49
925
+ 1
926
+ 1
927
+ 47
928
+ 49
929
+ 2
930
+ 1
931
+ 11
932
+ I
933
+ 4
934
+ I
935
+ 0
936
+ I
937
+ 0
938
+ I
939
+ 0
940
+ I
941
+ -2
942
+ p
943
+ 3
944
+ x
945
+ 8
946
+ expected
947
+ x
948
+ 2
949
+ eq
950
+ x
951
+ 6
952
+ should
953
+ p
954
+ 3
955
+ I
956
+ 0
957
+ I
958
+ 1a
959
+ I
960
+ e
961
+ x
962
+ 60
963
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
964
+ p
965
+ 0
966
+ x
967
+ 2
968
+ it
969
+ p
970
+ 5
971
+ I
972
+ 0
973
+ I
974
+ 17
975
+ I
976
+ a
977
+ I
978
+ 1a
979
+ I
980
+ 12
981
+ x
982
+ 60
983
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
984
+ p
985
+ 0
986
+ s
987
+ 34
988
+ when called through factory method
989
+ M
990
+ 1
991
+ p
992
+ 2
993
+ x
994
+ 9
995
+ for_block
996
+ t
997
+ n
998
+ x
999
+ 3
1000
+ CSV
1001
+ i
1002
+ 18
1003
+ 5
1004
+ 7
1005
+ 0
1006
+ 56
1007
+ 1
1008
+ 47
1009
+ 50
1010
+ 2
1011
+ 1
1012
+ 15
1013
+ 5
1014
+ 56
1015
+ 3
1016
+ 47
1017
+ 50
1018
+ 4
1019
+ 0
1020
+ 11
1021
+ I
1022
+ 4
1023
+ I
1024
+ 0
1025
+ I
1026
+ 0
1027
+ I
1028
+ 0
1029
+ I
1030
+ -2
1031
+ p
1032
+ 5
1033
+ x
1034
+ 8
1035
+ renderer
1036
+ M
1037
+ 1
1038
+ p
1039
+ 2
1040
+ x
1041
+ 9
1042
+ for_block
1043
+ t
1044
+ n
1045
+ x
1046
+ 3
1047
+ CSV
1048
+ i
1049
+ 12
1050
+ 44
1051
+ 43
1052
+ 0
1053
+ 43
1054
+ 1
1055
+ 5
1056
+ 48
1057
+ 2
1058
+ 49
1059
+ 3
1060
+ 1
1061
+ 11
1062
+ I
1063
+ 3
1064
+ I
1065
+ 0
1066
+ I
1067
+ 0
1068
+ I
1069
+ 0
1070
+ I
1071
+ -2
1072
+ p
1073
+ 4
1074
+ x
1075
+ 3
1076
+ Alf
1077
+ x
1078
+ 8
1079
+ Renderer
1080
+ x
1081
+ 5
1082
+ input
1083
+ x
1084
+ 3
1085
+ csv
1086
+ p
1087
+ 3
1088
+ I
1089
+ 0
1090
+ I
1091
+ 1f
1092
+ I
1093
+ c
1094
+ x
1095
+ 60
1096
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
1097
+ p
1098
+ 0
1099
+ x
1100
+ 3
1101
+ let
1102
+ M
1103
+ 1
1104
+ p
1105
+ 2
1106
+ x
1107
+ 9
1108
+ for_block
1109
+ t
1110
+ n
1111
+ x
1112
+ 3
1113
+ CSV
1114
+ i
1115
+ 14
1116
+ 5
1117
+ 5
1118
+ 5
1119
+ 48
1120
+ 0
1121
+ 47
1122
+ 49
1123
+ 1
1124
+ 1
1125
+ 47
1126
+ 49
1127
+ 2
1128
+ 1
1129
+ 11
1130
+ I
1131
+ 4
1132
+ I
1133
+ 0
1134
+ I
1135
+ 0
1136
+ I
1137
+ 0
1138
+ I
1139
+ -2
1140
+ p
1141
+ 3
1142
+ x
1143
+ 8
1144
+ expected
1145
+ x
1146
+ 2
1147
+ eq
1148
+ x
1149
+ 6
1150
+ should
1151
+ p
1152
+ 3
1153
+ I
1154
+ 0
1155
+ I
1156
+ 21
1157
+ I
1158
+ e
1159
+ x
1160
+ 60
1161
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
1162
+ p
1163
+ 0
1164
+ x
1165
+ 2
1166
+ it
1167
+ p
1168
+ 5
1169
+ I
1170
+ 0
1171
+ I
1172
+ 1e
1173
+ I
1174
+ a
1175
+ I
1176
+ 21
1177
+ I
1178
+ 12
1179
+ x
1180
+ 60
1181
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
1182
+ p
1183
+ 0
1184
+ p
1185
+ 13
1186
+ I
1187
+ 0
1188
+ I
1189
+ 7
1190
+ I
1191
+ a
1192
+ I
1193
+ a
1194
+ I
1195
+ 14
1196
+ I
1197
+ d
1198
+ I
1199
+ 1c
1200
+ I
1201
+ f
1202
+ I
1203
+ 27
1204
+ I
1205
+ 16
1206
+ I
1207
+ 32
1208
+ I
1209
+ 1d
1210
+ I
1211
+ 3d
1212
+ x
1213
+ 60
1214
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
1215
+ p
1216
+ 0
1217
+ x
1218
+ 8
1219
+ describe
1220
+ s
1221
+ 12
1222
+ with options
1223
+ M
1224
+ 1
1225
+ p
1226
+ 2
1227
+ x
1228
+ 9
1229
+ for_block
1230
+ t
1231
+ n
1232
+ x
1233
+ 3
1234
+ CSV
1235
+ i
1236
+ 71
1237
+ 5
1238
+ 7
1239
+ 0
1240
+ 56
1241
+ 1
1242
+ 47
1243
+ 50
1244
+ 2
1245
+ 1
1246
+ 15
1247
+ 5
1248
+ 7
1249
+ 3
1250
+ 56
1251
+ 4
1252
+ 47
1253
+ 50
1254
+ 2
1255
+ 1
1256
+ 15
1257
+ 5
1258
+ 7
1259
+ 5
1260
+ 56
1261
+ 6
1262
+ 47
1263
+ 50
1264
+ 2
1265
+ 1
1266
+ 15
1267
+ 5
1268
+ 56
1269
+ 7
1270
+ 47
1271
+ 50
1272
+ 8
1273
+ 0
1274
+ 15
1275
+ 5
1276
+ 7
1277
+ 9
1278
+ 64
1279
+ 56
1280
+ 10
1281
+ 47
1282
+ 50
1283
+ 11
1284
+ 1
1285
+ 15
1286
+ 5
1287
+ 7
1288
+ 12
1289
+ 64
1290
+ 56
1291
+ 13
1292
+ 47
1293
+ 50
1294
+ 11
1295
+ 1
1296
+ 15
1297
+ 5
1298
+ 7
1299
+ 14
1300
+ 64
1301
+ 56
1302
+ 15
1303
+ 47
1304
+ 50
1305
+ 11
1306
+ 1
1307
+ 11
1308
+ I
1309
+ 4
1310
+ I
1311
+ 0
1312
+ I
1313
+ 0
1314
+ I
1315
+ 0
1316
+ I
1317
+ -2
1318
+ p
1319
+ 16
1320
+ x
1321
+ 5
1322
+ input
1323
+ M
1324
+ 1
1325
+ p
1326
+ 2
1327
+ x
1328
+ 9
1329
+ for_block
1330
+ t
1331
+ n
1332
+ x
1333
+ 3
1334
+ CSV
1335
+ i
1336
+ 55
1337
+ 44
1338
+ 43
1339
+ 0
1340
+ 80
1341
+ 49
1342
+ 1
1343
+ 1
1344
+ 13
1345
+ 7
1346
+ 2
1347
+ 4
1348
+ 10
1349
+ 49
1350
+ 3
1351
+ 2
1352
+ 15
1353
+ 13
1354
+ 7
1355
+ 4
1356
+ 7
1357
+ 5
1358
+ 64
1359
+ 49
1360
+ 3
1361
+ 2
1362
+ 15
1363
+ 44
1364
+ 43
1365
+ 0
1366
+ 80
1367
+ 49
1368
+ 1
1369
+ 1
1370
+ 13
1371
+ 7
1372
+ 2
1373
+ 4
1374
+ 20
1375
+ 49
1376
+ 3
1377
+ 2
1378
+ 15
1379
+ 13
1380
+ 7
1381
+ 4
1382
+ 7
1383
+ 6
1384
+ 64
1385
+ 49
1386
+ 3
1387
+ 2
1388
+ 15
1389
+ 35
1390
+ 2
1391
+ 11
1392
+ I
1393
+ 6
1394
+ I
1395
+ 0
1396
+ I
1397
+ 0
1398
+ I
1399
+ 0
1400
+ I
1401
+ -2
1402
+ p
1403
+ 7
1404
+ x
1405
+ 4
1406
+ Hash
1407
+ x
1408
+ 16
1409
+ new_from_literal
1410
+ x
1411
+ 4
1412
+ size
1413
+ x
1414
+ 3
1415
+ []=
1416
+ x
1417
+ 4
1418
+ name
1419
+ s
1420
+ 8
1421
+ blambeau
1422
+ s
1423
+ 8
1424
+ mmathieu
1425
+ p
1426
+ 3
1427
+ I
1428
+ 0
1429
+ I
1430
+ 27
1431
+ I
1432
+ 37
1433
+ x
1434
+ 60
1435
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
1436
+ p
1437
+ 0
1438
+ x
1439
+ 3
1440
+ let
1441
+ x
1442
+ 8
1443
+ expected
1444
+ M
1445
+ 1
1446
+ p
1447
+ 2
1448
+ x
1449
+ 9
1450
+ for_block
1451
+ t
1452
+ n
1453
+ x
1454
+ 3
1455
+ CSV
1456
+ i
1457
+ 4
1458
+ 7
1459
+ 0
1460
+ 64
1461
+ 11
1462
+ I
1463
+ 2
1464
+ I
1465
+ 0
1466
+ I
1467
+ 0
1468
+ I
1469
+ 0
1470
+ I
1471
+ -2
1472
+ p
1473
+ 1
1474
+ s
1475
+ 34
1476
+ size;name
1477
+ 10;blambeau
1478
+ 20;mmathieu
1479
+
1480
+ p
1481
+ 3
1482
+ I
1483
+ 0
1484
+ I
1485
+ 2a
1486
+ I
1487
+ 4
1488
+ x
1489
+ 60
1490
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
1491
+ p
1492
+ 0
1493
+ x
1494
+ 7
1495
+ options
1496
+ M
1497
+ 1
1498
+ p
1499
+ 2
1500
+ x
1501
+ 9
1502
+ for_block
1503
+ t
1504
+ n
1505
+ x
1506
+ 3
1507
+ CSV
1508
+ i
1509
+ 18
1510
+ 44
1511
+ 43
1512
+ 0
1513
+ 79
1514
+ 49
1515
+ 1
1516
+ 1
1517
+ 13
1518
+ 7
1519
+ 2
1520
+ 7
1521
+ 3
1522
+ 64
1523
+ 49
1524
+ 4
1525
+ 2
1526
+ 15
1527
+ 11
1528
+ I
1529
+ 5
1530
+ I
1531
+ 0
1532
+ I
1533
+ 0
1534
+ I
1535
+ 0
1536
+ I
1537
+ -2
1538
+ p
1539
+ 5
1540
+ x
1541
+ 4
1542
+ Hash
1543
+ x
1544
+ 16
1545
+ new_from_literal
1546
+ x
1547
+ 7
1548
+ col_sep
1549
+ s
1550
+ 1
1551
+ ;
1552
+ x
1553
+ 3
1554
+ []=
1555
+ p
1556
+ 3
1557
+ I
1558
+ 0
1559
+ I
1560
+ 2d
1561
+ I
1562
+ 12
1563
+ x
1564
+ 60
1565
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
1566
+ p
1567
+ 0
1568
+ M
1569
+ 1
1570
+ p
1571
+ 2
1572
+ x
1573
+ 9
1574
+ for_block
1575
+ t
1576
+ n
1577
+ x
1578
+ 3
1579
+ CSV
1580
+ i
1581
+ 34
1582
+ 5
1583
+ 48
1584
+ 0
1585
+ 45
1586
+ 1
1587
+ 2
1588
+ 13
1589
+ 71
1590
+ 3
1591
+ 47
1592
+ 9
1593
+ 24
1594
+ 47
1595
+ 49
1596
+ 4
1597
+ 0
1598
+ 13
1599
+ 47
1600
+ 49
1601
+ 5
1602
+ 0
1603
+ 15
1604
+ 8
1605
+ 27
1606
+ 49
1607
+ 3
1608
+ 0
1609
+ 49
1610
+ 6
1611
+ 1
1612
+ 49
1613
+ 7
1614
+ 0
1615
+ 11
1616
+ I
1617
+ 4
1618
+ I
1619
+ 0
1620
+ I
1621
+ 0
1622
+ I
1623
+ 0
1624
+ I
1625
+ -2
1626
+ p
1627
+ 8
1628
+ x
1629
+ 8
1630
+ renderer
1631
+ x
1632
+ 8
1633
+ StringIO
1634
+ n
1635
+ x
1636
+ 3
1637
+ new
1638
+ x
1639
+ 8
1640
+ allocate
1641
+ x
1642
+ 10
1643
+ initialize
1644
+ x
1645
+ 7
1646
+ execute
1647
+ x
1648
+ 6
1649
+ string
1650
+ p
1651
+ 3
1652
+ I
1653
+ 0
1654
+ I
1655
+ 2f
1656
+ I
1657
+ 22
1658
+ x
1659
+ 60
1660
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
1661
+ p
1662
+ 0
1663
+ x
1664
+ 7
1665
+ subject
1666
+ s
1667
+ 34
1668
+ when called on a renderer directly
1669
+ M
1670
+ 1
1671
+ p
1672
+ 2
1673
+ x
1674
+ 9
1675
+ for_block
1676
+ t
1677
+ n
1678
+ x
1679
+ 3
1680
+ CSV
1681
+ i
1682
+ 18
1683
+ 5
1684
+ 7
1685
+ 0
1686
+ 56
1687
+ 1
1688
+ 47
1689
+ 50
1690
+ 2
1691
+ 1
1692
+ 15
1693
+ 5
1694
+ 56
1695
+ 3
1696
+ 47
1697
+ 50
1698
+ 4
1699
+ 0
1700
+ 11
1701
+ I
1702
+ 4
1703
+ I
1704
+ 0
1705
+ I
1706
+ 0
1707
+ I
1708
+ 0
1709
+ I
1710
+ -2
1711
+ p
1712
+ 5
1713
+ x
1714
+ 8
1715
+ renderer
1716
+ M
1717
+ 1
1718
+ p
1719
+ 2
1720
+ x
1721
+ 9
1722
+ for_block
1723
+ t
1724
+ n
1725
+ x
1726
+ 3
1727
+ CSV
1728
+ i
1729
+ 41
1730
+ 44
1731
+ 43
1732
+ 0
1733
+ 43
1734
+ 1
1735
+ 43
1736
+ 2
1737
+ 13
1738
+ 71
1739
+ 3
1740
+ 47
1741
+ 9
1742
+ 31
1743
+ 47
1744
+ 49
1745
+ 4
1746
+ 0
1747
+ 13
1748
+ 5
1749
+ 48
1750
+ 5
1751
+ 5
1752
+ 48
1753
+ 6
1754
+ 47
1755
+ 49
1756
+ 7
1757
+ 2
1758
+ 15
1759
+ 8
1760
+ 40
1761
+ 5
1762
+ 48
1763
+ 5
1764
+ 5
1765
+ 48
1766
+ 6
1767
+ 49
1768
+ 3
1769
+ 2
1770
+ 11
1771
+ I
1772
+ 5
1773
+ I
1774
+ 0
1775
+ I
1776
+ 0
1777
+ I
1778
+ 0
1779
+ I
1780
+ -2
1781
+ p
1782
+ 8
1783
+ x
1784
+ 3
1785
+ Alf
1786
+ x
1787
+ 3
1788
+ CSV
1789
+ x
1790
+ 8
1791
+ Renderer
1792
+ x
1793
+ 3
1794
+ new
1795
+ x
1796
+ 8
1797
+ allocate
1798
+ x
1799
+ 5
1800
+ input
1801
+ x
1802
+ 7
1803
+ options
1804
+ x
1805
+ 10
1806
+ initialize
1807
+ p
1808
+ 3
1809
+ I
1810
+ 0
1811
+ I
1812
+ 33
1813
+ I
1814
+ 29
1815
+ x
1816
+ 60
1817
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
1818
+ p
1819
+ 0
1820
+ x
1821
+ 3
1822
+ let
1823
+ M
1824
+ 1
1825
+ p
1826
+ 2
1827
+ x
1828
+ 9
1829
+ for_block
1830
+ t
1831
+ n
1832
+ x
1833
+ 3
1834
+ CSV
1835
+ i
1836
+ 14
1837
+ 5
1838
+ 5
1839
+ 5
1840
+ 48
1841
+ 0
1842
+ 47
1843
+ 49
1844
+ 1
1845
+ 1
1846
+ 47
1847
+ 49
1848
+ 2
1849
+ 1
1850
+ 11
1851
+ I
1852
+ 4
1853
+ I
1854
+ 0
1855
+ I
1856
+ 0
1857
+ I
1858
+ 0
1859
+ I
1860
+ -2
1861
+ p
1862
+ 3
1863
+ x
1864
+ 8
1865
+ expected
1866
+ x
1867
+ 2
1868
+ eq
1869
+ x
1870
+ 6
1871
+ should
1872
+ p
1873
+ 3
1874
+ I
1875
+ 0
1876
+ I
1877
+ 35
1878
+ I
1879
+ e
1880
+ x
1881
+ 60
1882
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
1883
+ p
1884
+ 0
1885
+ x
1886
+ 2
1887
+ it
1888
+ p
1889
+ 5
1890
+ I
1891
+ 0
1892
+ I
1893
+ 32
1894
+ I
1895
+ a
1896
+ I
1897
+ 35
1898
+ I
1899
+ 12
1900
+ x
1901
+ 60
1902
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
1903
+ p
1904
+ 0
1905
+ x
1906
+ 8
1907
+ describe
1908
+ s
1909
+ 35
1910
+ when called through registererd one
1911
+ M
1912
+ 1
1913
+ p
1914
+ 2
1915
+ x
1916
+ 9
1917
+ for_block
1918
+ t
1919
+ n
1920
+ x
1921
+ 3
1922
+ CSV
1923
+ i
1924
+ 18
1925
+ 5
1926
+ 7
1927
+ 0
1928
+ 56
1929
+ 1
1930
+ 47
1931
+ 50
1932
+ 2
1933
+ 1
1934
+ 15
1935
+ 5
1936
+ 56
1937
+ 3
1938
+ 47
1939
+ 50
1940
+ 4
1941
+ 0
1942
+ 11
1943
+ I
1944
+ 4
1945
+ I
1946
+ 0
1947
+ I
1948
+ 0
1949
+ I
1950
+ 0
1951
+ I
1952
+ -2
1953
+ p
1954
+ 5
1955
+ x
1956
+ 8
1957
+ renderer
1958
+ M
1959
+ 1
1960
+ p
1961
+ 2
1962
+ x
1963
+ 9
1964
+ for_block
1965
+ t
1966
+ n
1967
+ x
1968
+ 3
1969
+ CSV
1970
+ i
1971
+ 17
1972
+ 44
1973
+ 43
1974
+ 0
1975
+ 43
1976
+ 1
1977
+ 7
1978
+ 2
1979
+ 5
1980
+ 48
1981
+ 3
1982
+ 5
1983
+ 48
1984
+ 4
1985
+ 49
1986
+ 5
1987
+ 3
1988
+ 11
1989
+ I
1990
+ 5
1991
+ I
1992
+ 0
1993
+ I
1994
+ 0
1995
+ I
1996
+ 0
1997
+ I
1998
+ -2
1999
+ p
2000
+ 6
2001
+ x
2002
+ 3
2003
+ Alf
2004
+ x
2005
+ 8
2006
+ Renderer
2007
+ x
2008
+ 3
2009
+ csv
2010
+ x
2011
+ 5
2012
+ input
2013
+ x
2014
+ 7
2015
+ options
2016
+ x
2017
+ 8
2018
+ renderer
2019
+ p
2020
+ 3
2021
+ I
2022
+ 0
2023
+ I
2024
+ 3a
2025
+ I
2026
+ 11
2027
+ x
2028
+ 60
2029
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
2030
+ p
2031
+ 0
2032
+ x
2033
+ 3
2034
+ let
2035
+ M
2036
+ 1
2037
+ p
2038
+ 2
2039
+ x
2040
+ 9
2041
+ for_block
2042
+ t
2043
+ n
2044
+ x
2045
+ 3
2046
+ CSV
2047
+ i
2048
+ 14
2049
+ 5
2050
+ 5
2051
+ 5
2052
+ 48
2053
+ 0
2054
+ 47
2055
+ 49
2056
+ 1
2057
+ 1
2058
+ 47
2059
+ 49
2060
+ 2
2061
+ 1
2062
+ 11
2063
+ I
2064
+ 4
2065
+ I
2066
+ 0
2067
+ I
2068
+ 0
2069
+ I
2070
+ 0
2071
+ I
2072
+ -2
2073
+ p
2074
+ 3
2075
+ x
2076
+ 8
2077
+ expected
2078
+ x
2079
+ 2
2080
+ eq
2081
+ x
2082
+ 6
2083
+ should
2084
+ p
2085
+ 3
2086
+ I
2087
+ 0
2088
+ I
2089
+ 3c
2090
+ I
2091
+ e
2092
+ x
2093
+ 60
2094
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
2095
+ p
2096
+ 0
2097
+ x
2098
+ 2
2099
+ it
2100
+ p
2101
+ 5
2102
+ I
2103
+ 0
2104
+ I
2105
+ 39
2106
+ I
2107
+ a
2108
+ I
2109
+ 3c
2110
+ I
2111
+ 12
2112
+ x
2113
+ 60
2114
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
2115
+ p
2116
+ 0
2117
+ s
2118
+ 34
2119
+ when called through factory method
2120
+ M
2121
+ 1
2122
+ p
2123
+ 2
2124
+ x
2125
+ 9
2126
+ for_block
2127
+ t
2128
+ n
2129
+ x
2130
+ 3
2131
+ CSV
2132
+ i
2133
+ 18
2134
+ 5
2135
+ 7
2136
+ 0
2137
+ 56
2138
+ 1
2139
+ 47
2140
+ 50
2141
+ 2
2142
+ 1
2143
+ 15
2144
+ 5
2145
+ 56
2146
+ 3
2147
+ 47
2148
+ 50
2149
+ 4
2150
+ 0
2151
+ 11
2152
+ I
2153
+ 4
2154
+ I
2155
+ 0
2156
+ I
2157
+ 0
2158
+ I
2159
+ 0
2160
+ I
2161
+ -2
2162
+ p
2163
+ 5
2164
+ x
2165
+ 8
2166
+ renderer
2167
+ M
2168
+ 1
2169
+ p
2170
+ 2
2171
+ x
2172
+ 9
2173
+ for_block
2174
+ t
2175
+ n
2176
+ x
2177
+ 3
2178
+ CSV
2179
+ i
2180
+ 15
2181
+ 44
2182
+ 43
2183
+ 0
2184
+ 43
2185
+ 1
2186
+ 5
2187
+ 48
2188
+ 2
2189
+ 5
2190
+ 48
2191
+ 3
2192
+ 49
2193
+ 4
2194
+ 2
2195
+ 11
2196
+ I
2197
+ 4
2198
+ I
2199
+ 0
2200
+ I
2201
+ 0
2202
+ I
2203
+ 0
2204
+ I
2205
+ -2
2206
+ p
2207
+ 5
2208
+ x
2209
+ 3
2210
+ Alf
2211
+ x
2212
+ 8
2213
+ Renderer
2214
+ x
2215
+ 5
2216
+ input
2217
+ x
2218
+ 7
2219
+ options
2220
+ x
2221
+ 3
2222
+ csv
2223
+ p
2224
+ 3
2225
+ I
2226
+ 0
2227
+ I
2228
+ 41
2229
+ I
2230
+ f
2231
+ x
2232
+ 60
2233
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
2234
+ p
2235
+ 0
2236
+ x
2237
+ 3
2238
+ let
2239
+ M
2240
+ 1
2241
+ p
2242
+ 2
2243
+ x
2244
+ 9
2245
+ for_block
2246
+ t
2247
+ n
2248
+ x
2249
+ 3
2250
+ CSV
2251
+ i
2252
+ 14
2253
+ 5
2254
+ 5
2255
+ 5
2256
+ 48
2257
+ 0
2258
+ 47
2259
+ 49
2260
+ 1
2261
+ 1
2262
+ 47
2263
+ 49
2264
+ 2
2265
+ 1
2266
+ 11
2267
+ I
2268
+ 4
2269
+ I
2270
+ 0
2271
+ I
2272
+ 0
2273
+ I
2274
+ 0
2275
+ I
2276
+ -2
2277
+ p
2278
+ 3
2279
+ x
2280
+ 8
2281
+ expected
2282
+ x
2283
+ 2
2284
+ eq
2285
+ x
2286
+ 6
2287
+ should
2288
+ p
2289
+ 3
2290
+ I
2291
+ 0
2292
+ I
2293
+ 43
2294
+ I
2295
+ e
2296
+ x
2297
+ 60
2298
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
2299
+ p
2300
+ 0
2301
+ x
2302
+ 2
2303
+ it
2304
+ p
2305
+ 5
2306
+ I
2307
+ 0
2308
+ I
2309
+ 40
2310
+ I
2311
+ a
2312
+ I
2313
+ 43
2314
+ I
2315
+ 12
2316
+ x
2317
+ 60
2318
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
2319
+ p
2320
+ 0
2321
+ p
2322
+ 15
2323
+ I
2324
+ 0
2325
+ I
2326
+ 26
2327
+ I
2328
+ a
2329
+ I
2330
+ 29
2331
+ I
2332
+ 14
2333
+ I
2334
+ 2c
2335
+ I
2336
+ 1e
2337
+ I
2338
+ 2f
2339
+ I
2340
+ 26
2341
+ I
2342
+ 31
2343
+ I
2344
+ 31
2345
+ I
2346
+ 38
2347
+ I
2348
+ 3c
2349
+ I
2350
+ 3f
2351
+ I
2352
+ 47
2353
+ x
2354
+ 60
2355
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
2356
+ p
2357
+ 0
2358
+ p
2359
+ 5
2360
+ I
2361
+ 0
2362
+ I
2363
+ 6
2364
+ I
2365
+ b
2366
+ I
2367
+ 25
2368
+ I
2369
+ 16
2370
+ x
2371
+ 60
2372
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
2373
+ p
2374
+ 0
2375
+ x
2376
+ 8
2377
+ describe
2378
+ p
2379
+ 3
2380
+ I
2381
+ 2
2382
+ I
2383
+ 4
2384
+ I
2385
+ d
2386
+ x
2387
+ 60
2388
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
2389
+ p
2390
+ 0
2391
+ x
2392
+ 13
2393
+ attach_method
2394
+ p
2395
+ 3
2396
+ I
2397
+ 2
2398
+ I
2399
+ 3
2400
+ I
2401
+ 1c
2402
+ x
2403
+ 60
2404
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
2405
+ p
2406
+ 0
2407
+ x
2408
+ 13
2409
+ attach_method
2410
+ p
2411
+ 5
2412
+ I
2413
+ 0
2414
+ I
2415
+ 1
2416
+ I
2417
+ 9
2418
+ I
2419
+ 2
2420
+ I
2421
+ 25
2422
+ x
2423
+ 60
2424
+ /home/blambeau/work/devel/alf/spec/unit/csv/test_renderer.rb
2425
+ p
2426
+ 0