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