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