alf 0.10.1 → 0.11.0

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