alf 0.10.0 → 0.10.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +22 -0
- data/Gemfile +3 -3
- data/Gemfile.lock +9 -10
- data/alf.gemspec +3 -3
- data/alf.noespec +5 -4
- data/doc/commands/show.md +1 -1
- data/doc/operators/relational/heading.md +20 -0
- data/doc/operators/relational/join.md +4 -3
- data/doc/operators/relational/matching.md +7 -3
- data/doc/operators/relational/restrict.md +2 -2
- data/examples/hitradio/compact.rb +48 -0
- data/examples/hitradio/compare1.rb +28 -0
- data/examples/hitradio/gz_reader.rb +23 -0
- data/examples/hitradio/hitradio-1.alf +1 -0
- data/examples/hitradio/hitradio.log +25080 -0
- data/examples/hitradio/hitradio.mar +25081 -0
- data/examples/hitradio/hitradio.mar.gz +0 -0
- data/examples/hitradio/hitradio.rash +25080 -0
- data/examples/hitradio/mar_reader.rb +18 -0
- data/lib/alf/aggregator/aggregators.rb +28 -0
- data/lib/alf/aggregator/aggregators.rbc +2640 -0
- data/lib/alf/aggregator/base.rbc +1055 -0
- data/lib/alf/aggregator/class_methods.rb +1 -1
- data/lib/alf/aggregator/class_methods.rbc +830 -0
- data/lib/alf/buffer/sorted.rbc +715 -0
- data/lib/alf/command/class_methods.rbc +453 -0
- data/lib/alf/command/doc_manager.rbc +1604 -0
- data/lib/alf/command/exec.rbc +408 -0
- data/lib/alf/command/help.rbc +764 -0
- data/lib/alf/command/main.rb +37 -5
- data/lib/alf/command/main.rbc +3612 -0
- data/lib/alf/command/show.rb +37 -5
- data/lib/alf/command/show.rbc +1327 -0
- data/lib/alf/environment/base.rbc +459 -0
- data/lib/alf/environment/class_methods.rbc +1110 -0
- data/lib/alf/environment/explicit.rb +2 -2
- data/lib/alf/environment/explicit.rbc +601 -0
- data/lib/alf/environment/folder.rb +2 -2
- data/lib/alf/environment/folder.rbc +942 -0
- data/lib/alf/errors.rb +4 -0
- data/lib/alf/errors.rbc +155 -0
- data/lib/alf/extra/csv.rb +5 -2
- data/lib/alf/extra/csv.rbc +2021 -0
- data/lib/alf/extra/logs.rbc +1957 -0
- data/lib/alf/extra/sequel.rbc +1417 -0
- data/lib/alf/extra/yaml.rbc +435 -0
- data/lib/alf/extra.rbc +101 -0
- data/lib/alf/iterator/base.rbc +437 -0
- data/lib/alf/iterator/class_methods.rbc +518 -0
- data/lib/alf/iterator/proxy.rbc +599 -0
- data/lib/alf/lispy/instance_methods.rbc +2535 -0
- data/lib/alf/loader.rb +2 -1
- data/lib/alf/loader.rbc +85 -0
- data/lib/alf/operator/base.rbc +860 -0
- data/lib/alf/operator/binary.rbc +595 -0
- data/lib/alf/operator/cesure.rbc +883 -0
- data/lib/alf/operator/class_methods.rbc +1915 -0
- data/lib/alf/operator/experimental.rbc +200 -0
- data/lib/alf/operator/non_relational/autonum.rbc +587 -0
- data/lib/alf/operator/non_relational/clip.rbc +522 -0
- data/lib/alf/operator/non_relational/coerce.rbc +596 -0
- data/lib/alf/operator/non_relational/compact.rbc +1283 -0
- data/lib/alf/operator/non_relational/defaults.rbc +733 -0
- data/lib/alf/operator/non_relational/generator.rbc +1015 -0
- data/lib/alf/operator/non_relational/sort.rbc +665 -0
- data/lib/alf/operator/nullary.rbc +404 -0
- data/lib/alf/operator/relational/extend.rbc +616 -0
- data/lib/alf/operator/relational/group.rbc +968 -0
- data/lib/alf/operator/relational/heading.rb +30 -0
- data/lib/alf/operator/relational/heading.rbc +657 -0
- data/lib/alf/operator/relational/intersect.rbc +969 -0
- data/lib/alf/operator/relational/join.rbc +1708 -0
- data/lib/alf/operator/relational/matching.rbc +1047 -0
- data/lib/alf/operator/relational/minus.rbc +965 -0
- data/lib/alf/operator/relational/not_matching.rbc +1047 -0
- data/lib/alf/operator/relational/project.rbc +669 -0
- data/lib/alf/operator/relational/quota.rbc +1193 -0
- data/lib/alf/operator/relational/rank.rbc +1217 -0
- data/lib/alf/operator/relational/rename.rbc +496 -0
- data/lib/alf/operator/relational/restrict.rbc +611 -0
- data/lib/alf/operator/relational/summarize.rbc +1922 -0
- data/lib/alf/operator/relational/ungroup.rbc +643 -0
- data/lib/alf/operator/relational/union.rbc +846 -0
- data/lib/alf/operator/relational/unwrap.rbc +540 -0
- data/lib/alf/operator/relational/wrap.rbc +560 -0
- data/lib/alf/operator/shortcut.rbc +809 -0
- data/lib/alf/operator/signature.rbc +4640 -0
- data/lib/alf/operator/transform.rbc +484 -0
- data/lib/alf/operator/unary.rbc +629 -0
- data/lib/alf/reader/alf_file.rbc +464 -0
- data/lib/alf/reader/base.rbc +1613 -0
- data/lib/alf/reader/class_methods.rb +1 -1
- data/lib/alf/reader/class_methods.rbc +1099 -0
- data/lib/alf/reader/rash.rbc +583 -0
- data/lib/alf/relation/class_methods.rbc +674 -0
- data/lib/alf/relation/instance_methods.rb +7 -0
- data/lib/alf/relation/instance_methods.rbc +2107 -0
- data/lib/alf/renderer/base.rbc +936 -0
- data/lib/alf/renderer/class_methods.rbc +875 -0
- data/lib/alf/renderer/rash.rb +16 -2
- data/lib/alf/renderer/rash.rbc +802 -0
- data/lib/alf/renderer/text.rb +54 -16
- data/lib/alf/renderer/text.rbc +5530 -0
- data/lib/alf/tools/coerce.rbc +352 -0
- data/lib/alf/tools/miscellaneous.rb +8 -1
- data/lib/alf/tools/miscellaneous.rbc +1497 -0
- data/lib/alf/tools/to_lispy.rbc +2618 -0
- data/lib/alf/tools/to_ruby_literal.rbc +344 -0
- data/lib/alf/tools/tuple_handle.rbc +738 -0
- data/lib/alf/types/attr_list.rbc +1535 -0
- data/lib/alf/types/attr_name.rbc +781 -0
- data/lib/alf/types/boolean.rbc +365 -0
- data/lib/alf/types/heading.rb +16 -1
- data/lib/alf/types/heading.rbc +1778 -0
- data/lib/alf/types/ordering.rbc +2228 -0
- data/lib/alf/types/renaming.rbc +1064 -0
- data/lib/alf/types/summarization.rbc +1394 -0
- data/lib/alf/types/tuple_computation.rbc +1061 -0
- data/lib/alf/types/tuple_expression.rbc +1016 -0
- data/lib/alf/types/tuple_predicate.rbc +1349 -0
- data/lib/alf/version.rb +1 -1
- data/lib/alf/version.rbc +350 -0
- data/lib/alf.rb +13 -5
- data/lib/alf.rbc +3884 -0
- data/spec/integration/command/alf/alf_help.stdout +8 -6
- data/spec/integration/command/help/help_1.stdout +3 -1
- data/spec/integration/command/show/show_base.cmd +1 -1
- data/spec/integration/command/show/show_base_sort_1.cmd +1 -0
- data/spec/integration/command/show/show_base_sort_1.stdout +9 -0
- data/spec/integration/command/show/show_base_sort_2.cmd +1 -0
- data/spec/integration/command/show/show_base_sort_2.stdout +9 -0
- data/spec/integration/command/show/show_ff.cmd +1 -0
- data/spec/integration/command/show/show_ff.stdout +10 -0
- data/spec/integration/command/show/show_rash_pretty.cmd +1 -0
- data/spec/integration/command/show/show_rash_pretty.stdout +30 -0
- data/spec/integration/test_alf.rbc +1098 -0
- data/spec/integration/test_command.rbc +1832 -0
- data/spec/integration/test_examples.rbc +559 -0
- data/spec/integration/test_semantics.rbc +991 -0
- data/spec/regression/alf_file/test___FILE__.rbc +524 -0
- data/spec/regression/heading/test_heading_with_date.rbc +381 -0
- data/spec/regression/lispy/test_compile.rbc +404 -0
- data/spec/regression/logs/test_path_attribute.rbc +687 -0
- data/spec/regression/relation/test_relation_allbut_all.rbc +468 -0
- data/spec/regression/relation/test_relation_with_date.rbc +381 -0
- data/spec/regression/restrict/test_restrict_with_keywords.rbc +628 -0
- data/spec/shared/a_value.rbc +337 -0
- data/spec/shared/an_operator_class.rbc +908 -0
- data/spec/spec_helper.rbc +453 -0
- data/spec/unit/assumptions/test_file.rbc +668 -0
- data/spec/unit/assumptions/test_instance_eval.rbc +654 -0
- data/spec/unit/assumptions/test_scoping.rbc +755 -0
- data/spec/unit/assumptions/test_set.rbc +1928 -0
- data/spec/unit/command/doc_manager/test_call.rbc +1537 -0
- data/spec/unit/csv/test_reader.rbc +2228 -0
- data/spec/unit/csv/test_renderer.rbc +2426 -0
- data/spec/unit/environment/test_explicit.rbc +464 -0
- data/spec/unit/environment/test_folder.rb +2 -2
- data/spec/unit/environment/test_folder.rbc +1304 -0
- data/spec/unit/lispy/test_relation.rbc +1477 -0
- data/spec/unit/lispy/test_run.rbc +1735 -0
- data/spec/unit/lispy/test_tuple.rbc +1686 -0
- data/spec/unit/logs/test_reader.rb +6 -4
- data/spec/unit/logs/test_reader.rbc +1807 -0
- data/spec/unit/operator/non_relational/compact/test_buffer_based.rbc +1127 -0
- data/spec/unit/operator/non_relational/compact/test_sort_based.rbc +1127 -0
- data/spec/unit/operator/non_relational/test_autonum.rbc +1969 -0
- data/spec/unit/operator/non_relational/test_clip.rbc +1850 -0
- data/spec/unit/operator/non_relational/test_coerce.rbc +1290 -0
- data/spec/unit/operator/non_relational/test_compact.rbc +1382 -0
- data/spec/unit/operator/non_relational/test_defaults.rbc +2319 -0
- data/spec/unit/operator/non_relational/test_generator.rbc +2361 -0
- data/spec/unit/operator/non_relational/test_sort.rbc +2583 -0
- data/spec/unit/operator/relational/join/test_hash_based.rbc +2481 -0
- data/spec/unit/operator/relational/matching/test_hash_based.rbc +2458 -0
- data/spec/unit/operator/relational/not_matching/test_hash_based.rbc +1632 -0
- data/spec/unit/operator/relational/summarize/test_hash_based.rbc +1990 -0
- data/spec/unit/operator/relational/summarize/test_sort_based.rbc +1990 -0
- data/spec/unit/operator/relational/test_extend.rbc +1300 -0
- data/spec/unit/operator/relational/test_group.rbc +2142 -0
- data/spec/unit/operator/relational/test_intersect.rbc +2069 -0
- data/spec/unit/operator/relational/test_join.rbc +1282 -0
- data/spec/unit/operator/relational/test_minus.rbc +1995 -0
- data/spec/unit/operator/relational/test_project.rbc +2870 -0
- data/spec/unit/operator/relational/test_quota.rbc +1788 -0
- data/spec/unit/operator/relational/test_rank.rbc +2079 -0
- data/spec/unit/operator/relational/test_rename.rbc +1158 -0
- data/spec/unit/operator/relational/test_restrict.rbc +2305 -0
- data/spec/unit/operator/relational/test_summarize.rbc +2570 -0
- data/spec/unit/operator/relational/test_ungroup.rbc +1425 -0
- data/spec/unit/operator/relational/test_union.rbc +1089 -0
- data/spec/unit/operator/relational/test_unwrap.rbc +1176 -0
- data/spec/unit/operator/relational/test_wrap.rbc +1203 -0
- data/spec/unit/operator/signature/test_collect_on.rbc +1989 -0
- data/spec/unit/operator/signature/test_initialize.rbc +544 -0
- data/spec/unit/operator/signature/test_install.rbc +1671 -0
- data/spec/unit/operator/signature/test_option_parser.rbc +1348 -0
- data/spec/unit/operator/signature/test_parse_args.rbc +1908 -0
- data/spec/unit/operator/signature/test_parse_argv.rbc +2878 -0
- data/spec/unit/operator/signature/test_to_lispy.rbc +3305 -0
- data/spec/unit/operator/signature/test_to_shell.rbc +3327 -0
- data/spec/unit/operator/test_non_relational.rbc +571 -0
- data/spec/unit/operator/test_relational.rb +2 -1
- data/spec/unit/operator/test_relational.rbc +758 -0
- data/spec/unit/reader/test_alf_file.rbc +1107 -0
- data/spec/unit/reader/test_initialize.rbc +1774 -0
- data/spec/unit/reader/test_rash.rbc +1127 -0
- data/spec/unit/relation/test_coerce.rbc +2320 -0
- data/spec/unit/relation/test_inspect.rbc +502 -0
- data/spec/unit/relation/test_relops.rbc +1585 -0
- data/spec/unit/relation/test_to_a.rbc +1112 -0
- data/spec/unit/renderer/test_initialize.rbc +1766 -0
- data/spec/unit/sequel/test_environment.rbc +1723 -0
- data/spec/unit/test_aggregator.rb +38 -1
- data/spec/unit/test_aggregator.rbc +4358 -0
- data/spec/unit/test_environment.rbc +1271 -0
- data/spec/unit/test_lispy.rbc +879 -0
- data/spec/unit/test_operator.rbc +531 -0
- data/spec/unit/test_reader.rb +6 -2
- data/spec/unit/test_reader.rbc +1249 -0
- data/spec/unit/test_relation.rbc +2588 -0
- data/spec/unit/test_renderer.rb +12 -1
- data/spec/unit/test_renderer.rbc +2011 -0
- data/spec/unit/text/test_cell.rb +1 -0
- data/spec/unit/text/test_cell.rbc +1532 -0
- data/spec/unit/text/test_row.rbc +847 -0
- data/spec/unit/text/test_table.rbc +978 -0
- data/spec/unit/tools/test_coalesce.rbc +456 -0
- data/spec/unit/tools/test_coerce.rbc +279 -0
- data/spec/unit/tools/test_to_lispy.rbc +5711 -0
- data/spec/unit/tools/test_to_ruby_literal.rbc +272 -0
- data/spec/unit/tools/test_tools.rbc +672 -0
- data/spec/unit/tools/test_tuple_handle.rbc +1591 -0
- data/spec/unit/tools/test_tuple_heading.rb +20 -0
- data/spec/unit/tools/test_tuple_heading.rbc +821 -0
- data/spec/unit/tools/test_varargs.rbc +495 -0
- data/spec/unit/types/heading/test_union.rb +21 -0
- data/spec/unit/types/heading/test_union.rbc +1043 -0
- data/spec/unit/types/test_attr_list.rbc +4481 -0
- data/spec/unit/types/test_attr_name.rbc +1872 -0
- data/spec/unit/types/test_heading.rbc +1735 -0
- data/spec/unit/types/test_ordering.rbc +3695 -0
- data/spec/unit/types/test_renaming.rbc +2426 -0
- data/spec/unit/types/test_summarization.rbc +2538 -0
- data/spec/unit/types/test_tuple_computation.rbc +2340 -0
- data/spec/unit/types/test_tuple_expression.rbc +2285 -0
- data/spec/unit/types/test_tuple_predicate.rbc +3168 -0
- data/tasks/gh-pages.rake +1 -1
- metadata +529 -125
metadata
CHANGED
@@ -1,174 +1,247 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: alf
|
3
|
-
version: !ruby/object:Gem::Version
|
4
|
-
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
hash: 53
|
5
5
|
prerelease:
|
6
|
+
segments:
|
7
|
+
- 0
|
8
|
+
- 10
|
9
|
+
- 1
|
10
|
+
version: 0.10.1
|
6
11
|
platform: ruby
|
7
|
-
authors:
|
12
|
+
authors:
|
8
13
|
- Bernard Lambeau
|
9
14
|
autorequire:
|
10
15
|
bindir: bin
|
11
16
|
cert_chain: []
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
requirement: &
|
17
|
+
|
18
|
+
date: 2011-08-31 00:00:00 Z
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
17
22
|
none: false
|
18
|
-
requirements:
|
23
|
+
requirements:
|
19
24
|
- - ~>
|
20
|
-
- !ruby/object:Gem::Version
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
hash: 63
|
27
|
+
segments:
|
28
|
+
- 0
|
29
|
+
- 9
|
30
|
+
- 2
|
21
31
|
version: 0.9.2
|
22
|
-
|
32
|
+
version_requirements: *id001
|
33
|
+
name: rake
|
23
34
|
prerelease: false
|
24
|
-
|
25
|
-
- !ruby/object:Gem::Dependency
|
26
|
-
|
27
|
-
requirement: &71492100 !ruby/object:Gem::Requirement
|
35
|
+
type: :development
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
28
38
|
none: false
|
29
|
-
requirements:
|
39
|
+
requirements:
|
30
40
|
- - ~>
|
31
|
-
- !ruby/object:Gem::Version
|
41
|
+
- !ruby/object:Gem::Version
|
42
|
+
hash: 23
|
43
|
+
segments:
|
44
|
+
- 2
|
45
|
+
- 6
|
46
|
+
- 0
|
32
47
|
version: 2.6.0
|
33
|
-
|
48
|
+
version_requirements: *id002
|
49
|
+
name: rspec
|
34
50
|
prerelease: false
|
35
|
-
|
36
|
-
- !ruby/object:Gem::Dependency
|
37
|
-
|
38
|
-
requirement: &71491770 !ruby/object:Gem::Requirement
|
51
|
+
type: :development
|
52
|
+
- !ruby/object:Gem::Dependency
|
53
|
+
requirement: &id003 !ruby/object:Gem::Requirement
|
39
54
|
none: false
|
40
|
-
requirements:
|
55
|
+
requirements:
|
41
56
|
- - ~>
|
42
|
-
- !ruby/object:Gem::Version
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
hash: 51
|
59
|
+
segments:
|
60
|
+
- 0
|
61
|
+
- 10
|
62
|
+
- 2
|
43
63
|
version: 0.10.2
|
44
|
-
|
64
|
+
version_requirements: *id003
|
65
|
+
name: wlang
|
45
66
|
prerelease: false
|
46
|
-
version_requirements: *71491770
|
47
|
-
- !ruby/object:Gem::Dependency
|
48
|
-
name: rcov
|
49
|
-
requirement: &71491470 !ruby/object:Gem::Requirement
|
50
|
-
none: false
|
51
|
-
requirements:
|
52
|
-
- - ~>
|
53
|
-
- !ruby/object:Gem::Version
|
54
|
-
version: 0.9.9
|
55
67
|
type: :development
|
56
|
-
|
57
|
-
|
58
|
-
- !ruby/object:Gem::Dependency
|
59
|
-
name: yard
|
60
|
-
requirement: &71491030 !ruby/object:Gem::Requirement
|
68
|
+
- !ruby/object:Gem::Dependency
|
69
|
+
requirement: &id004 !ruby/object:Gem::Requirement
|
61
70
|
none: false
|
62
|
-
requirements:
|
71
|
+
requirements:
|
63
72
|
- - ~>
|
64
|
-
- !ruby/object:Gem::Version
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
hash: 7
|
75
|
+
segments:
|
76
|
+
- 0
|
77
|
+
- 7
|
78
|
+
- 2
|
65
79
|
version: 0.7.2
|
66
|
-
|
80
|
+
version_requirements: *id004
|
81
|
+
name: yard
|
67
82
|
prerelease: false
|
68
|
-
|
69
|
-
- !ruby/object:Gem::Dependency
|
70
|
-
|
71
|
-
requirement: &71490670 !ruby/object:Gem::Requirement
|
83
|
+
type: :development
|
84
|
+
- !ruby/object:Gem::Dependency
|
85
|
+
requirement: &id005 !ruby/object:Gem::Requirement
|
72
86
|
none: false
|
73
|
-
requirements:
|
87
|
+
requirements:
|
74
88
|
- - ~>
|
75
|
-
- !ruby/object:Gem::Version
|
89
|
+
- !ruby/object:Gem::Version
|
90
|
+
hash: 11
|
91
|
+
segments:
|
92
|
+
- 2
|
93
|
+
- 1
|
94
|
+
- 0
|
76
95
|
version: 2.1.0
|
77
|
-
|
96
|
+
version_requirements: *id005
|
97
|
+
name: bluecloth
|
78
98
|
prerelease: false
|
79
|
-
|
80
|
-
- !ruby/object:Gem::Dependency
|
81
|
-
|
82
|
-
requirement: &71490300 !ruby/object:Gem::Requirement
|
99
|
+
type: :development
|
100
|
+
- !ruby/object:Gem::Dependency
|
101
|
+
requirement: &id006 !ruby/object:Gem::Requirement
|
83
102
|
none: false
|
84
|
-
requirements:
|
103
|
+
requirements:
|
85
104
|
- - ~>
|
86
|
-
- !ruby/object:Gem::Version
|
105
|
+
- !ruby/object:Gem::Version
|
106
|
+
hash: 87
|
107
|
+
segments:
|
108
|
+
- 1
|
109
|
+
- 17
|
110
|
+
- 2
|
87
111
|
version: 1.17.2
|
88
|
-
|
112
|
+
version_requirements: *id006
|
113
|
+
name: redcarpet
|
89
114
|
prerelease: false
|
90
|
-
|
91
|
-
- !ruby/object:Gem::Dependency
|
92
|
-
|
93
|
-
requirement: &71489810 !ruby/object:Gem::Requirement
|
115
|
+
type: :development
|
116
|
+
- !ruby/object:Gem::Dependency
|
117
|
+
requirement: &id007 !ruby/object:Gem::Requirement
|
94
118
|
none: false
|
95
|
-
requirements:
|
119
|
+
requirements:
|
96
120
|
- - ~>
|
97
|
-
- !ruby/object:Gem::Version
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
hash: 11
|
123
|
+
segments:
|
124
|
+
- 1
|
125
|
+
- 5
|
126
|
+
- 4
|
98
127
|
version: 1.5.4
|
99
|
-
|
128
|
+
version_requirements: *id007
|
129
|
+
name: fastercsv
|
100
130
|
prerelease: false
|
101
|
-
|
102
|
-
- !ruby/object:Gem::Dependency
|
103
|
-
|
104
|
-
requirement: &71489450 !ruby/object:Gem::Requirement
|
131
|
+
type: :development
|
132
|
+
- !ruby/object:Gem::Dependency
|
133
|
+
requirement: &id008 !ruby/object:Gem::Requirement
|
105
134
|
none: false
|
106
|
-
requirements:
|
135
|
+
requirements:
|
107
136
|
- - ~>
|
108
|
-
- !ruby/object:Gem::Version
|
137
|
+
- !ruby/object:Gem::Version
|
138
|
+
hash: 59
|
139
|
+
segments:
|
140
|
+
- 1
|
141
|
+
- 11
|
142
|
+
- 0
|
109
143
|
version: 1.11.0
|
110
|
-
|
144
|
+
version_requirements: *id008
|
145
|
+
name: request-log-analyzer
|
111
146
|
prerelease: false
|
112
|
-
|
113
|
-
- !ruby/object:Gem::Dependency
|
114
|
-
|
115
|
-
requirement: &71488750 !ruby/object:Gem::Requirement
|
147
|
+
type: :development
|
148
|
+
- !ruby/object:Gem::Dependency
|
149
|
+
requirement: &id009 !ruby/object:Gem::Requirement
|
116
150
|
none: false
|
117
|
-
requirements:
|
151
|
+
requirements:
|
118
152
|
- - ~>
|
119
|
-
- !ruby/object:Gem::Version
|
153
|
+
- !ruby/object:Gem::Version
|
154
|
+
hash: 99
|
155
|
+
segments:
|
156
|
+
- 3
|
157
|
+
- 25
|
158
|
+
- 0
|
120
159
|
version: 3.25.0
|
121
|
-
|
160
|
+
version_requirements: *id009
|
161
|
+
name: sequel
|
122
162
|
prerelease: false
|
123
|
-
|
124
|
-
- !ruby/object:Gem::Dependency
|
125
|
-
|
126
|
-
requirement: &71488480 !ruby/object:Gem::Requirement
|
163
|
+
type: :development
|
164
|
+
- !ruby/object:Gem::Dependency
|
165
|
+
requirement: &id010 !ruby/object:Gem::Requirement
|
127
166
|
none: false
|
128
|
-
requirements:
|
167
|
+
requirements:
|
129
168
|
- - ~>
|
130
|
-
- !ruby/object:Gem::Version
|
169
|
+
- !ruby/object:Gem::Version
|
170
|
+
hash: 27
|
171
|
+
segments:
|
172
|
+
- 1
|
173
|
+
- 3
|
174
|
+
- 0
|
131
175
|
version: 1.3.0
|
132
|
-
|
176
|
+
version_requirements: *id010
|
177
|
+
name: sqlite3
|
133
178
|
prerelease: false
|
134
|
-
|
135
|
-
- !ruby/object:Gem::Dependency
|
136
|
-
|
137
|
-
requirement: &71488200 !ruby/object:Gem::Requirement
|
179
|
+
type: :development
|
180
|
+
- !ruby/object:Gem::Dependency
|
181
|
+
requirement: &id011 !ruby/object:Gem::Requirement
|
138
182
|
none: false
|
139
|
-
requirements:
|
183
|
+
requirements:
|
140
184
|
- - ~>
|
141
|
-
- !ruby/object:Gem::Version
|
142
|
-
|
143
|
-
|
185
|
+
- !ruby/object:Gem::Version
|
186
|
+
hash: 13
|
187
|
+
segments:
|
188
|
+
- 0
|
189
|
+
- 4
|
190
|
+
- 1
|
191
|
+
version: 0.4.1
|
192
|
+
version_requirements: *id011
|
193
|
+
name: quickl
|
144
194
|
prerelease: false
|
145
|
-
|
146
|
-
- !ruby/object:Gem::Dependency
|
147
|
-
|
148
|
-
requirement: &71487840 !ruby/object:Gem::Requirement
|
195
|
+
type: :runtime
|
196
|
+
- !ruby/object:Gem::Dependency
|
197
|
+
requirement: &id012 !ruby/object:Gem::Requirement
|
149
198
|
none: false
|
150
|
-
requirements:
|
199
|
+
requirements:
|
151
200
|
- - ~>
|
152
|
-
- !ruby/object:Gem::Version
|
153
|
-
|
201
|
+
- !ruby/object:Gem::Version
|
202
|
+
hash: 29
|
203
|
+
segments:
|
204
|
+
- 1
|
205
|
+
- 2
|
206
|
+
- 1
|
207
|
+
version: 1.2.1
|
208
|
+
version_requirements: *id012
|
209
|
+
name: myrrha
|
210
|
+
prerelease: false
|
154
211
|
type: :runtime
|
212
|
+
- !ruby/object:Gem::Dependency
|
213
|
+
requirement: &id013 !ruby/object:Gem::Requirement
|
214
|
+
none: false
|
215
|
+
requirements:
|
216
|
+
- - ~>
|
217
|
+
- !ruby/object:Gem::Version
|
218
|
+
hash: 11
|
219
|
+
segments:
|
220
|
+
- 1
|
221
|
+
- 6
|
222
|
+
- 2
|
223
|
+
version: 1.6.2
|
224
|
+
version_requirements: *id013
|
225
|
+
name: highline
|
155
226
|
prerelease: false
|
156
|
-
|
157
|
-
description:
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
227
|
+
type: :runtime
|
228
|
+
description: |-
|
229
|
+
Alf brings the relational algebra both in Shell and in Ruby. In Shell, because
|
230
|
+
manipulating any relation-like data source should be as straightforward as a
|
231
|
+
one-liner. In Ruby, because I've never understood why programming languages
|
232
|
+
provide data structures like arrays, hashes, sets, trees and graphs but not
|
233
|
+
_relations_... Let's stop the segregation ;-)
|
234
|
+
email:
|
163
235
|
- blambeau@gmail.com
|
164
|
-
executables:
|
236
|
+
executables:
|
165
237
|
- alf
|
166
238
|
extensions: []
|
167
|
-
|
239
|
+
|
240
|
+
extra_rdoc_files:
|
168
241
|
- README.md
|
169
242
|
- CHANGELOG.md
|
170
243
|
- LICENCE.md
|
171
|
-
files:
|
244
|
+
files:
|
172
245
|
- bin/alf
|
173
246
|
- doc/commands/help.md
|
174
247
|
- doc/commands/show.md
|
@@ -187,6 +260,7 @@ files:
|
|
187
260
|
- doc/operators/relational/group.md
|
188
261
|
- doc/operators/relational/ungroup.md
|
189
262
|
- doc/operators/relational/matching.md
|
263
|
+
- doc/operators/relational/heading.md
|
190
264
|
- doc/operators/relational/rename.md
|
191
265
|
- doc/operators/relational/restrict.md
|
192
266
|
- doc/operators/relational/not-matching.md
|
@@ -198,6 +272,15 @@ files:
|
|
198
272
|
- doc/operators/non_relational/compact.md
|
199
273
|
- doc/operators/non_relational/coerce.md
|
200
274
|
- doc/operators/non_relational/sort.md
|
275
|
+
- examples/hitradio/mar_reader.rb
|
276
|
+
- examples/hitradio/hitradio-1.alf
|
277
|
+
- examples/hitradio/compare1.rb
|
278
|
+
- examples/hitradio/hitradio.rash
|
279
|
+
- examples/hitradio/hitradio.mar
|
280
|
+
- examples/hitradio/hitradio.mar.gz
|
281
|
+
- examples/hitradio/gz_reader.rb
|
282
|
+
- examples/hitradio/hitradio.log
|
283
|
+
- examples/hitradio/compact.rb
|
201
284
|
- examples/operators/project.alf
|
202
285
|
- examples/operators/ungroup.alf
|
203
286
|
- examples/operators/supplies.rash
|
@@ -238,93 +321,185 @@ files:
|
|
238
321
|
- examples/northwind/customers.csv
|
239
322
|
- examples/northwind/orders.csv
|
240
323
|
- examples/northwind/northwind.db
|
324
|
+
- lib/alf.rbc
|
241
325
|
- lib/alf.rb
|
242
326
|
- lib/alf/extra.rb
|
327
|
+
- lib/alf/extra.rbc
|
328
|
+
- lib/alf/relation/class_methods.rbc
|
243
329
|
- lib/alf/relation/class_methods.rb
|
330
|
+
- lib/alf/relation/instance_methods.rbc
|
244
331
|
- lib/alf/relation/instance_methods.rb
|
332
|
+
- lib/alf/command/main.rbc
|
245
333
|
- lib/alf/command/help.rb
|
334
|
+
- lib/alf/command/class_methods.rbc
|
246
335
|
- lib/alf/command/show.rb
|
336
|
+
- lib/alf/command/doc_manager.rbc
|
247
337
|
- lib/alf/command/class_methods.rb
|
338
|
+
- lib/alf/command/exec.rbc
|
248
339
|
- lib/alf/command/main.rb
|
340
|
+
- lib/alf/command/show.rbc
|
249
341
|
- lib/alf/command/exec.rb
|
342
|
+
- lib/alf/command/help.rbc
|
250
343
|
- lib/alf/command/doc_manager.rb
|
344
|
+
- lib/alf/reader/base.rbc
|
251
345
|
- lib/alf/reader/alf_file.rb
|
346
|
+
- lib/alf/reader/alf_file.rbc
|
347
|
+
- lib/alf/reader/class_methods.rbc
|
252
348
|
- lib/alf/reader/base.rb
|
349
|
+
- lib/alf/reader/rash.rbc
|
253
350
|
- lib/alf/reader/class_methods.rb
|
254
351
|
- lib/alf/reader/rash.rb
|
352
|
+
- lib/alf/errors.rbc
|
353
|
+
- lib/alf/aggregator/aggregators.rbc
|
354
|
+
- lib/alf/aggregator/base.rbc
|
355
|
+
- lib/alf/aggregator/class_methods.rbc
|
255
356
|
- lib/alf/aggregator/base.rb
|
256
357
|
- lib/alf/aggregator/class_methods.rb
|
257
358
|
- lib/alf/aggregator/aggregators.rb
|
359
|
+
- lib/alf/environment/base.rbc
|
360
|
+
- lib/alf/environment/explicit.rbc
|
258
361
|
- lib/alf/environment/explicit.rb
|
362
|
+
- lib/alf/environment/class_methods.rbc
|
259
363
|
- lib/alf/environment/base.rb
|
260
364
|
- lib/alf/environment/class_methods.rb
|
365
|
+
- lib/alf/environment/folder.rbc
|
261
366
|
- lib/alf/environment/folder.rb
|
367
|
+
- lib/alf/types/renaming.rbc
|
368
|
+
- lib/alf/types/heading.rbc
|
262
369
|
- lib/alf/types/renaming.rb
|
263
370
|
- lib/alf/types/tuple_predicate.rb
|
371
|
+
- lib/alf/types/ordering.rbc
|
372
|
+
- lib/alf/types/attr_list.rbc
|
373
|
+
- lib/alf/types/attr_name.rbc
|
264
374
|
- lib/alf/types/boolean.rb
|
375
|
+
- lib/alf/types/tuple_predicate.rbc
|
265
376
|
- lib/alf/types/attr_list.rb
|
377
|
+
- lib/alf/types/tuple_expression.rbc
|
266
378
|
- lib/alf/types/attr_name.rb
|
267
379
|
- lib/alf/types/heading.rb
|
268
380
|
- lib/alf/types/tuple_computation.rb
|
269
381
|
- lib/alf/types/ordering.rb
|
382
|
+
- lib/alf/types/boolean.rbc
|
270
383
|
- lib/alf/types/tuple_expression.rb
|
384
|
+
- lib/alf/types/tuple_computation.rbc
|
271
385
|
- lib/alf/types/summarization.rb
|
386
|
+
- lib/alf/types/summarization.rbc
|
272
387
|
- lib/alf/tools/to_lispy.rb
|
388
|
+
- lib/alf/tools/tuple_handle.rbc
|
389
|
+
- lib/alf/tools/to_ruby_literal.rbc
|
273
390
|
- lib/alf/tools/coerce.rb
|
391
|
+
- lib/alf/tools/miscellaneous.rbc
|
274
392
|
- lib/alf/tools/to_ruby_literal.rb
|
393
|
+
- lib/alf/tools/to_lispy.rbc
|
275
394
|
- lib/alf/tools/miscellaneous.rb
|
276
395
|
- lib/alf/tools/tuple_handle.rb
|
396
|
+
- lib/alf/tools/coerce.rbc
|
397
|
+
- lib/alf/version.rbc
|
398
|
+
- lib/alf/iterator/base.rbc
|
399
|
+
- lib/alf/iterator/class_methods.rbc
|
277
400
|
- lib/alf/iterator/base.rb
|
278
401
|
- lib/alf/iterator/class_methods.rb
|
279
402
|
- lib/alf/iterator/proxy.rb
|
403
|
+
- lib/alf/iterator/proxy.rbc
|
404
|
+
- lib/alf/errors.rb
|
280
405
|
- lib/alf/loader.rb
|
406
|
+
- lib/alf/buffer/sorted.rbc
|
281
407
|
- lib/alf/buffer/sorted.rb
|
282
408
|
- lib/alf/extra/yaml.rb
|
283
409
|
- lib/alf/extra/sequel.rb
|
284
410
|
- lib/alf/extra/csv.rb
|
411
|
+
- lib/alf/extra/csv.rbc
|
412
|
+
- lib/alf/extra/logs.rbc
|
413
|
+
- lib/alf/extra/yaml.rbc
|
414
|
+
- lib/alf/extra/sequel.rbc
|
285
415
|
- lib/alf/extra/logs.rb
|
416
|
+
- lib/alf/renderer/base.rbc
|
417
|
+
- lib/alf/renderer/class_methods.rbc
|
286
418
|
- lib/alf/renderer/base.rb
|
419
|
+
- lib/alf/renderer/rash.rbc
|
287
420
|
- lib/alf/renderer/class_methods.rb
|
288
421
|
- lib/alf/renderer/rash.rb
|
289
422
|
- lib/alf/renderer/text.rb
|
423
|
+
- lib/alf/renderer/text.rbc
|
424
|
+
- lib/alf/lispy/instance_methods.rbc
|
290
425
|
- lib/alf/lispy/instance_methods.rb
|
426
|
+
- lib/alf/operator/base.rbc
|
291
427
|
- lib/alf/operator/transform.rb
|
428
|
+
- lib/alf/operator/binary.rbc
|
429
|
+
- lib/alf/operator/experimental.rbc
|
292
430
|
- lib/alf/operator/shortcut.rb
|
431
|
+
- lib/alf/operator/class_methods.rbc
|
293
432
|
- lib/alf/operator/base.rb
|
433
|
+
- lib/alf/operator/nullary.rbc
|
434
|
+
- lib/alf/operator/transform.rbc
|
294
435
|
- lib/alf/operator/class_methods.rb
|
295
436
|
- lib/alf/operator/experimental.rb
|
437
|
+
- lib/alf/operator/relational/heading.rbc
|
438
|
+
- lib/alf/operator/relational/extend.rbc
|
296
439
|
- lib/alf/operator/relational/quota.rb
|
440
|
+
- lib/alf/operator/relational/unwrap.rbc
|
441
|
+
- lib/alf/operator/relational/wrap.rbc
|
442
|
+
- lib/alf/operator/relational/group.rbc
|
443
|
+
- lib/alf/operator/relational/rename.rbc
|
297
444
|
- lib/alf/operator/relational/extend.rb
|
298
445
|
- lib/alf/operator/relational/rename.rb
|
299
446
|
- lib/alf/operator/relational/union.rb
|
447
|
+
- lib/alf/operator/relational/project.rbc
|
448
|
+
- lib/alf/operator/relational/union.rbc
|
449
|
+
- lib/alf/operator/relational/intersect.rbc
|
300
450
|
- lib/alf/operator/relational/join.rb
|
301
451
|
- lib/alf/operator/relational/wrap.rb
|
452
|
+
- lib/alf/operator/relational/join.rbc
|
302
453
|
- lib/alf/operator/relational/group.rb
|
454
|
+
- lib/alf/operator/relational/minus.rbc
|
455
|
+
- lib/alf/operator/relational/rank.rbc
|
303
456
|
- lib/alf/operator/relational/restrict.rb
|
304
457
|
- lib/alf/operator/relational/minus.rb
|
305
458
|
- lib/alf/operator/relational/project.rb
|
459
|
+
- lib/alf/operator/relational/heading.rb
|
306
460
|
- lib/alf/operator/relational/summarize.rb
|
461
|
+
- lib/alf/operator/relational/restrict.rbc
|
462
|
+
- lib/alf/operator/relational/quota.rbc
|
463
|
+
- lib/alf/operator/relational/not_matching.rbc
|
307
464
|
- lib/alf/operator/relational/rank.rb
|
465
|
+
- lib/alf/operator/relational/summarize.rbc
|
466
|
+
- lib/alf/operator/relational/ungroup.rbc
|
308
467
|
- lib/alf/operator/relational/ungroup.rb
|
309
468
|
- lib/alf/operator/relational/matching.rb
|
310
469
|
- lib/alf/operator/relational/unwrap.rb
|
311
470
|
- lib/alf/operator/relational/intersect.rb
|
312
471
|
- lib/alf/operator/relational/not_matching.rb
|
472
|
+
- lib/alf/operator/relational/matching.rbc
|
313
473
|
- lib/alf/operator/unary.rb
|
474
|
+
- lib/alf/operator/non_relational/sort.rbc
|
475
|
+
- lib/alf/operator/non_relational/clip.rbc
|
476
|
+
- lib/alf/operator/non_relational/defaults.rbc
|
314
477
|
- lib/alf/operator/non_relational/coerce.rb
|
478
|
+
- lib/alf/operator/non_relational/generator.rbc
|
315
479
|
- lib/alf/operator/non_relational/defaults.rb
|
316
480
|
- lib/alf/operator/non_relational/autonum.rb
|
317
481
|
- lib/alf/operator/non_relational/sort.rb
|
482
|
+
- lib/alf/operator/non_relational/autonum.rbc
|
318
483
|
- lib/alf/operator/non_relational/generator.rb
|
319
484
|
- lib/alf/operator/non_relational/clip.rb
|
485
|
+
- lib/alf/operator/non_relational/compact.rbc
|
320
486
|
- lib/alf/operator/non_relational/compact.rb
|
487
|
+
- lib/alf/operator/non_relational/coerce.rbc
|
488
|
+
- lib/alf/operator/cesure.rbc
|
489
|
+
- lib/alf/operator/shortcut.rbc
|
321
490
|
- lib/alf/operator/nullary.rb
|
322
491
|
- lib/alf/operator/cesure.rb
|
492
|
+
- lib/alf/operator/unary.rbc
|
323
493
|
- lib/alf/operator/binary.rb
|
494
|
+
- lib/alf/operator/signature.rbc
|
324
495
|
- lib/alf/operator/signature.rb
|
496
|
+
- lib/alf/loader.rbc
|
325
497
|
- lib/alf/version.rb
|
326
498
|
- spec/spec_helper.rb
|
499
|
+
- spec/spec_helper.rbc
|
327
500
|
- spec/shared/a_value.rb
|
501
|
+
- spec/shared/a_value.rbc
|
502
|
+
- spec/shared/an_operator_class.rbc
|
328
503
|
- spec/shared/an_operator_class.rb
|
329
504
|
- spec/integration/command/rename/rename_0.stdout
|
330
505
|
- spec/integration/command/rename/rename_0.cmd
|
@@ -404,17 +579,25 @@ files:
|
|
404
579
|
- spec/integration/command/intersect/intersect_0.cmd
|
405
580
|
- spec/integration/command/intersect/intersect_0.stdout
|
406
581
|
- spec/integration/command/show/show_base.stdout
|
582
|
+
- spec/integration/command/show/show_rash_pretty.cmd
|
407
583
|
- spec/integration/command/show/show_yaml.cmd
|
584
|
+
- spec/integration/command/show/show_rash_pretty.stdout
|
585
|
+
- spec/integration/command/show/show_ff.cmd
|
408
586
|
- spec/integration/command/show/show_yaml.stdout
|
409
587
|
- spec/integration/command/show/show_rash.cmd
|
588
|
+
- spec/integration/command/show/show_base_sort_1.cmd
|
410
589
|
- spec/integration/command/show/show_conflictual.stdout
|
590
|
+
- spec/integration/command/show/show_base_sort_2.cmd
|
411
591
|
- spec/integration/command/show/show_rash_2.cmd
|
412
592
|
- spec/integration/command/show/show_rash.stdout
|
413
593
|
- spec/integration/command/show/show_base.cmd
|
594
|
+
- spec/integration/command/show/show_base_sort_2.stdout
|
414
595
|
- spec/integration/command/show/show_csv.cmd
|
415
596
|
- spec/integration/command/show/show_rash_2.stdout
|
416
597
|
- spec/integration/command/show/show_conflictual.cmd
|
417
598
|
- spec/integration/command/show/show_csv.stdout
|
599
|
+
- spec/integration/command/show/show_base_sort_1.stdout
|
600
|
+
- spec/integration/command/show/show_ff.stdout
|
418
601
|
- spec/integration/command/rank/rank_5.stdout
|
419
602
|
- spec/integration/command/rank/rank_2.cmd
|
420
603
|
- spec/integration/command/rank/rank_5.cmd
|
@@ -444,6 +627,7 @@ files:
|
|
444
627
|
- spec/integration/semantics/test_project.alf
|
445
628
|
- spec/integration/semantics/test_join.alf
|
446
629
|
- spec/integration/test_semantics.rb
|
630
|
+
- spec/integration/test_semantics.rbc
|
447
631
|
- spec/integration/test_command.rb
|
448
632
|
- spec/integration/test_examples.rb
|
449
633
|
- spec/integration/__database__/supplies.rash
|
@@ -451,113 +635,214 @@ files:
|
|
451
635
|
- spec/integration/__database__/parts.rash
|
452
636
|
- spec/integration/__database__/suppliers.rash
|
453
637
|
- spec/integration/__database__/suppliers_csv.csv
|
638
|
+
- spec/integration/test_alf.rbc
|
639
|
+
- spec/integration/test_command.rbc
|
640
|
+
- spec/integration/test_examples.rbc
|
454
641
|
- spec/integration/test_alf.rb
|
642
|
+
- spec/unit/test_relation.rbc
|
455
643
|
- spec/unit/test_operator.rb
|
456
644
|
- spec/unit/test_relation.rb
|
645
|
+
- spec/unit/relation/test_to_a.rbc
|
457
646
|
- spec/unit/relation/test_relops.rb
|
458
647
|
- spec/unit/relation/test_inspect.rb
|
648
|
+
- spec/unit/relation/test_relops.rbc
|
649
|
+
- spec/unit/relation/test_inspect.rbc
|
459
650
|
- spec/unit/relation/test_coerce.rb
|
460
651
|
- spec/unit/relation/test_to_a.rb
|
652
|
+
- spec/unit/relation/test_coerce.rbc
|
653
|
+
- spec/unit/command/doc_manager/test_call.rbc
|
461
654
|
- spec/unit/command/doc_manager/dynamic.md
|
462
655
|
- spec/unit/command/doc_manager/example_1.txt
|
463
656
|
- spec/unit/command/doc_manager/example.md
|
464
657
|
- spec/unit/command/doc_manager/static.md
|
465
658
|
- spec/unit/command/doc_manager/test_call.rb
|
659
|
+
- spec/unit/reader/test_rash.rbc
|
466
660
|
- spec/unit/reader/input.rb
|
467
661
|
- spec/unit/reader/test_rash.rb
|
662
|
+
- spec/unit/reader/test_initialize.rbc
|
468
663
|
- spec/unit/reader/test_initialize.rb
|
469
664
|
- spec/unit/reader/test_alf_file.rb
|
665
|
+
- spec/unit/reader/test_alf_file.rbc
|
470
666
|
- spec/unit/test_lispy.rb
|
471
667
|
- spec/unit/test_aggregator.rb
|
472
668
|
- spec/unit/sequel/test_environment.rb
|
473
669
|
- spec/unit/sequel/alf.db
|
670
|
+
- spec/unit/sequel/test_environment.rbc
|
671
|
+
- spec/unit/test_aggregator.rbc
|
672
|
+
- spec/unit/test_lispy.rbc
|
474
673
|
- spec/unit/environment/examples/suppliers.rash
|
475
674
|
- spec/unit/environment/test_explicit.rb
|
675
|
+
- spec/unit/environment/test_explicit.rbc
|
476
676
|
- spec/unit/environment/test_folder.rb
|
677
|
+
- spec/unit/environment/test_folder.rbc
|
678
|
+
- spec/unit/types/test_ordering.rbc
|
477
679
|
- spec/unit/types/test_ordering.rb
|
478
680
|
- spec/unit/types/test_tuple_computation.rb
|
681
|
+
- spec/unit/types/test_heading.rbc
|
682
|
+
- spec/unit/types/test_tuple_computation.rbc
|
683
|
+
- spec/unit/types/test_attr_list.rbc
|
684
|
+
- spec/unit/types/heading/test_union.rbc
|
685
|
+
- spec/unit/types/heading/test_union.rb
|
479
686
|
- spec/unit/types/test_tuple_expression.rb
|
687
|
+
- spec/unit/types/test_tuple_predicate.rbc
|
688
|
+
- spec/unit/types/test_tuple_expression.rbc
|
689
|
+
- spec/unit/types/test_summarization.rbc
|
480
690
|
- spec/unit/types/test_renaming.rb
|
481
691
|
- spec/unit/types/test_summarization.rb
|
482
692
|
- spec/unit/types/test_heading.rb
|
483
693
|
- spec/unit/types/test_attr_list.rb
|
484
694
|
- spec/unit/types/test_attr_name.rb
|
485
695
|
- spec/unit/types/test_tuple_predicate.rb
|
696
|
+
- spec/unit/types/test_renaming.rbc
|
697
|
+
- spec/unit/types/test_attr_name.rbc
|
486
698
|
- spec/unit/tools/test_coalesce.rb
|
699
|
+
- spec/unit/tools/test_varargs.rbc
|
487
700
|
- spec/unit/tools/test_varargs.rb
|
488
701
|
- spec/unit/tools/test_to_ruby_literal.rb
|
702
|
+
- spec/unit/tools/test_tuple_handle.rbc
|
703
|
+
- spec/unit/tools/test_to_lispy.rbc
|
489
704
|
- spec/unit/tools/test_tools.rb
|
490
705
|
- spec/unit/tools/test_coerce.rb
|
706
|
+
- spec/unit/tools/test_tools.rbc
|
707
|
+
- spec/unit/tools/test_to_ruby_literal.rbc
|
491
708
|
- spec/unit/tools/test_to_lispy.rb
|
709
|
+
- spec/unit/tools/test_tuple_heading.rbc
|
710
|
+
- spec/unit/tools/test_coalesce.rbc
|
711
|
+
- spec/unit/tools/test_coerce.rbc
|
712
|
+
- spec/unit/tools/test_tuple_heading.rb
|
492
713
|
- spec/unit/tools/test_tuple_handle.rb
|
493
714
|
- spec/unit/text/test_cell.rb
|
494
715
|
- spec/unit/text/test_table.rb
|
716
|
+
- spec/unit/text/test_cell.rbc
|
717
|
+
- spec/unit/text/test_row.rbc
|
718
|
+
- spec/unit/text/test_table.rbc
|
495
719
|
- spec/unit/text/test_row.rb
|
720
|
+
- spec/unit/test_renderer.rbc
|
496
721
|
- spec/unit/test_environment.rb
|
722
|
+
- spec/unit/test_operator.rbc
|
497
723
|
- spec/unit/csv/input.csv
|
724
|
+
- spec/unit/csv/test_renderer.rbc
|
725
|
+
- spec/unit/csv/test_reader.rbc
|
498
726
|
- spec/unit/csv/test_renderer.rb
|
499
727
|
- spec/unit/csv/test_reader.rb
|
728
|
+
- spec/unit/test_reader.rbc
|
729
|
+
- spec/unit/renderer/test_initialize.rbc
|
500
730
|
- spec/unit/renderer/test_initialize.rb
|
731
|
+
- spec/unit/lispy/test_run.rbc
|
732
|
+
- spec/unit/lispy/test_relation.rbc
|
501
733
|
- spec/unit/lispy/test_relation.rb
|
734
|
+
- spec/unit/lispy/test_tuple.rbc
|
502
735
|
- spec/unit/lispy/test_tuple.rb
|
503
736
|
- spec/unit/lispy/test_run.rb
|
504
737
|
- spec/unit/assumptions/test_scoping.rb
|
738
|
+
- spec/unit/assumptions/test_instance_eval.rbc
|
505
739
|
- spec/unit/assumptions/test_set.rb
|
740
|
+
- spec/unit/assumptions/test_file.rbc
|
506
741
|
- spec/unit/assumptions/test_instance_eval.rb
|
507
742
|
- spec/unit/assumptions/test_file.rb
|
743
|
+
- spec/unit/assumptions/test_set.rbc
|
744
|
+
- spec/unit/assumptions/test_scoping.rbc
|
508
745
|
- spec/unit/test_renderer.rb
|
509
746
|
- spec/unit/logs/apache_combined.log
|
510
747
|
- spec/unit/logs/postgresql.log
|
748
|
+
- spec/unit/logs/test_reader.rbc
|
511
749
|
- spec/unit/logs/test_reader.rb
|
750
|
+
- spec/unit/test_environment.rbc
|
512
751
|
- spec/unit/operator/test_non_relational.rb
|
752
|
+
- spec/unit/operator/relational/test_quota.rbc
|
513
753
|
- spec/unit/operator/relational/test_join.rb
|
514
754
|
- spec/unit/operator/relational/not_matching/test_hash_based.rb
|
755
|
+
- spec/unit/operator/relational/not_matching/test_hash_based.rbc
|
756
|
+
- spec/unit/operator/relational/test_restrict.rbc
|
515
757
|
- spec/unit/operator/relational/test_extend.rb
|
758
|
+
- spec/unit/operator/relational/test_minus.rbc
|
516
759
|
- spec/unit/operator/relational/test_intersect.rb
|
760
|
+
- spec/unit/operator/relational/test_rank.rbc
|
517
761
|
- spec/unit/operator/relational/test_rank.rb
|
518
762
|
- spec/unit/operator/relational/test_summarize.rb
|
519
763
|
- spec/unit/operator/relational/test_rename.rb
|
520
764
|
- spec/unit/operator/relational/join/test_hash_based.rb
|
765
|
+
- spec/unit/operator/relational/join/test_hash_based.rbc
|
766
|
+
- spec/unit/operator/relational/test_intersect.rbc
|
767
|
+
- spec/unit/operator/relational/test_unwrap.rbc
|
521
768
|
- spec/unit/operator/relational/test_wrap.rb
|
769
|
+
- spec/unit/operator/relational/test_wrap.rbc
|
522
770
|
- spec/unit/operator/relational/test_restrict.rb
|
523
771
|
- spec/unit/operator/relational/test_minus.rb
|
524
772
|
- spec/unit/operator/relational/test_quota.rb
|
773
|
+
- spec/unit/operator/relational/test_ungroup.rbc
|
774
|
+
- spec/unit/operator/relational/test_union.rbc
|
775
|
+
- spec/unit/operator/relational/test_group.rbc
|
776
|
+
- spec/unit/operator/relational/test_project.rbc
|
525
777
|
- spec/unit/operator/relational/test_unwrap.rb
|
526
778
|
- spec/unit/operator/relational/matching/test_hash_based.rb
|
779
|
+
- spec/unit/operator/relational/matching/test_hash_based.rbc
|
527
780
|
- spec/unit/operator/relational/test_group.rb
|
781
|
+
- spec/unit/operator/relational/test_join.rbc
|
782
|
+
- spec/unit/operator/relational/test_extend.rbc
|
783
|
+
- spec/unit/operator/relational/test_rename.rbc
|
528
784
|
- spec/unit/operator/relational/test_union.rb
|
529
785
|
- spec/unit/operator/relational/test_project.rb
|
786
|
+
- spec/unit/operator/relational/test_summarize.rbc
|
530
787
|
- spec/unit/operator/relational/summarize/test_hash_based.rb
|
788
|
+
- spec/unit/operator/relational/summarize/test_hash_based.rbc
|
531
789
|
- spec/unit/operator/relational/summarize/test_sort_based.rb
|
790
|
+
- spec/unit/operator/relational/summarize/test_sort_based.rbc
|
532
791
|
- spec/unit/operator/relational/test_ungroup.rb
|
533
792
|
- spec/unit/operator/non_relational/test_defaults.rb
|
793
|
+
- spec/unit/operator/non_relational/compact/test_buffer_based.rbc
|
534
794
|
- spec/unit/operator/non_relational/compact/test_sort_based.rb
|
535
795
|
- spec/unit/operator/non_relational/compact/test_buffer_based.rb
|
796
|
+
- spec/unit/operator/non_relational/compact/test_sort_based.rbc
|
536
797
|
- spec/unit/operator/non_relational/test_sort.rb
|
798
|
+
- spec/unit/operator/non_relational/test_clip.rbc
|
537
799
|
- spec/unit/operator/non_relational/test_generator.rb
|
538
800
|
- spec/unit/operator/non_relational/test_coerce.rb
|
801
|
+
- spec/unit/operator/non_relational/test_defaults.rbc
|
539
802
|
- spec/unit/operator/non_relational/test_clip.rb
|
803
|
+
- spec/unit/operator/non_relational/test_sort.rbc
|
540
804
|
- spec/unit/operator/non_relational/test_autonum.rb
|
805
|
+
- spec/unit/operator/non_relational/test_coerce.rbc
|
806
|
+
- spec/unit/operator/non_relational/test_compact.rbc
|
541
807
|
- spec/unit/operator/non_relational/test_compact.rb
|
808
|
+
- spec/unit/operator/non_relational/test_generator.rbc
|
809
|
+
- spec/unit/operator/non_relational/test_autonum.rbc
|
542
810
|
- spec/unit/operator/signature/test_install.rb
|
543
811
|
- spec/unit/operator/signature/test_parse_argv.rb
|
544
812
|
- spec/unit/operator/signature/test_parse_args.rb
|
813
|
+
- spec/unit/operator/signature/test_collect_on.rbc
|
814
|
+
- spec/unit/operator/signature/test_option_parser.rbc
|
815
|
+
- spec/unit/operator/signature/test_to_lispy.rbc
|
816
|
+
- spec/unit/operator/signature/test_initialize.rbc
|
545
817
|
- spec/unit/operator/signature/test_initialize.rb
|
818
|
+
- spec/unit/operator/signature/test_install.rbc
|
546
819
|
- spec/unit/operator/signature/test_option_parser.rb
|
547
820
|
- spec/unit/operator/signature/test_to_lispy.rb
|
821
|
+
- spec/unit/operator/signature/test_to_shell.rbc
|
822
|
+
- spec/unit/operator/signature/test_parse_args.rbc
|
823
|
+
- spec/unit/operator/signature/test_parse_argv.rbc
|
548
824
|
- spec/unit/operator/signature/test_to_shell.rb
|
549
825
|
- spec/unit/operator/signature/test_collect_on.rb
|
550
826
|
- spec/unit/operator/test_relational.rb
|
827
|
+
- spec/unit/operator/test_relational.rbc
|
828
|
+
- spec/unit/operator/test_non_relational.rbc
|
551
829
|
- spec/unit/test_reader.rb
|
552
830
|
- spec/regression/relation/test_relation_allbut_all.rb
|
831
|
+
- spec/regression/relation/test_relation_with_date.rbc
|
553
832
|
- spec/regression/relation/test_relation_with_date.rb
|
833
|
+
- spec/regression/relation/test_relation_allbut_all.rbc
|
554
834
|
- spec/regression/restrict/test_restrict_with_keywords.rb
|
835
|
+
- spec/regression/restrict/test_restrict_with_keywords.rbc
|
555
836
|
- spec/regression/alf_file/test___FILE__.rb
|
837
|
+
- spec/regression/alf_file/test___FILE__.rbc
|
556
838
|
- spec/regression/alf_file/__FILE__.alf
|
557
839
|
- spec/regression/alf_file/suppliers.rash
|
840
|
+
- spec/regression/heading/test_heading_with_date.rbc
|
558
841
|
- spec/regression/heading/test_heading_with_date.rb
|
842
|
+
- spec/regression/lispy/test_compile.rbc
|
559
843
|
- spec/regression/lispy/test_compile.rb
|
560
844
|
- spec/regression/logs/apache_combined.log
|
845
|
+
- spec/regression/logs/test_path_attribute.rbc
|
561
846
|
- spec/regression/logs/test_path_attribute.rb
|
562
847
|
- tasks/integration_test.rake
|
563
848
|
- tasks/gh-pages.rake
|
@@ -580,34 +865,43 @@ files:
|
|
580
865
|
- TODO.md
|
581
866
|
homepage: http://blambeau.github.com/alf
|
582
867
|
licenses: []
|
868
|
+
|
583
869
|
post_install_message:
|
584
870
|
rdoc_options: []
|
585
|
-
|
871
|
+
|
872
|
+
require_paths:
|
586
873
|
- lib
|
587
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
874
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
588
875
|
none: false
|
589
|
-
requirements:
|
590
|
-
- -
|
591
|
-
- !ruby/object:Gem::Version
|
592
|
-
|
593
|
-
segments:
|
876
|
+
requirements:
|
877
|
+
- - ">="
|
878
|
+
- !ruby/object:Gem::Version
|
879
|
+
hash: 3
|
880
|
+
segments:
|
594
881
|
- 0
|
595
|
-
|
596
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
882
|
+
version: "0"
|
883
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
597
884
|
none: false
|
598
|
-
requirements:
|
599
|
-
- -
|
600
|
-
- !ruby/object:Gem::Version
|
601
|
-
|
885
|
+
requirements:
|
886
|
+
- - ">="
|
887
|
+
- !ruby/object:Gem::Version
|
888
|
+
hash: 3
|
889
|
+
segments:
|
890
|
+
- 0
|
891
|
+
version: "0"
|
602
892
|
requirements: []
|
893
|
+
|
603
894
|
rubyforge_project:
|
604
|
-
rubygems_version: 1.8.
|
895
|
+
rubygems_version: 1.8.10
|
605
896
|
signing_key:
|
606
897
|
specification_version: 3
|
607
898
|
summary: Relational Algebra at your fingertips
|
608
|
-
test_files:
|
899
|
+
test_files:
|
609
900
|
- spec/spec_helper.rb
|
901
|
+
- spec/spec_helper.rbc
|
610
902
|
- spec/shared/a_value.rb
|
903
|
+
- spec/shared/a_value.rbc
|
904
|
+
- spec/shared/an_operator_class.rbc
|
611
905
|
- spec/shared/an_operator_class.rb
|
612
906
|
- spec/integration/command/rename/rename_0.stdout
|
613
907
|
- spec/integration/command/rename/rename_0.cmd
|
@@ -687,17 +981,25 @@ test_files:
|
|
687
981
|
- spec/integration/command/intersect/intersect_0.cmd
|
688
982
|
- spec/integration/command/intersect/intersect_0.stdout
|
689
983
|
- spec/integration/command/show/show_base.stdout
|
984
|
+
- spec/integration/command/show/show_rash_pretty.cmd
|
690
985
|
- spec/integration/command/show/show_yaml.cmd
|
986
|
+
- spec/integration/command/show/show_rash_pretty.stdout
|
987
|
+
- spec/integration/command/show/show_ff.cmd
|
691
988
|
- spec/integration/command/show/show_yaml.stdout
|
692
989
|
- spec/integration/command/show/show_rash.cmd
|
990
|
+
- spec/integration/command/show/show_base_sort_1.cmd
|
693
991
|
- spec/integration/command/show/show_conflictual.stdout
|
992
|
+
- spec/integration/command/show/show_base_sort_2.cmd
|
694
993
|
- spec/integration/command/show/show_rash_2.cmd
|
695
994
|
- spec/integration/command/show/show_rash.stdout
|
696
995
|
- spec/integration/command/show/show_base.cmd
|
996
|
+
- spec/integration/command/show/show_base_sort_2.stdout
|
697
997
|
- spec/integration/command/show/show_csv.cmd
|
698
998
|
- spec/integration/command/show/show_rash_2.stdout
|
699
999
|
- spec/integration/command/show/show_conflictual.cmd
|
700
1000
|
- spec/integration/command/show/show_csv.stdout
|
1001
|
+
- spec/integration/command/show/show_base_sort_1.stdout
|
1002
|
+
- spec/integration/command/show/show_ff.stdout
|
701
1003
|
- spec/integration/command/rank/rank_5.stdout
|
702
1004
|
- spec/integration/command/rank/rank_2.cmd
|
703
1005
|
- spec/integration/command/rank/rank_5.cmd
|
@@ -727,6 +1029,7 @@ test_files:
|
|
727
1029
|
- spec/integration/semantics/test_project.alf
|
728
1030
|
- spec/integration/semantics/test_join.alf
|
729
1031
|
- spec/integration/test_semantics.rb
|
1032
|
+
- spec/integration/test_semantics.rbc
|
730
1033
|
- spec/integration/test_command.rb
|
731
1034
|
- spec/integration/test_examples.rb
|
732
1035
|
- spec/integration/__database__/supplies.rash
|
@@ -734,111 +1037,212 @@ test_files:
|
|
734
1037
|
- spec/integration/__database__/parts.rash
|
735
1038
|
- spec/integration/__database__/suppliers.rash
|
736
1039
|
- spec/integration/__database__/suppliers_csv.csv
|
1040
|
+
- spec/integration/test_alf.rbc
|
1041
|
+
- spec/integration/test_command.rbc
|
1042
|
+
- spec/integration/test_examples.rbc
|
737
1043
|
- spec/integration/test_alf.rb
|
1044
|
+
- spec/unit/test_relation.rbc
|
738
1045
|
- spec/unit/test_operator.rb
|
739
1046
|
- spec/unit/test_relation.rb
|
1047
|
+
- spec/unit/relation/test_to_a.rbc
|
740
1048
|
- spec/unit/relation/test_relops.rb
|
741
1049
|
- spec/unit/relation/test_inspect.rb
|
1050
|
+
- spec/unit/relation/test_relops.rbc
|
1051
|
+
- spec/unit/relation/test_inspect.rbc
|
742
1052
|
- spec/unit/relation/test_coerce.rb
|
743
1053
|
- spec/unit/relation/test_to_a.rb
|
1054
|
+
- spec/unit/relation/test_coerce.rbc
|
1055
|
+
- spec/unit/command/doc_manager/test_call.rbc
|
744
1056
|
- spec/unit/command/doc_manager/dynamic.md
|
745
1057
|
- spec/unit/command/doc_manager/example_1.txt
|
746
1058
|
- spec/unit/command/doc_manager/example.md
|
747
1059
|
- spec/unit/command/doc_manager/static.md
|
748
1060
|
- spec/unit/command/doc_manager/test_call.rb
|
1061
|
+
- spec/unit/reader/test_rash.rbc
|
749
1062
|
- spec/unit/reader/input.rb
|
750
1063
|
- spec/unit/reader/test_rash.rb
|
1064
|
+
- spec/unit/reader/test_initialize.rbc
|
751
1065
|
- spec/unit/reader/test_initialize.rb
|
752
1066
|
- spec/unit/reader/test_alf_file.rb
|
1067
|
+
- spec/unit/reader/test_alf_file.rbc
|
753
1068
|
- spec/unit/test_lispy.rb
|
754
1069
|
- spec/unit/test_aggregator.rb
|
755
1070
|
- spec/unit/sequel/test_environment.rb
|
756
1071
|
- spec/unit/sequel/alf.db
|
1072
|
+
- spec/unit/sequel/test_environment.rbc
|
1073
|
+
- spec/unit/test_aggregator.rbc
|
1074
|
+
- spec/unit/test_lispy.rbc
|
757
1075
|
- spec/unit/environment/examples/suppliers.rash
|
758
1076
|
- spec/unit/environment/test_explicit.rb
|
1077
|
+
- spec/unit/environment/test_explicit.rbc
|
759
1078
|
- spec/unit/environment/test_folder.rb
|
1079
|
+
- spec/unit/environment/test_folder.rbc
|
1080
|
+
- spec/unit/types/test_ordering.rbc
|
760
1081
|
- spec/unit/types/test_ordering.rb
|
761
1082
|
- spec/unit/types/test_tuple_computation.rb
|
1083
|
+
- spec/unit/types/test_heading.rbc
|
1084
|
+
- spec/unit/types/test_tuple_computation.rbc
|
1085
|
+
- spec/unit/types/test_attr_list.rbc
|
1086
|
+
- spec/unit/types/heading/test_union.rbc
|
1087
|
+
- spec/unit/types/heading/test_union.rb
|
762
1088
|
- spec/unit/types/test_tuple_expression.rb
|
1089
|
+
- spec/unit/types/test_tuple_predicate.rbc
|
1090
|
+
- spec/unit/types/test_tuple_expression.rbc
|
1091
|
+
- spec/unit/types/test_summarization.rbc
|
763
1092
|
- spec/unit/types/test_renaming.rb
|
764
1093
|
- spec/unit/types/test_summarization.rb
|
765
1094
|
- spec/unit/types/test_heading.rb
|
766
1095
|
- spec/unit/types/test_attr_list.rb
|
767
1096
|
- spec/unit/types/test_attr_name.rb
|
768
1097
|
- spec/unit/types/test_tuple_predicate.rb
|
1098
|
+
- spec/unit/types/test_renaming.rbc
|
1099
|
+
- spec/unit/types/test_attr_name.rbc
|
769
1100
|
- spec/unit/tools/test_coalesce.rb
|
1101
|
+
- spec/unit/tools/test_varargs.rbc
|
770
1102
|
- spec/unit/tools/test_varargs.rb
|
771
1103
|
- spec/unit/tools/test_to_ruby_literal.rb
|
1104
|
+
- spec/unit/tools/test_tuple_handle.rbc
|
1105
|
+
- spec/unit/tools/test_to_lispy.rbc
|
772
1106
|
- spec/unit/tools/test_tools.rb
|
773
1107
|
- spec/unit/tools/test_coerce.rb
|
1108
|
+
- spec/unit/tools/test_tools.rbc
|
1109
|
+
- spec/unit/tools/test_to_ruby_literal.rbc
|
774
1110
|
- spec/unit/tools/test_to_lispy.rb
|
1111
|
+
- spec/unit/tools/test_tuple_heading.rbc
|
1112
|
+
- spec/unit/tools/test_coalesce.rbc
|
1113
|
+
- spec/unit/tools/test_coerce.rbc
|
1114
|
+
- spec/unit/tools/test_tuple_heading.rb
|
775
1115
|
- spec/unit/tools/test_tuple_handle.rb
|
776
1116
|
- spec/unit/text/test_cell.rb
|
777
1117
|
- spec/unit/text/test_table.rb
|
1118
|
+
- spec/unit/text/test_cell.rbc
|
1119
|
+
- spec/unit/text/test_row.rbc
|
1120
|
+
- spec/unit/text/test_table.rbc
|
778
1121
|
- spec/unit/text/test_row.rb
|
1122
|
+
- spec/unit/test_renderer.rbc
|
779
1123
|
- spec/unit/test_environment.rb
|
1124
|
+
- spec/unit/test_operator.rbc
|
780
1125
|
- spec/unit/csv/input.csv
|
1126
|
+
- spec/unit/csv/test_renderer.rbc
|
1127
|
+
- spec/unit/csv/test_reader.rbc
|
781
1128
|
- spec/unit/csv/test_renderer.rb
|
782
1129
|
- spec/unit/csv/test_reader.rb
|
1130
|
+
- spec/unit/test_reader.rbc
|
1131
|
+
- spec/unit/renderer/test_initialize.rbc
|
783
1132
|
- spec/unit/renderer/test_initialize.rb
|
1133
|
+
- spec/unit/lispy/test_run.rbc
|
1134
|
+
- spec/unit/lispy/test_relation.rbc
|
784
1135
|
- spec/unit/lispy/test_relation.rb
|
1136
|
+
- spec/unit/lispy/test_tuple.rbc
|
785
1137
|
- spec/unit/lispy/test_tuple.rb
|
786
1138
|
- spec/unit/lispy/test_run.rb
|
787
1139
|
- spec/unit/assumptions/test_scoping.rb
|
1140
|
+
- spec/unit/assumptions/test_instance_eval.rbc
|
788
1141
|
- spec/unit/assumptions/test_set.rb
|
1142
|
+
- spec/unit/assumptions/test_file.rbc
|
789
1143
|
- spec/unit/assumptions/test_instance_eval.rb
|
790
1144
|
- spec/unit/assumptions/test_file.rb
|
1145
|
+
- spec/unit/assumptions/test_set.rbc
|
1146
|
+
- spec/unit/assumptions/test_scoping.rbc
|
791
1147
|
- spec/unit/test_renderer.rb
|
792
1148
|
- spec/unit/logs/apache_combined.log
|
793
1149
|
- spec/unit/logs/postgresql.log
|
1150
|
+
- spec/unit/logs/test_reader.rbc
|
794
1151
|
- spec/unit/logs/test_reader.rb
|
1152
|
+
- spec/unit/test_environment.rbc
|
795
1153
|
- spec/unit/operator/test_non_relational.rb
|
1154
|
+
- spec/unit/operator/relational/test_quota.rbc
|
796
1155
|
- spec/unit/operator/relational/test_join.rb
|
797
1156
|
- spec/unit/operator/relational/not_matching/test_hash_based.rb
|
1157
|
+
- spec/unit/operator/relational/not_matching/test_hash_based.rbc
|
1158
|
+
- spec/unit/operator/relational/test_restrict.rbc
|
798
1159
|
- spec/unit/operator/relational/test_extend.rb
|
1160
|
+
- spec/unit/operator/relational/test_minus.rbc
|
799
1161
|
- spec/unit/operator/relational/test_intersect.rb
|
1162
|
+
- spec/unit/operator/relational/test_rank.rbc
|
800
1163
|
- spec/unit/operator/relational/test_rank.rb
|
801
1164
|
- spec/unit/operator/relational/test_summarize.rb
|
802
1165
|
- spec/unit/operator/relational/test_rename.rb
|
803
1166
|
- spec/unit/operator/relational/join/test_hash_based.rb
|
1167
|
+
- spec/unit/operator/relational/join/test_hash_based.rbc
|
1168
|
+
- spec/unit/operator/relational/test_intersect.rbc
|
1169
|
+
- spec/unit/operator/relational/test_unwrap.rbc
|
804
1170
|
- spec/unit/operator/relational/test_wrap.rb
|
1171
|
+
- spec/unit/operator/relational/test_wrap.rbc
|
805
1172
|
- spec/unit/operator/relational/test_restrict.rb
|
806
1173
|
- spec/unit/operator/relational/test_minus.rb
|
807
1174
|
- spec/unit/operator/relational/test_quota.rb
|
1175
|
+
- spec/unit/operator/relational/test_ungroup.rbc
|
1176
|
+
- spec/unit/operator/relational/test_union.rbc
|
1177
|
+
- spec/unit/operator/relational/test_group.rbc
|
1178
|
+
- spec/unit/operator/relational/test_project.rbc
|
808
1179
|
- spec/unit/operator/relational/test_unwrap.rb
|
809
1180
|
- spec/unit/operator/relational/matching/test_hash_based.rb
|
1181
|
+
- spec/unit/operator/relational/matching/test_hash_based.rbc
|
810
1182
|
- spec/unit/operator/relational/test_group.rb
|
1183
|
+
- spec/unit/operator/relational/test_join.rbc
|
1184
|
+
- spec/unit/operator/relational/test_extend.rbc
|
1185
|
+
- spec/unit/operator/relational/test_rename.rbc
|
811
1186
|
- spec/unit/operator/relational/test_union.rb
|
812
1187
|
- spec/unit/operator/relational/test_project.rb
|
1188
|
+
- spec/unit/operator/relational/test_summarize.rbc
|
813
1189
|
- spec/unit/operator/relational/summarize/test_hash_based.rb
|
1190
|
+
- spec/unit/operator/relational/summarize/test_hash_based.rbc
|
814
1191
|
- spec/unit/operator/relational/summarize/test_sort_based.rb
|
1192
|
+
- spec/unit/operator/relational/summarize/test_sort_based.rbc
|
815
1193
|
- spec/unit/operator/relational/test_ungroup.rb
|
816
1194
|
- spec/unit/operator/non_relational/test_defaults.rb
|
1195
|
+
- spec/unit/operator/non_relational/compact/test_buffer_based.rbc
|
817
1196
|
- spec/unit/operator/non_relational/compact/test_sort_based.rb
|
818
1197
|
- spec/unit/operator/non_relational/compact/test_buffer_based.rb
|
1198
|
+
- spec/unit/operator/non_relational/compact/test_sort_based.rbc
|
819
1199
|
- spec/unit/operator/non_relational/test_sort.rb
|
1200
|
+
- spec/unit/operator/non_relational/test_clip.rbc
|
820
1201
|
- spec/unit/operator/non_relational/test_generator.rb
|
821
1202
|
- spec/unit/operator/non_relational/test_coerce.rb
|
1203
|
+
- spec/unit/operator/non_relational/test_defaults.rbc
|
822
1204
|
- spec/unit/operator/non_relational/test_clip.rb
|
1205
|
+
- spec/unit/operator/non_relational/test_sort.rbc
|
823
1206
|
- spec/unit/operator/non_relational/test_autonum.rb
|
1207
|
+
- spec/unit/operator/non_relational/test_coerce.rbc
|
1208
|
+
- spec/unit/operator/non_relational/test_compact.rbc
|
824
1209
|
- spec/unit/operator/non_relational/test_compact.rb
|
1210
|
+
- spec/unit/operator/non_relational/test_generator.rbc
|
1211
|
+
- spec/unit/operator/non_relational/test_autonum.rbc
|
825
1212
|
- spec/unit/operator/signature/test_install.rb
|
826
1213
|
- spec/unit/operator/signature/test_parse_argv.rb
|
827
1214
|
- spec/unit/operator/signature/test_parse_args.rb
|
1215
|
+
- spec/unit/operator/signature/test_collect_on.rbc
|
1216
|
+
- spec/unit/operator/signature/test_option_parser.rbc
|
1217
|
+
- spec/unit/operator/signature/test_to_lispy.rbc
|
1218
|
+
- spec/unit/operator/signature/test_initialize.rbc
|
828
1219
|
- spec/unit/operator/signature/test_initialize.rb
|
1220
|
+
- spec/unit/operator/signature/test_install.rbc
|
829
1221
|
- spec/unit/operator/signature/test_option_parser.rb
|
830
1222
|
- spec/unit/operator/signature/test_to_lispy.rb
|
1223
|
+
- spec/unit/operator/signature/test_to_shell.rbc
|
1224
|
+
- spec/unit/operator/signature/test_parse_args.rbc
|
1225
|
+
- spec/unit/operator/signature/test_parse_argv.rbc
|
831
1226
|
- spec/unit/operator/signature/test_to_shell.rb
|
832
1227
|
- spec/unit/operator/signature/test_collect_on.rb
|
833
1228
|
- spec/unit/operator/test_relational.rb
|
1229
|
+
- spec/unit/operator/test_relational.rbc
|
1230
|
+
- spec/unit/operator/test_non_relational.rbc
|
834
1231
|
- spec/unit/test_reader.rb
|
835
1232
|
- spec/regression/relation/test_relation_allbut_all.rb
|
1233
|
+
- spec/regression/relation/test_relation_with_date.rbc
|
836
1234
|
- spec/regression/relation/test_relation_with_date.rb
|
1235
|
+
- spec/regression/relation/test_relation_allbut_all.rbc
|
837
1236
|
- spec/regression/restrict/test_restrict_with_keywords.rb
|
1237
|
+
- spec/regression/restrict/test_restrict_with_keywords.rbc
|
838
1238
|
- spec/regression/alf_file/test___FILE__.rb
|
1239
|
+
- spec/regression/alf_file/test___FILE__.rbc
|
839
1240
|
- spec/regression/alf_file/__FILE__.alf
|
840
1241
|
- spec/regression/alf_file/suppliers.rash
|
1242
|
+
- spec/regression/heading/test_heading_with_date.rbc
|
841
1243
|
- spec/regression/heading/test_heading_with_date.rb
|
1244
|
+
- spec/regression/lispy/test_compile.rbc
|
842
1245
|
- spec/regression/lispy/test_compile.rb
|
843
1246
|
- spec/regression/logs/apache_combined.log
|
1247
|
+
- spec/regression/logs/test_path_attribute.rbc
|
844
1248
|
- spec/regression/logs/test_path_attribute.rb
|