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