alf 0.11.1 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +16 -0
- data/README.md +3 -0
- data/alf.noespec +1 -1
- data/examples/alf-mustache.rb +28 -0
- data/lib/alf.rb +1 -0
- data/lib/alf/ext.rb +4 -0
- data/lib/alf/ext/relation.rb +4 -0
- data/lib/alf/relation/class_methods.rb +4 -13
- data/lib/alf/relation/instance_methods.rb +5 -0
- data/lib/alf/tools.rb +1 -0
- data/lib/alf/tools/to_relation.rb +54 -0
- data/lib/alf/version.rb +2 -2
- data/spec/integration/ext/test_relation.rb +16 -0
- data/spec/unit/alf-core/tools/test_to_relation.rb +38 -0
- metadata +732 -724
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,19 @@
|
|
1
|
+
# 0.12.0 / FIX ME
|
2
|
+
|
3
|
+
* Add a Relation() toplevel method that mimics Array(), Integer(), and so on.
|
4
|
+
That method uses Tools::ToRelation which is a set of Myrrha coercion rules.
|
5
|
+
The Relation() method helps building relation "literals" (say) for common
|
6
|
+
cases, such as the following:
|
7
|
+
|
8
|
+
Relation(:name => "Alf")
|
9
|
+
# => (Relation (Tuple :name => "Alf"))
|
10
|
+
|
11
|
+
Relation([{:name => "Alf"}, {:name => "Myrrha"}])
|
12
|
+
# => (Relation (Tuple :name => "Alf"), (Tuple :name => "Myrrha"))
|
13
|
+
|
14
|
+
Relation(:name => ["Alf", "Myrrha"])
|
15
|
+
# => (Relation (Tuple :name => "Alf"), (Tuple :name => "Myrrha"))
|
16
|
+
|
1
17
|
# 0.11.1 / 2012-01-25
|
2
18
|
|
3
19
|
## Bugfixes
|
data/README.md
CHANGED
@@ -1,5 +1,8 @@
|
|
1
1
|
# Alf - Relational Algebra at your fingertips (version 0.10.0)
|
2
2
|
|
3
|
+
[![Build Status](https://secure.travis-ci.org/blambeau/alf.png)](http://travis-ci.org/blambeau/alf)
|
4
|
+
[![Dependency Status](https://gemnasium.com/blambeau/alf.png)](https://gemnasium.com/blambeau/alf)
|
5
|
+
|
3
6
|
## Description
|
4
7
|
|
5
8
|
### What & Why
|
data/alf.noespec
CHANGED
@@ -0,0 +1,28 @@
|
|
1
|
+
require 'alf'
|
2
|
+
require 'mustache'
|
3
|
+
|
4
|
+
rel = Alf.lispy.evaluate{
|
5
|
+
(summarize \
|
6
|
+
(join :suppliers, :supplies),
|
7
|
+
[:city],
|
8
|
+
total: sum{ qty },
|
9
|
+
parts: collect{ {:pid => pid, :qty => qty} })
|
10
|
+
}
|
11
|
+
|
12
|
+
puts rel.to_s
|
13
|
+
|
14
|
+
tpl = <<-EOF
|
15
|
+
{{#tuples}}
|
16
|
+
<p>In {{city}}, products have been sold for {{total}} euros.</p>
|
17
|
+
<table>
|
18
|
+
{{#parts}}
|
19
|
+
<tr>
|
20
|
+
<td>{{pid}}</td>
|
21
|
+
<td>{{qty}}</td>
|
22
|
+
</tr>
|
23
|
+
{{/parts}}
|
24
|
+
</table>
|
25
|
+
{{/tuples}}
|
26
|
+
EOF
|
27
|
+
|
28
|
+
puts Mustache.render(tpl, :tuples => rel.to_a)
|
data/lib/alf.rb
CHANGED
data/lib/alf/ext.rb
ADDED
@@ -12,18 +12,9 @@ module Alf
|
|
12
12
|
# @raise [ArgumentError] when `val` is not recognized
|
13
13
|
#
|
14
14
|
def coerce(val)
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
when Set
|
19
|
-
Relation.new(val)
|
20
|
-
when Array
|
21
|
-
Relation.new val.to_set
|
22
|
-
when Iterator
|
23
|
-
Relation.new val.to_set
|
24
|
-
else
|
25
|
-
raise ArgumentError, "Unable to coerce #{val} to a Relation"
|
26
|
-
end
|
15
|
+
Alf::Tools.to_relation(val)
|
16
|
+
rescue Myrrha::Error
|
17
|
+
raise ArgumentError, "Unable to coerce `#{val}` to a Relation"
|
27
18
|
end
|
28
19
|
|
29
20
|
# (see Relation.coerce)
|
@@ -34,4 +25,4 @@ module Alf
|
|
34
25
|
end # module ClassMethods
|
35
26
|
extend(ClassMethods)
|
36
27
|
end # class Relation
|
37
|
-
end # module Alf
|
28
|
+
end # module Alf
|
data/lib/alf/tools.rb
CHANGED
@@ -0,0 +1,54 @@
|
|
1
|
+
module Alf
|
2
|
+
class Relation; end
|
3
|
+
module Tools
|
4
|
+
|
5
|
+
# Converts `value` to a Relation.
|
6
|
+
#
|
7
|
+
# Example:
|
8
|
+
#
|
9
|
+
# Tools.to_relation(:name => "Alf")
|
10
|
+
# # => (Relation {:name => "Alf"})
|
11
|
+
#
|
12
|
+
# @param [Object] expr any ruby object to convert to a Relation
|
13
|
+
# @return [Relation] a relation for `expr`
|
14
|
+
def to_relation(expr)
|
15
|
+
ToRelation.apply(expr)
|
16
|
+
end
|
17
|
+
|
18
|
+
# Myrrha rules for converting objects to relations
|
19
|
+
ToRelation = Myrrha::coercions do |r|
|
20
|
+
r.main_target_domain = Relation
|
21
|
+
|
22
|
+
# Delegate to #to_relation if it exists
|
23
|
+
rel_able = lambda{|v,rd| v.respond_to?(:to_relation)}
|
24
|
+
r.upon(rel_able) do |v,_|
|
25
|
+
v.to_relation
|
26
|
+
end
|
27
|
+
|
28
|
+
# to_relation(:name => ["...", "..."])
|
29
|
+
list_of_values = lambda{|v,_|
|
30
|
+
v.is_a?(Hash) and v.size == 1 and v.values.first.is_a?(Array)
|
31
|
+
}
|
32
|
+
r.upon(list_of_values) do |v,_|
|
33
|
+
key, values = v.to_a.first
|
34
|
+
tuples = values.map{|value| {key => value}}.to_set
|
35
|
+
Relation.new(tuples)
|
36
|
+
end
|
37
|
+
|
38
|
+
# Tuple to singleton Relation
|
39
|
+
r.upon(Hash) do |v,_|
|
40
|
+
Relation.new(Set.new << v)
|
41
|
+
end
|
42
|
+
|
43
|
+
# From enumerable of tuples to Relation
|
44
|
+
enum_of_tuples = lambda{|v,_|
|
45
|
+
v.is_a?(Enumerable) and v.all?{|t| t.is_a?(Hash)}
|
46
|
+
}
|
47
|
+
r.upon(enum_of_tuples) do |v,_|
|
48
|
+
Relation.new(v.to_set)
|
49
|
+
end
|
50
|
+
|
51
|
+
end # ToRelation
|
52
|
+
|
53
|
+
end # module Tools
|
54
|
+
end # module Alf
|
data/lib/alf/version.rb
CHANGED
@@ -0,0 +1,16 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
describe "Relation()" do
|
3
|
+
|
4
|
+
it 'returns a Relation' do
|
5
|
+
Relation(:name => "Alf").should be_a(Alf::Relation)
|
6
|
+
end
|
7
|
+
|
8
|
+
it 'helps building a singleton' do
|
9
|
+
Relation(:name => "Alf").cardinality.should eq(1)
|
10
|
+
end
|
11
|
+
|
12
|
+
it 'helps building a list if values' do
|
13
|
+
Relation(:name => ["Alf", "Myrrha"]).cardinality.should eq(2)
|
14
|
+
end
|
15
|
+
|
16
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
module Alf
|
3
|
+
describe "Tools#to_relation" do
|
4
|
+
|
5
|
+
let(:expected){
|
6
|
+
Relation.new(Set.new << {:name => "Alf"})
|
7
|
+
}
|
8
|
+
|
9
|
+
def to_rel(x)
|
10
|
+
Tools.to_relation(x)
|
11
|
+
end
|
12
|
+
|
13
|
+
it 'delegates to to_relation if it exists' do
|
14
|
+
x = Struct.new(:to_relation).new("Hello")
|
15
|
+
to_rel(x).should eq("Hello")
|
16
|
+
end
|
17
|
+
|
18
|
+
it 'works on Relation' do
|
19
|
+
to_rel(expected).should eq(expected)
|
20
|
+
end
|
21
|
+
|
22
|
+
it 'converts a single Hash as a singleton relation' do
|
23
|
+
tuple = {:name => "Alf"}
|
24
|
+
to_rel(tuple).should eq(expected)
|
25
|
+
end
|
26
|
+
|
27
|
+
it 'converts a list of names values to a Relation' do
|
28
|
+
tuple = {:name => ["Alf", "Myrrha"]}
|
29
|
+
expected = Relation.new(Set.new << {:name => "Alf"} << {:name => "Myrrha"})
|
30
|
+
to_rel(tuple).should eq(expected)
|
31
|
+
end
|
32
|
+
|
33
|
+
it 'converts an array of tuples' do
|
34
|
+
to_rel(expected.to_a).should eq(expected)
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
38
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: alf
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,11 +9,11 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-
|
12
|
+
date: 2012-02-09 00:00:00.000000000Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
16
|
-
requirement: &
|
16
|
+
requirement: &82665790 !ruby/object:Gem::Requirement
|
17
17
|
none: false
|
18
18
|
requirements:
|
19
19
|
- - ~>
|
@@ -21,10 +21,10 @@ dependencies:
|
|
21
21
|
version: 0.9.2
|
22
22
|
type: :development
|
23
23
|
prerelease: false
|
24
|
-
version_requirements: *
|
24
|
+
version_requirements: *82665790
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
26
|
name: rspec
|
27
|
-
requirement: &
|
27
|
+
requirement: &82665520 !ruby/object:Gem::Requirement
|
28
28
|
none: false
|
29
29
|
requirements:
|
30
30
|
- - ~>
|
@@ -32,10 +32,10 @@ dependencies:
|
|
32
32
|
version: 2.8.0
|
33
33
|
type: :development
|
34
34
|
prerelease: false
|
35
|
-
version_requirements: *
|
35
|
+
version_requirements: *82665520
|
36
36
|
- !ruby/object:Gem::Dependency
|
37
37
|
name: wlang
|
38
|
-
requirement: &
|
38
|
+
requirement: &82665250 !ruby/object:Gem::Requirement
|
39
39
|
none: false
|
40
40
|
requirements:
|
41
41
|
- - ~>
|
@@ -43,10 +43,10 @@ dependencies:
|
|
43
43
|
version: 0.10.2
|
44
44
|
type: :development
|
45
45
|
prerelease: false
|
46
|
-
version_requirements: *
|
46
|
+
version_requirements: *82665250
|
47
47
|
- !ruby/object:Gem::Dependency
|
48
48
|
name: yard
|
49
|
-
requirement: &
|
49
|
+
requirement: &82664980 !ruby/object:Gem::Requirement
|
50
50
|
none: false
|
51
51
|
requirements:
|
52
52
|
- - ~>
|
@@ -54,10 +54,10 @@ dependencies:
|
|
54
54
|
version: 0.7.2
|
55
55
|
type: :development
|
56
56
|
prerelease: false
|
57
|
-
version_requirements: *
|
57
|
+
version_requirements: *82664980
|
58
58
|
- !ruby/object:Gem::Dependency
|
59
59
|
name: bluecloth
|
60
|
-
requirement: &
|
60
|
+
requirement: &82664740 !ruby/object:Gem::Requirement
|
61
61
|
none: false
|
62
62
|
requirements:
|
63
63
|
- - ~>
|
@@ -65,10 +65,10 @@ dependencies:
|
|
65
65
|
version: 2.2.0
|
66
66
|
type: :development
|
67
67
|
prerelease: false
|
68
|
-
version_requirements: *
|
68
|
+
version_requirements: *82664740
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: redcarpet
|
71
|
-
requirement: &
|
71
|
+
requirement: &82664440 !ruby/object:Gem::Requirement
|
72
72
|
none: false
|
73
73
|
requirements:
|
74
74
|
- - ~>
|
@@ -76,10 +76,10 @@ dependencies:
|
|
76
76
|
version: 2.1.0
|
77
77
|
type: :development
|
78
78
|
prerelease: false
|
79
|
-
version_requirements: *
|
79
|
+
version_requirements: *82664440
|
80
80
|
- !ruby/object:Gem::Dependency
|
81
81
|
name: fastercsv
|
82
|
-
requirement: &
|
82
|
+
requirement: &82664120 !ruby/object:Gem::Requirement
|
83
83
|
none: false
|
84
84
|
requirements:
|
85
85
|
- - ~>
|
@@ -87,10 +87,10 @@ dependencies:
|
|
87
87
|
version: 1.5.4
|
88
88
|
type: :development
|
89
89
|
prerelease: false
|
90
|
-
version_requirements: *
|
90
|
+
version_requirements: *82664120
|
91
91
|
- !ruby/object:Gem::Dependency
|
92
92
|
name: request-log-analyzer
|
93
|
-
requirement: &
|
93
|
+
requirement: &82663830 !ruby/object:Gem::Requirement
|
94
94
|
none: false
|
95
95
|
requirements:
|
96
96
|
- - ~>
|
@@ -98,10 +98,10 @@ dependencies:
|
|
98
98
|
version: 1.11.0
|
99
99
|
type: :development
|
100
100
|
prerelease: false
|
101
|
-
version_requirements: *
|
101
|
+
version_requirements: *82663830
|
102
102
|
- !ruby/object:Gem::Dependency
|
103
103
|
name: sequel
|
104
|
-
requirement: &
|
104
|
+
requirement: &82663530 !ruby/object:Gem::Requirement
|
105
105
|
none: false
|
106
106
|
requirements:
|
107
107
|
- - ~>
|
@@ -109,10 +109,10 @@ dependencies:
|
|
109
109
|
version: '3.30'
|
110
110
|
type: :development
|
111
111
|
prerelease: false
|
112
|
-
version_requirements: *
|
112
|
+
version_requirements: *82663530
|
113
113
|
- !ruby/object:Gem::Dependency
|
114
114
|
name: sqlite3
|
115
|
-
requirement: &
|
115
|
+
requirement: &82663290 !ruby/object:Gem::Requirement
|
116
116
|
none: false
|
117
117
|
requirements:
|
118
118
|
- - ~>
|
@@ -120,10 +120,10 @@ dependencies:
|
|
120
120
|
version: 1.3.0
|
121
121
|
type: :development
|
122
122
|
prerelease: false
|
123
|
-
version_requirements: *
|
123
|
+
version_requirements: *82663290
|
124
124
|
- !ruby/object:Gem::Dependency
|
125
125
|
name: highline
|
126
|
-
requirement: &
|
126
|
+
requirement: &82663030 !ruby/object:Gem::Requirement
|
127
127
|
none: false
|
128
128
|
requirements:
|
129
129
|
- - ~>
|
@@ -131,10 +131,10 @@ dependencies:
|
|
131
131
|
version: 1.6.2
|
132
132
|
type: :development
|
133
133
|
prerelease: false
|
134
|
-
version_requirements: *
|
134
|
+
version_requirements: *82663030
|
135
135
|
- !ruby/object:Gem::Dependency
|
136
136
|
name: quickl
|
137
|
-
requirement: &
|
137
|
+
requirement: &82662690 !ruby/object:Gem::Requirement
|
138
138
|
none: false
|
139
139
|
requirements:
|
140
140
|
- - ~>
|
@@ -142,10 +142,10 @@ dependencies:
|
|
142
142
|
version: 0.4.2
|
143
143
|
type: :runtime
|
144
144
|
prerelease: false
|
145
|
-
version_requirements: *
|
145
|
+
version_requirements: *82662690
|
146
146
|
- !ruby/object:Gem::Dependency
|
147
147
|
name: myrrha
|
148
|
-
requirement: &
|
148
|
+
requirement: &82662370 !ruby/object:Gem::Requirement
|
149
149
|
none: false
|
150
150
|
requirements:
|
151
151
|
- - ~>
|
@@ -153,10 +153,10 @@ dependencies:
|
|
153
153
|
version: 1.2.1
|
154
154
|
type: :runtime
|
155
155
|
prerelease: false
|
156
|
-
version_requirements: *
|
156
|
+
version_requirements: *82662370
|
157
157
|
- !ruby/object:Gem::Dependency
|
158
158
|
name: backports
|
159
|
-
requirement: &
|
159
|
+
requirement: &82662090 !ruby/object:Gem::Requirement
|
160
160
|
none: false
|
161
161
|
requirements:
|
162
162
|
- - ~>
|
@@ -164,7 +164,7 @@ dependencies:
|
|
164
164
|
version: 2.3.0
|
165
165
|
type: :runtime
|
166
166
|
prerelease: false
|
167
|
-
version_requirements: *
|
167
|
+
version_requirements: *82662090
|
168
168
|
description: ! "Alf brings the relational algebra both in Shell and in Ruby. In Shell,
|
169
169
|
because \nmanipulating any relation-like data source should be as straightforward
|
170
170
|
as a \none-liner. In Ruby, because I've never understood why programming languages
|
@@ -181,531 +181,537 @@ extra_rdoc_files:
|
|
181
181
|
- LICENCE.md
|
182
182
|
files:
|
183
183
|
- bin/alf
|
184
|
-
- doc/commands/exec.md
|
185
184
|
- doc/commands/help.md
|
186
|
-
- doc/commands/main.md
|
187
185
|
- doc/commands/show.md
|
188
|
-
- doc/
|
189
|
-
- doc/
|
190
|
-
- doc/operators/non_relational/coerce.md
|
191
|
-
- doc/operators/non_relational/compact.md
|
192
|
-
- doc/operators/non_relational/defaults.md
|
193
|
-
- doc/operators/non_relational/generator.md
|
194
|
-
- doc/operators/non_relational/sort.md
|
195
|
-
- doc/operators/relational/extend.md
|
196
|
-
- doc/operators/relational/group.md
|
197
|
-
- doc/operators/relational/heading.md
|
186
|
+
- doc/commands/main.md
|
187
|
+
- doc/commands/exec.md
|
198
188
|
- doc/operators/relational/intersect.md
|
189
|
+
- doc/operators/relational/rank.md
|
190
|
+
- doc/operators/relational/quota.md
|
199
191
|
- doc/operators/relational/join.md
|
200
|
-
- doc/operators/relational/
|
201
|
-
- doc/operators/relational/
|
202
|
-
- doc/operators/relational/not-matching.md
|
192
|
+
- doc/operators/relational/extend.md
|
193
|
+
- doc/operators/relational/union.md
|
203
194
|
- doc/operators/relational/project.md
|
204
|
-
- doc/operators/relational/
|
205
|
-
- doc/operators/relational/rank.md
|
206
|
-
- doc/operators/relational/rename.md
|
207
|
-
- doc/operators/relational/restrict.md
|
195
|
+
- doc/operators/relational/wrap.md
|
208
196
|
- doc/operators/relational/summarize.md
|
209
|
-
- doc/operators/relational/ungroup.md
|
210
|
-
- doc/operators/relational/union.md
|
211
197
|
- doc/operators/relational/unwrap.md
|
212
|
-
- doc/operators/relational/
|
213
|
-
-
|
214
|
-
-
|
215
|
-
-
|
216
|
-
-
|
217
|
-
-
|
218
|
-
-
|
219
|
-
-
|
198
|
+
- doc/operators/relational/group.md
|
199
|
+
- doc/operators/relational/ungroup.md
|
200
|
+
- doc/operators/relational/matching.md
|
201
|
+
- doc/operators/relational/heading.md
|
202
|
+
- doc/operators/relational/rename.md
|
203
|
+
- doc/operators/relational/restrict.md
|
204
|
+
- doc/operators/relational/not-matching.md
|
205
|
+
- doc/operators/relational/minus.md
|
206
|
+
- doc/operators/non_relational/generator.md
|
207
|
+
- doc/operators/non_relational/clip.md
|
208
|
+
- doc/operators/non_relational/defaults.md
|
209
|
+
- doc/operators/non_relational/autonum.md
|
210
|
+
- doc/operators/non_relational/compact.md
|
211
|
+
- doc/operators/non_relational/coerce.md
|
212
|
+
- doc/operators/non_relational/sort.md
|
213
|
+
- examples/operators/project.alf
|
214
|
+
- examples/operators/ungroup.alf
|
215
|
+
- examples/operators/supplies.rash
|
216
|
+
- examples/operators/schema.yaml
|
217
|
+
- examples/operators/nulls.rash
|
220
218
|
- examples/operators/autonum.alf
|
221
|
-
- examples/operators/cities.rash
|
222
|
-
- examples/operators/clip.alf
|
223
|
-
- examples/operators/compact.alf
|
224
|
-
- examples/operators/database.alf
|
225
|
-
- examples/operators/defaults.alf
|
226
|
-
- examples/operators/extend.alf
|
227
|
-
- examples/operators/group.alf
|
228
|
-
- examples/operators/intersect.alf
|
229
|
-
- examples/operators/join.alf
|
230
219
|
- examples/operators/matching.alf
|
231
|
-
- examples/operators/
|
220
|
+
- examples/operators/sort.alf
|
221
|
+
- examples/operators/quota.alf
|
222
|
+
- examples/operators/rename.alf
|
223
|
+
- examples/operators/intersect.alf
|
232
224
|
- examples/operators/not_matching.alf
|
233
|
-
- examples/operators/
|
225
|
+
- examples/operators/group.alf
|
234
226
|
- examples/operators/parts.rash
|
235
|
-
- examples/operators/
|
227
|
+
- examples/operators/cities.rash
|
228
|
+
- examples/operators/defaults.alf
|
229
|
+
- examples/operators/unwrap.alf
|
230
|
+
- examples/operators/join.alf
|
231
|
+
- examples/operators/union.alf
|
236
232
|
- examples/operators/pseudo-with.alf
|
237
|
-
- examples/operators/
|
233
|
+
- examples/operators/wrap.alf
|
234
|
+
- examples/operators/database.alf
|
238
235
|
- examples/operators/rank.alf
|
239
|
-
- examples/operators/
|
240
|
-
- examples/operators/
|
241
|
-
- examples/operators/schema.yaml
|
242
|
-
- examples/operators/sort.alf
|
243
|
-
- examples/operators/summarize.alf
|
236
|
+
- examples/operators/extend.alf
|
237
|
+
- examples/operators/compact.alf
|
244
238
|
- examples/operators/suppliers.rash
|
245
|
-
- examples/operators/
|
246
|
-
- examples/operators/
|
247
|
-
- examples/operators/
|
248
|
-
- examples/operators/
|
249
|
-
- examples/
|
239
|
+
- examples/operators/summarize.alf
|
240
|
+
- examples/operators/minus.alf
|
241
|
+
- examples/operators/clip.alf
|
242
|
+
- examples/operators/restrict.alf
|
243
|
+
- examples/alf-mustache.rb
|
244
|
+
- examples/csv/suppliers.csv
|
245
|
+
- examples/logs/not_found.alf
|
246
|
+
- examples/logs/hits.alf
|
247
|
+
- examples/logs/robots.alf
|
248
|
+
- examples/logs/access.log
|
249
|
+
- examples/logs/combined.alf
|
250
|
+
- examples/logs/robots-cheating.alf
|
251
|
+
- lib/alf-csv/alf/csv.rb
|
252
|
+
- lib/alf-csv/alf/csv/reader.rb
|
253
|
+
- lib/alf-csv/alf/csv/renderer.rb
|
254
|
+
- lib/alf-csv/alf/csv/commons.rb
|
255
|
+
- lib/alf-shell/alf/shell/command/help.rb
|
256
|
+
- lib/alf-shell/alf/shell/command/show.rb
|
257
|
+
- lib/alf-shell/alf/shell/command/main.rb
|
258
|
+
- lib/alf-shell/alf/shell/command/exec.rb
|
259
|
+
- lib/alf-shell/alf/shell/command/main/class_methods.rb
|
260
|
+
- lib/alf-shell/alf/shell/doc_manager.rb
|
261
|
+
- lib/alf-shell/alf/shell/operator.rb
|
262
|
+
- lib/alf-shell/alf/shell/command.rb
|
263
|
+
- lib/alf-shell/alf/shell.rb
|
264
|
+
- lib/alf-sequel/alf/sequel.rb
|
265
|
+
- lib/alf-sequel/alf/sequel/iterator.rb
|
266
|
+
- lib/alf-sequel/alf/sequel/environment.rb
|
267
|
+
- lib/alf-engine/alf/engine/materialize.rb
|
268
|
+
- lib/alf-engine/alf/engine/quota.rb
|
269
|
+
- lib/alf-engine/alf/engine/set_attr.rb
|
270
|
+
- lib/alf-engine/alf/engine/compact/uniq.rb
|
271
|
+
- lib/alf-engine/alf/engine/compact/set.rb
|
272
|
+
- lib/alf-engine/alf/engine/rename.rb
|
273
|
+
- lib/alf-engine/alf/engine/semi/hash.rb
|
274
|
+
- lib/alf-engine/alf/engine/join.rb
|
275
|
+
- lib/alf-engine/alf/engine/join/hash.rb
|
276
|
+
- lib/alf-engine/alf/engine/coerce.rb
|
277
|
+
- lib/alf-engine/alf/engine/wrap.rb
|
278
|
+
- lib/alf-engine/alf/engine/group.rb
|
279
|
+
- lib/alf-engine/alf/engine/defaults.rb
|
280
|
+
- lib/alf-engine/alf/engine/quota/cesure.rb
|
281
|
+
- lib/alf-engine/alf/engine/semi.rb
|
282
|
+
- lib/alf-engine/alf/engine/autonum.rb
|
283
|
+
- lib/alf-engine/alf/engine/concat.rb
|
284
|
+
- lib/alf-engine/alf/engine/group/hash.rb
|
285
|
+
- lib/alf-engine/alf/engine/summarize.rb
|
286
|
+
- lib/alf-engine/alf/engine/sort.rb
|
287
|
+
- lib/alf-engine/alf/engine/cog.rb
|
288
|
+
- lib/alf-engine/alf/engine/materialize/hash.rb
|
289
|
+
- lib/alf-engine/alf/engine/materialize/array.rb
|
290
|
+
- lib/alf-engine/alf/engine/aggregate.rb
|
291
|
+
- lib/alf-engine/alf/engine/rank.rb
|
292
|
+
- lib/alf-engine/alf/engine/ungroup.rb
|
293
|
+
- lib/alf-engine/alf/engine/generator.rb
|
294
|
+
- lib/alf-engine/alf/engine/clip.rb
|
295
|
+
- lib/alf-engine/alf/engine/unwrap.rb
|
296
|
+
- lib/alf-engine/alf/engine/cesure.rb
|
297
|
+
- lib/alf-engine/alf/engine/compact.rb
|
298
|
+
- lib/alf-engine/alf/engine/rank/cesure.rb
|
299
|
+
- lib/alf-engine/alf/engine/sort/in_memory.rb
|
300
|
+
- lib/alf-engine/alf/engine/filter.rb
|
301
|
+
- lib/alf-engine/alf/engine/summarize/hash.rb
|
302
|
+
- lib/alf-engine/alf/engine/summarize/cesure.rb
|
303
|
+
- lib/alf-engine/alf/engine.rb
|
304
|
+
- lib/alf.rb
|
305
|
+
- lib/alf/relation/class_methods.rb
|
306
|
+
- lib/alf/relation/instance_methods.rb
|
307
|
+
- lib/alf/reader/alf_file.rb
|
308
|
+
- lib/alf/reader/class_methods.rb
|
309
|
+
- lib/alf/reader/rash.rb
|
310
|
+
- lib/alf/reader/instance_methods.rb
|
311
|
+
- lib/alf/reader.rb
|
312
|
+
- lib/alf/lispy.rb
|
313
|
+
- lib/alf/iterator.rb
|
314
|
+
- lib/alf/aggregator.rb
|
315
|
+
- lib/alf/environment.rb
|
316
|
+
- lib/alf/relation.rb
|
317
|
+
- lib/alf/aggregator/count.rb
|
250
318
|
- lib/alf/aggregator/avg.rb
|
251
319
|
- lib/alf/aggregator/class_methods.rb
|
252
|
-
- lib/alf/aggregator/
|
320
|
+
- lib/alf/aggregator/max.rb
|
321
|
+
- lib/alf/aggregator/sum.rb
|
253
322
|
- lib/alf/aggregator/concat.rb
|
254
|
-
- lib/alf/aggregator/count.rb
|
255
323
|
- lib/alf/aggregator/instance_methods.rb
|
256
|
-
- lib/alf/aggregator/
|
324
|
+
- lib/alf/aggregator/variance.rb
|
257
325
|
- lib/alf/aggregator/min.rb
|
326
|
+
- lib/alf/aggregator/collect.rb
|
258
327
|
- lib/alf/aggregator/stddev.rb
|
259
|
-
- lib/alf/
|
260
|
-
- lib/alf/aggregator/variance.rb
|
261
|
-
- lib/alf/aggregator.rb
|
328
|
+
- lib/alf/ext.rb
|
262
329
|
- lib/alf/environment/class_methods.rb
|
263
|
-
- lib/alf/environment/folder.rb
|
264
330
|
- lib/alf/environment/instance_methods.rb
|
265
|
-
- lib/alf/environment.rb
|
266
|
-
- lib/alf/
|
331
|
+
- lib/alf/environment/folder.rb
|
332
|
+
- lib/alf/types.rb
|
333
|
+
- lib/alf/renderer.rb
|
334
|
+
- lib/alf/types/renaming.rb
|
335
|
+
- lib/alf/types/tuple_predicate.rb
|
336
|
+
- lib/alf/types/boolean.rb
|
337
|
+
- lib/alf/types/attr_list.rb
|
338
|
+
- lib/alf/types/size.rb
|
339
|
+
- lib/alf/types/attr_name.rb
|
340
|
+
- lib/alf/types/heading.rb
|
341
|
+
- lib/alf/types/tuple_computation.rb
|
342
|
+
- lib/alf/types/ordering.rb
|
343
|
+
- lib/alf/types/tuple_expression.rb
|
344
|
+
- lib/alf/types/summarization.rb
|
345
|
+
- lib/alf/tools/to_lispy.rb
|
346
|
+
- lib/alf/tools/to_relation.rb
|
347
|
+
- lib/alf/tools/coerce.rb
|
348
|
+
- lib/alf/tools/to_ruby_literal.rb
|
349
|
+
- lib/alf/tools/miscellaneous.rb
|
350
|
+
- lib/alf/tools/tuple_handle.rb
|
351
|
+
- lib/alf/tools.rb
|
267
352
|
- lib/alf/iterator/class_methods.rb
|
268
353
|
- lib/alf/iterator/proxy.rb
|
269
|
-
- lib/alf/
|
270
|
-
- lib/alf/lispy/instance_methods.rb
|
271
|
-
- lib/alf/lispy.rb
|
354
|
+
- lib/alf/errors.rb
|
272
355
|
- lib/alf/loader.rb
|
273
|
-
- lib/alf/
|
356
|
+
- lib/alf/renderer/class_methods.rb
|
357
|
+
- lib/alf/renderer/rash.rb
|
358
|
+
- lib/alf/renderer/instance_methods.rb
|
359
|
+
- lib/alf/renderer/text.rb
|
360
|
+
- lib/alf/ext/relation.rb
|
361
|
+
- lib/alf/lispy/instance_methods.rb
|
362
|
+
- lib/alf/operator.rb
|
274
363
|
- lib/alf/operator/class_methods.rb
|
275
364
|
- lib/alf/operator/experimental.rb
|
276
|
-
- lib/alf/operator/
|
277
|
-
- lib/alf/operator/non_relational/autonum.rb
|
278
|
-
- lib/alf/operator/non_relational/clip.rb
|
279
|
-
- lib/alf/operator/non_relational/coerce.rb
|
280
|
-
- lib/alf/operator/non_relational/compact.rb
|
281
|
-
- lib/alf/operator/non_relational/defaults.rb
|
282
|
-
- lib/alf/operator/non_relational/generator.rb
|
283
|
-
- lib/alf/operator/non_relational/sort.rb
|
284
|
-
- lib/alf/operator/nullary.rb
|
365
|
+
- lib/alf/operator/relational/quota.rb
|
285
366
|
- lib/alf/operator/relational/extend.rb
|
286
|
-
- lib/alf/operator/relational/
|
287
|
-
- lib/alf/operator/relational/
|
288
|
-
- lib/alf/operator/relational/intersect.rb
|
367
|
+
- lib/alf/operator/relational/rename.rb
|
368
|
+
- lib/alf/operator/relational/union.rb
|
289
369
|
- lib/alf/operator/relational/join.rb
|
290
|
-
- lib/alf/operator/relational/
|
370
|
+
- lib/alf/operator/relational/wrap.rb
|
371
|
+
- lib/alf/operator/relational/group.rb
|
372
|
+
- lib/alf/operator/relational/restrict.rb
|
291
373
|
- lib/alf/operator/relational/minus.rb
|
292
|
-
- lib/alf/operator/relational/not_matching.rb
|
293
374
|
- lib/alf/operator/relational/project.rb
|
294
|
-
- lib/alf/operator/relational/
|
295
|
-
- lib/alf/operator/relational/rank.rb
|
296
|
-
- lib/alf/operator/relational/rename.rb
|
297
|
-
- lib/alf/operator/relational/restrict.rb
|
375
|
+
- lib/alf/operator/relational/heading.rb
|
298
376
|
- lib/alf/operator/relational/summarize.rb
|
377
|
+
- lib/alf/operator/relational/rank.rb
|
299
378
|
- lib/alf/operator/relational/ungroup.rb
|
300
|
-
- lib/alf/operator/relational/
|
379
|
+
- lib/alf/operator/relational/matching.rb
|
301
380
|
- lib/alf/operator/relational/unwrap.rb
|
302
|
-
- lib/alf/operator/relational/
|
303
|
-
- lib/alf/operator/
|
381
|
+
- lib/alf/operator/relational/intersect.rb
|
382
|
+
- lib/alf/operator/relational/not_matching.rb
|
304
383
|
- lib/alf/operator/unary.rb
|
305
|
-
- lib/alf/operator.rb
|
306
|
-
- lib/alf/
|
307
|
-
- lib/alf/
|
308
|
-
- lib/alf/
|
309
|
-
- lib/alf/
|
310
|
-
- lib/alf/
|
311
|
-
- lib/alf/
|
312
|
-
- lib/alf/
|
313
|
-
- lib/alf/
|
314
|
-
- lib/alf/
|
315
|
-
- lib/alf/
|
316
|
-
- lib/alf/renderer/rash.rb
|
317
|
-
- lib/alf/renderer/text.rb
|
318
|
-
- lib/alf/renderer.rb
|
319
|
-
- lib/alf/tools/coerce.rb
|
320
|
-
- lib/alf/tools/miscellaneous.rb
|
321
|
-
- lib/alf/tools/to_lispy.rb
|
322
|
-
- lib/alf/tools/to_ruby_literal.rb
|
323
|
-
- lib/alf/tools/tuple_handle.rb
|
324
|
-
- lib/alf/tools.rb
|
325
|
-
- lib/alf/types/attr_list.rb
|
326
|
-
- lib/alf/types/attr_name.rb
|
327
|
-
- lib/alf/types/boolean.rb
|
328
|
-
- lib/alf/types/heading.rb
|
329
|
-
- lib/alf/types/ordering.rb
|
330
|
-
- lib/alf/types/renaming.rb
|
331
|
-
- lib/alf/types/size.rb
|
332
|
-
- lib/alf/types/summarization.rb
|
333
|
-
- lib/alf/types/tuple_computation.rb
|
334
|
-
- lib/alf/types/tuple_expression.rb
|
335
|
-
- lib/alf/types/tuple_predicate.rb
|
336
|
-
- lib/alf/types.rb
|
384
|
+
- lib/alf/operator/non_relational/coerce.rb
|
385
|
+
- lib/alf/operator/non_relational/defaults.rb
|
386
|
+
- lib/alf/operator/non_relational/autonum.rb
|
387
|
+
- lib/alf/operator/non_relational/sort.rb
|
388
|
+
- lib/alf/operator/non_relational/generator.rb
|
389
|
+
- lib/alf/operator/non_relational/clip.rb
|
390
|
+
- lib/alf/operator/non_relational/compact.rb
|
391
|
+
- lib/alf/operator/instance_methods.rb
|
392
|
+
- lib/alf/operator/nullary.rb
|
393
|
+
- lib/alf/operator/binary.rb
|
394
|
+
- lib/alf/operator/signature.rb
|
337
395
|
- lib/alf/version.rb
|
338
|
-
- lib/alf-csv/alf/csv/commons.rb
|
339
|
-
- lib/alf-csv/alf/csv/reader.rb
|
340
|
-
- lib/alf-csv/alf/csv/renderer.rb
|
341
|
-
- lib/alf-csv/alf/csv.rb
|
342
|
-
- lib/alf-engine/alf/engine/aggregate.rb
|
343
|
-
- lib/alf-engine/alf/engine/autonum.rb
|
344
|
-
- lib/alf-engine/alf/engine/cesure.rb
|
345
|
-
- lib/alf-engine/alf/engine/clip.rb
|
346
|
-
- lib/alf-engine/alf/engine/coerce.rb
|
347
|
-
- lib/alf-engine/alf/engine/cog.rb
|
348
|
-
- lib/alf-engine/alf/engine/compact/set.rb
|
349
|
-
- lib/alf-engine/alf/engine/compact/uniq.rb
|
350
|
-
- lib/alf-engine/alf/engine/compact.rb
|
351
|
-
- lib/alf-engine/alf/engine/concat.rb
|
352
|
-
- lib/alf-engine/alf/engine/defaults.rb
|
353
|
-
- lib/alf-engine/alf/engine/filter.rb
|
354
|
-
- lib/alf-engine/alf/engine/generator.rb
|
355
|
-
- lib/alf-engine/alf/engine/group/hash.rb
|
356
|
-
- lib/alf-engine/alf/engine/group.rb
|
357
|
-
- lib/alf-engine/alf/engine/join/hash.rb
|
358
|
-
- lib/alf-engine/alf/engine/join.rb
|
359
|
-
- lib/alf-engine/alf/engine/materialize/array.rb
|
360
|
-
- lib/alf-engine/alf/engine/materialize/hash.rb
|
361
|
-
- lib/alf-engine/alf/engine/materialize.rb
|
362
|
-
- lib/alf-engine/alf/engine/quota/cesure.rb
|
363
|
-
- lib/alf-engine/alf/engine/quota.rb
|
364
|
-
- lib/alf-engine/alf/engine/rank/cesure.rb
|
365
|
-
- lib/alf-engine/alf/engine/rank.rb
|
366
|
-
- lib/alf-engine/alf/engine/rename.rb
|
367
|
-
- lib/alf-engine/alf/engine/semi/hash.rb
|
368
|
-
- lib/alf-engine/alf/engine/semi.rb
|
369
|
-
- lib/alf-engine/alf/engine/set_attr.rb
|
370
|
-
- lib/alf-engine/alf/engine/sort/in_memory.rb
|
371
|
-
- lib/alf-engine/alf/engine/sort.rb
|
372
|
-
- lib/alf-engine/alf/engine/summarize/cesure.rb
|
373
|
-
- lib/alf-engine/alf/engine/summarize/hash.rb
|
374
|
-
- lib/alf-engine/alf/engine/summarize.rb
|
375
|
-
- lib/alf-engine/alf/engine/ungroup.rb
|
376
|
-
- lib/alf-engine/alf/engine/unwrap.rb
|
377
|
-
- lib/alf-engine/alf/engine/wrap.rb
|
378
|
-
- lib/alf-engine/alf/engine.rb
|
379
|
-
- lib/alf-logs/alf/logs/reader.rb
|
380
396
|
- lib/alf-logs/alf/logs.rb
|
381
|
-
- lib/alf-
|
382
|
-
- lib/alf-sequel/alf/sequel/iterator.rb
|
383
|
-
- lib/alf-sequel/alf/sequel.rb
|
384
|
-
- lib/alf-shell/alf/shell/command/exec.rb
|
385
|
-
- lib/alf-shell/alf/shell/command/help.rb
|
386
|
-
- lib/alf-shell/alf/shell/command/main/class_methods.rb
|
387
|
-
- lib/alf-shell/alf/shell/command/main.rb
|
388
|
-
- lib/alf-shell/alf/shell/command/show.rb
|
389
|
-
- lib/alf-shell/alf/shell/command.rb
|
390
|
-
- lib/alf-shell/alf/shell/doc_manager.rb
|
391
|
-
- lib/alf-shell/alf/shell/operator.rb
|
392
|
-
- lib/alf-shell/alf/shell.rb
|
393
|
-
- lib/alf-yaml/alf/yaml/renderer.rb
|
397
|
+
- lib/alf-logs/alf/logs/reader.rb
|
394
398
|
- lib/alf-yaml/alf/yaml.rb
|
395
|
-
- lib/alf.rb
|
396
|
-
- spec/
|
397
|
-
- spec/
|
398
|
-
- spec/
|
399
|
-
- spec/
|
400
|
-
- spec/integration/
|
401
|
-
- spec/integration/
|
402
|
-
- spec/integration/
|
403
|
-
- spec/integration/lispy/test_tuple.rb
|
404
|
-
- spec/integration/semantics/test_join.alf
|
399
|
+
- lib/alf-yaml/alf/yaml/renderer.rb
|
400
|
+
- spec/spec_helper.rb
|
401
|
+
- spec/shared/a_value.rb
|
402
|
+
- spec/shared/a_valid_type_implementation.rb
|
403
|
+
- spec/shared/an_operator_class.rb
|
404
|
+
- spec/integration/test_shell.rb
|
405
|
+
- spec/integration/test_lispy.rb
|
406
|
+
- spec/integration/semantics/test_rank.alf
|
405
407
|
- spec/integration/semantics/test_minus.alf
|
406
408
|
- spec/integration/semantics/test_project.alf
|
407
|
-
- spec/integration/semantics/
|
408
|
-
- spec/integration/
|
409
|
+
- spec/integration/semantics/test_join.alf
|
410
|
+
- spec/integration/test_semantics.rb
|
411
|
+
- spec/integration/shell/rename/rename_0.stdout
|
412
|
+
- spec/integration/shell/rename/rename_0.cmd
|
413
|
+
- spec/integration/shell/ungroup/ungroup_0.cmd
|
414
|
+
- spec/integration/shell/ungroup/ungroup_0.stdout
|
415
|
+
- spec/integration/shell/help/help_1.cmd
|
416
|
+
- spec/integration/shell/help/help_1.stdout
|
417
|
+
- spec/integration/shell/compact/compact_0.stdout
|
418
|
+
- spec/integration/shell/compact/compact_0.cmd
|
419
|
+
- spec/integration/shell/union/union_0.stdout
|
420
|
+
- spec/integration/shell/union/union_0.cmd
|
421
|
+
- spec/integration/shell/restrict/restrict_0.stdout
|
422
|
+
- spec/integration/shell/restrict/restrict_0.cmd
|
423
|
+
- spec/integration/shell/restrict/restrict_1.cmd
|
424
|
+
- spec/integration/shell/restrict/restrict_1.stdout
|
425
|
+
- spec/integration/shell/extend/extend_0.cmd
|
426
|
+
- spec/integration/shell/extend/extend_0.stdout
|
427
|
+
- spec/integration/shell/join/join_0.stdout
|
428
|
+
- spec/integration/shell/join/join_0.cmd
|
429
|
+
- spec/integration/shell/coerce/coerce_1.cmd
|
430
|
+
- spec/integration/shell/coerce/coerce_1.stdout
|
431
|
+
- spec/integration/shell/quota/quota_0.stdout
|
432
|
+
- spec/integration/shell/quota/quota_0.cmd
|
433
|
+
- spec/integration/shell/wrap/wrap_0.stdout
|
434
|
+
- spec/integration/shell/wrap/wrap_0.cmd
|
435
|
+
- spec/integration/shell/group/group_1.stdout
|
436
|
+
- spec/integration/shell/group/group_1.cmd
|
437
|
+
- spec/integration/shell/group/group_0.stdout
|
438
|
+
- spec/integration/shell/group/group_0.cmd
|
439
|
+
- spec/integration/shell/minus/minus_0.cmd
|
440
|
+
- spec/integration/shell/minus/minus_0.stdout
|
441
|
+
- spec/integration/shell/not-matching/not-matching_0.cmd
|
442
|
+
- spec/integration/shell/not-matching/not-matching_0.stdout
|
409
443
|
- spec/integration/shell/alf/alf_e.cmd
|
410
|
-
- spec/integration/shell/alf/
|
411
|
-
- spec/integration/shell/alf/alf_env.cmd
|
412
|
-
- spec/integration/shell/alf/alf_env.stdout
|
444
|
+
- spec/integration/shell/alf/alf_implicit_exec.stdout
|
413
445
|
- spec/integration/shell/alf/alf_env_sqlite.cmd
|
414
|
-
- spec/integration/shell/alf/
|
415
|
-
- spec/integration/shell/alf/alf_help.cmd
|
446
|
+
- spec/integration/shell/alf/rel.rash
|
416
447
|
- spec/integration/shell/alf/alf_help.stdout
|
417
|
-
- spec/integration/shell/alf/
|
418
|
-
- spec/integration/shell/alf/
|
419
|
-
- spec/integration/shell/alf/
|
420
|
-
- spec/integration/shell/alf/alf_r.cmd
|
448
|
+
- spec/integration/shell/alf/alf_yaml.cmd
|
449
|
+
- spec/integration/shell/alf/alf_version.stdout
|
450
|
+
- spec/integration/shell/alf/alf_env.stdout
|
421
451
|
- spec/integration/shell/alf/alf_r.stdout
|
452
|
+
- spec/integration/shell/alf/alf_env.cmd
|
422
453
|
- spec/integration/shell/alf/alf_version.cmd
|
423
|
-
- spec/integration/shell/alf/
|
424
|
-
- spec/integration/shell/alf/
|
454
|
+
- spec/integration/shell/alf/alf_env_sqlite.stdout
|
455
|
+
- spec/integration/shell/alf/alf_help.cmd
|
456
|
+
- spec/integration/shell/alf/alf.db
|
425
457
|
- spec/integration/shell/alf/alf_yaml.stdout
|
426
|
-
- spec/integration/shell/alf/
|
427
|
-
- spec/integration/shell/
|
428
|
-
- spec/integration/shell/
|
429
|
-
- spec/integration/shell/
|
430
|
-
- spec/integration/shell/
|
431
|
-
- spec/integration/shell/
|
432
|
-
- spec/integration/shell/
|
458
|
+
- spec/integration/shell/alf/alf_e.stdout
|
459
|
+
- spec/integration/shell/alf/alf_implicit_exec.cmd
|
460
|
+
- spec/integration/shell/alf/alf_implicit.alf
|
461
|
+
- spec/integration/shell/alf/alf_r.cmd
|
462
|
+
- spec/integration/shell/generator/generator_1.cmd
|
463
|
+
- spec/integration/shell/generator/generator_2.cmd
|
464
|
+
- spec/integration/shell/generator/generator_3.stdout
|
465
|
+
- spec/integration/shell/generator/generator_1.stdout
|
466
|
+
- spec/integration/shell/generator/generator_2.stdout
|
467
|
+
- spec/integration/shell/generator/generator_3.cmd
|
468
|
+
- spec/integration/shell/unwrap/unwrap_0.cmd
|
469
|
+
- spec/integration/shell/unwrap/unwrap_0.stdout
|
433
470
|
- spec/integration/shell/clip/clip_1.cmd
|
434
471
|
- spec/integration/shell/clip/clip_1.stdout
|
435
|
-
- spec/integration/shell/
|
436
|
-
- spec/integration/shell/
|
437
|
-
- spec/integration/shell/
|
438
|
-
- spec/integration/shell/
|
439
|
-
- spec/integration/shell/
|
440
|
-
- spec/integration/shell/
|
441
|
-
- spec/integration/shell/
|
472
|
+
- spec/integration/shell/clip/clip_0.cmd
|
473
|
+
- spec/integration/shell/clip/clip_0.stdout
|
474
|
+
- spec/integration/shell/project/project_1.stdout
|
475
|
+
- spec/integration/shell/project/project_1.cmd
|
476
|
+
- spec/integration/shell/project/project_0.cmd
|
477
|
+
- spec/integration/shell/project/project_0.stdout
|
478
|
+
- spec/integration/shell/matching/matching_0.stdout
|
479
|
+
- spec/integration/shell/matching/matching_0.cmd
|
442
480
|
- spec/integration/shell/defaults/defaults_1.stdout
|
481
|
+
- spec/integration/shell/defaults/defaults_0.stdout
|
443
482
|
- spec/integration/shell/defaults/defaults_2.cmd
|
444
483
|
- spec/integration/shell/defaults/defaults_2.stdout
|
445
|
-
- spec/integration/shell/
|
446
|
-
- spec/integration/shell/
|
447
|
-
- spec/integration/shell/generator/generator_1.cmd
|
448
|
-
- spec/integration/shell/generator/generator_1.stdout
|
449
|
-
- spec/integration/shell/generator/generator_2.cmd
|
450
|
-
- spec/integration/shell/generator/generator_2.stdout
|
451
|
-
- spec/integration/shell/generator/generator_3.cmd
|
452
|
-
- spec/integration/shell/generator/generator_3.stdout
|
453
|
-
- spec/integration/shell/group/group_0.cmd
|
454
|
-
- spec/integration/shell/group/group_0.stdout
|
455
|
-
- spec/integration/shell/group/group_1.cmd
|
456
|
-
- spec/integration/shell/group/group_1.stdout
|
457
|
-
- spec/integration/shell/help/help_1.cmd
|
458
|
-
- spec/integration/shell/help/help_1.stdout
|
484
|
+
- spec/integration/shell/defaults/defaults_1.cmd
|
485
|
+
- spec/integration/shell/defaults/defaults_0.cmd
|
459
486
|
- spec/integration/shell/intersect/intersect_0.cmd
|
460
487
|
- spec/integration/shell/intersect/intersect_0.stdout
|
461
|
-
- spec/integration/shell/
|
462
|
-
- spec/integration/shell/
|
463
|
-
- spec/integration/shell/
|
464
|
-
- spec/integration/shell/
|
465
|
-
- spec/integration/shell/
|
466
|
-
- spec/integration/shell/
|
467
|
-
- spec/integration/shell/
|
468
|
-
- spec/integration/shell/
|
469
|
-
- spec/integration/shell/
|
470
|
-
- spec/integration/shell/
|
471
|
-
- spec/integration/shell/
|
472
|
-
- spec/integration/shell/
|
473
|
-
- spec/integration/shell/
|
474
|
-
- spec/integration/shell/
|
475
|
-
- spec/integration/shell/
|
476
|
-
- spec/integration/shell/
|
488
|
+
- spec/integration/shell/show/show_base.stdout
|
489
|
+
- spec/integration/shell/show/show_rash_pretty.cmd
|
490
|
+
- spec/integration/shell/show/show_yaml.cmd
|
491
|
+
- spec/integration/shell/show/show_rash_pretty.stdout
|
492
|
+
- spec/integration/shell/show/show_ff.cmd
|
493
|
+
- spec/integration/shell/show/show_yaml.stdout
|
494
|
+
- spec/integration/shell/show/show_rash.cmd
|
495
|
+
- spec/integration/shell/show/show_base_sort_1.cmd
|
496
|
+
- spec/integration/shell/show/show_conflictual.stdout
|
497
|
+
- spec/integration/shell/show/show_base_sort_2.cmd
|
498
|
+
- spec/integration/shell/show/show_rash.stdout
|
499
|
+
- spec/integration/shell/show/show_base.cmd
|
500
|
+
- spec/integration/shell/show/show_base_sort_2.stdout
|
501
|
+
- spec/integration/shell/show/show_csv.cmd
|
502
|
+
- spec/integration/shell/show/show_conflictual.cmd
|
503
|
+
- spec/integration/shell/show/show_csv.stdout
|
504
|
+
- spec/integration/shell/show/show_base_sort_1.stdout
|
505
|
+
- spec/integration/shell/show/show_ff.stdout
|
506
|
+
- spec/integration/shell/rank/rank_5.stdout
|
477
507
|
- spec/integration/shell/rank/rank_2.cmd
|
478
|
-
- spec/integration/shell/rank/
|
508
|
+
- spec/integration/shell/rank/rank_5.cmd
|
509
|
+
- spec/integration/shell/rank/rank_1.stdout
|
479
510
|
- spec/integration/shell/rank/rank_3.cmd
|
480
511
|
- spec/integration/shell/rank/rank_3.stdout
|
512
|
+
- spec/integration/shell/rank/rank_1.cmd
|
513
|
+
- spec/integration/shell/rank/rank_2.stdout
|
481
514
|
- spec/integration/shell/rank/rank_4.cmd
|
482
515
|
- spec/integration/shell/rank/rank_4.stdout
|
483
|
-
- spec/integration/shell/rank/rank_5.cmd
|
484
|
-
- spec/integration/shell/rank/rank_5.stdout
|
485
|
-
- spec/integration/shell/rename/rename_0.cmd
|
486
|
-
- spec/integration/shell/rename/rename_0.stdout
|
487
|
-
- spec/integration/shell/restrict/restrict_0.cmd
|
488
|
-
- spec/integration/shell/restrict/restrict_0.stdout
|
489
|
-
- spec/integration/shell/restrict/restrict_1.cmd
|
490
|
-
- spec/integration/shell/restrict/restrict_1.stdout
|
491
|
-
- spec/integration/shell/show/show_base.cmd
|
492
|
-
- spec/integration/shell/show/show_base.stdout
|
493
|
-
- spec/integration/shell/show/show_base_sort_1.cmd
|
494
|
-
- spec/integration/shell/show/show_base_sort_1.stdout
|
495
|
-
- spec/integration/shell/show/show_base_sort_2.cmd
|
496
|
-
- spec/integration/shell/show/show_base_sort_2.stdout
|
497
|
-
- spec/integration/shell/show/show_conflictual.cmd
|
498
|
-
- spec/integration/shell/show/show_conflictual.stdout
|
499
|
-
- spec/integration/shell/show/show_csv.cmd
|
500
|
-
- spec/integration/shell/show/show_csv.stdout
|
501
|
-
- spec/integration/shell/show/show_ff.cmd
|
502
|
-
- spec/integration/shell/show/show_ff.stdout
|
503
|
-
- spec/integration/shell/show/show_rash.cmd
|
504
|
-
- spec/integration/shell/show/show_rash.stdout
|
505
|
-
- spec/integration/shell/show/show_rash_pretty.cmd
|
506
|
-
- spec/integration/shell/show/show_rash_pretty.stdout
|
507
|
-
- spec/integration/shell/show/show_yaml.cmd
|
508
|
-
- spec/integration/shell/show/show_yaml.stdout
|
509
|
-
- spec/integration/shell/sort/sort_0.cmd
|
510
516
|
- spec/integration/shell/sort/sort_0.stdout
|
511
|
-
- spec/integration/shell/sort/sort_1.cmd
|
512
|
-
- spec/integration/shell/sort/sort_1.stdout
|
513
517
|
- spec/integration/shell/sort/sort_2.cmd
|
514
|
-
- spec/integration/shell/sort/sort_2.stdout
|
515
518
|
- spec/integration/shell/sort/sort_3.cmd
|
516
519
|
- spec/integration/shell/sort/sort_3.stdout
|
517
|
-
- spec/integration/shell/
|
520
|
+
- spec/integration/shell/sort/sort_1.stdout
|
521
|
+
- spec/integration/shell/sort/sort_2.stdout
|
522
|
+
- spec/integration/shell/sort/sort_0.cmd
|
523
|
+
- spec/integration/shell/sort/sort_1.cmd
|
524
|
+
- spec/integration/shell/autonum/autonum_0.stdout
|
525
|
+
- spec/integration/shell/autonum/autonum_1.stdout
|
526
|
+
- spec/integration/shell/autonum/autonum_0.cmd
|
527
|
+
- spec/integration/shell/autonum/autonum_1.cmd
|
518
528
|
- spec/integration/shell/summarize/summarize_0.stdout
|
519
|
-
- spec/integration/shell/
|
520
|
-
- spec/integration/shell/ungroup/ungroup_0.stdout
|
521
|
-
- spec/integration/shell/union/union_0.cmd
|
522
|
-
- spec/integration/shell/union/union_0.stdout
|
523
|
-
- spec/integration/shell/unwrap/unwrap_0.cmd
|
524
|
-
- spec/integration/shell/unwrap/unwrap_0.stdout
|
525
|
-
- spec/integration/shell/wrap/wrap_0.cmd
|
526
|
-
- spec/integration/shell/wrap/wrap_0.stdout
|
527
|
-
- spec/integration/test_alf.rb
|
529
|
+
- spec/integration/shell/summarize/summarize_0.cmd
|
528
530
|
- spec/integration/test_examples.rb
|
529
|
-
- spec/integration/
|
530
|
-
- spec/integration/
|
531
|
-
- spec/integration/
|
532
|
-
- spec/
|
533
|
-
- spec/
|
534
|
-
- spec/
|
535
|
-
- spec/
|
536
|
-
- spec/
|
537
|
-
- spec/
|
538
|
-
- spec/
|
539
|
-
- spec/
|
540
|
-
- spec/
|
541
|
-
- spec/
|
542
|
-
- spec/
|
543
|
-
- spec/
|
544
|
-
- spec/
|
545
|
-
- spec/
|
531
|
+
- spec/integration/__database__/supplies.rash
|
532
|
+
- spec/integration/__database__/group.alf
|
533
|
+
- spec/integration/__database__/parts.rash
|
534
|
+
- spec/integration/__database__/suppliers.rash
|
535
|
+
- spec/integration/__database__/suppliers_csv.csv
|
536
|
+
- spec/integration/ext/test_relation.rb
|
537
|
+
- spec/integration/lispy/test_relation.rb
|
538
|
+
- spec/integration/lispy/test_tuple.rb
|
539
|
+
- spec/integration/lispy/test_run.rb
|
540
|
+
- spec/integration/test_alf.rb
|
541
|
+
- spec/unit/alf-csv/input.csv
|
542
|
+
- spec/unit/alf-csv/test_renderer.rb
|
543
|
+
- spec/unit/alf-csv/test_reader.rb
|
544
|
+
- spec/unit/alf-shell/doc_manager/dynamic.md
|
545
|
+
- spec/unit/alf-shell/doc_manager/example_1.txt
|
546
|
+
- spec/unit/alf-shell/doc_manager/example.md
|
547
|
+
- spec/unit/alf-shell/doc_manager/static.md
|
548
|
+
- spec/unit/alf-shell/doc_manager/test_call.rb
|
549
|
+
- spec/unit/alf-shell/main/test_class_methods.rb
|
550
|
+
- spec/unit/alf-shell/operator/test_join.rb
|
551
|
+
- spec/unit/alf-shell/operator/test_matching.rb
|
552
|
+
- spec/unit/alf-shell/operator/test_defaults.rb
|
553
|
+
- spec/unit/alf-shell/operator/test_not_matching.rb
|
554
|
+
- spec/unit/alf-shell/operator/test_extend.rb
|
555
|
+
- spec/unit/alf-shell/operator/test_sort.rb
|
556
|
+
- spec/unit/alf-shell/operator/test_intersect.rb
|
557
|
+
- spec/unit/alf-shell/operator/test_rank.rb
|
558
|
+
- spec/unit/alf-shell/operator/test_summarize.rb
|
559
|
+
- spec/unit/alf-shell/operator/test_rename.rb
|
560
|
+
- spec/unit/alf-shell/operator/test_generator.rb
|
561
|
+
- spec/unit/alf-shell/operator/test_heading.rb
|
562
|
+
- spec/unit/alf-shell/operator/test_wrap.rb
|
563
|
+
- spec/unit/alf-shell/operator/test_coerce.rb
|
564
|
+
- spec/unit/alf-shell/operator/test_restrict.rb
|
565
|
+
- spec/unit/alf-shell/operator/test_minus.rb
|
566
|
+
- spec/unit/alf-shell/operator/test_quota.rb
|
567
|
+
- spec/unit/alf-shell/operator/test_clip.rb
|
568
|
+
- spec/unit/alf-shell/operator/test_autonum.rb
|
569
|
+
- spec/unit/alf-shell/operator/test_unwrap.rb
|
570
|
+
- spec/unit/alf-shell/operator/test_group.rb
|
571
|
+
- spec/unit/alf-shell/operator/test_compact.rb
|
572
|
+
- spec/unit/alf-shell/operator/test_union.rb
|
573
|
+
- spec/unit/alf-shell/operator/test_project.rb
|
574
|
+
- spec/unit/alf-shell/operator/test_ungroup.rb
|
575
|
+
- spec/unit/alf-sequel/test_environment.rb
|
576
|
+
- spec/unit/alf-sequel/alf.db
|
577
|
+
- spec/unit/alf-engine/test_defaults.rb
|
578
|
+
- spec/unit/alf-engine/compact/test_set.rb
|
579
|
+
- spec/unit/alf-engine/compact/test_uniq.rb
|
580
|
+
- spec/unit/alf-engine/test_sort.rb
|
581
|
+
- spec/unit/alf-engine/semi/test_hash.rb
|
582
|
+
- spec/unit/alf-engine/test_filter.rb
|
583
|
+
- spec/unit/alf-engine/test_rename.rb
|
584
|
+
- spec/unit/alf-engine/join/test_hash.rb
|
585
|
+
- spec/unit/alf-engine/test_generator.rb
|
586
|
+
- spec/unit/alf-engine/test_concat.rb
|
587
|
+
- spec/unit/alf-engine/quota/test_cesure.rb
|
588
|
+
- spec/unit/alf-engine/test_wrap.rb
|
589
|
+
- spec/unit/alf-engine/test_set_attr.rb
|
590
|
+
- spec/unit/alf-engine/test_coerce.rb
|
591
|
+
- spec/unit/alf-engine/group/test_hash.rb
|
592
|
+
- spec/unit/alf-engine/test_clip.rb
|
593
|
+
- spec/unit/alf-engine/test_autonum.rb
|
594
|
+
- spec/unit/alf-engine/materialize/test_array.rb
|
595
|
+
- spec/unit/alf-engine/materialize/test_hash.rb
|
596
|
+
- spec/unit/alf-engine/test_unwrap.rb
|
597
|
+
- spec/unit/alf-engine/rank/test_cesure.rb
|
598
|
+
- spec/unit/alf-engine/test_aggregate.rb
|
599
|
+
- spec/unit/alf-engine/test_compact.rb
|
600
|
+
- spec/unit/alf-engine/sort/test_in_memory.rb
|
601
|
+
- spec/unit/alf-engine/summarize/test_hash.rb
|
602
|
+
- spec/unit/alf-engine/summarize/test_cesure.rb
|
603
|
+
- spec/unit/alf-engine/test_ungroup.rb
|
604
|
+
- spec/unit/alf-core/test_operator.rb
|
605
|
+
- spec/unit/alf-core/test_relation.rb
|
606
|
+
- spec/unit/alf-core/relation/test_relops.rb
|
607
|
+
- spec/unit/alf-core/relation/test_inspect.rb
|
608
|
+
- spec/unit/alf-core/relation/test_coerce.rb
|
609
|
+
- spec/unit/alf-core/relation/test_to_a.rb
|
610
|
+
- spec/unit/alf-core/reader/test_looks_a_path.rb
|
611
|
+
- spec/unit/alf-core/reader/input.rb
|
612
|
+
- spec/unit/alf-core/reader/test_rash.rb
|
613
|
+
- spec/unit/alf-core/reader/test_initialize.rb
|
614
|
+
- spec/unit/alf-core/reader/test_alf_file.rb
|
615
|
+
- spec/unit/alf-core/test_aggregator.rb
|
616
|
+
- spec/unit/alf-core/aggregator/test_sum.rb
|
617
|
+
- spec/unit/alf-core/aggregator/test_min.rb
|
618
|
+
- spec/unit/alf-core/aggregator/test_concat.rb
|
546
619
|
- spec/unit/alf-core/aggregator/test_avg.rb
|
620
|
+
- spec/unit/alf-core/aggregator/test_variance.rb
|
621
|
+
- spec/unit/alf-core/aggregator/test_stddev.rb
|
547
622
|
- spec/unit/alf-core/aggregator/test_collect.rb
|
548
|
-
- spec/unit/alf-core/aggregator/test_concat.rb
|
549
623
|
- spec/unit/alf-core/aggregator/test_count.rb
|
550
624
|
- spec/unit/alf-core/aggregator/test_max.rb
|
551
|
-
- spec/unit/alf-core/aggregator/test_min.rb
|
552
|
-
- spec/unit/alf-core/aggregator/test_stddev.rb
|
553
|
-
- spec/unit/alf-core/aggregator/test_sum.rb
|
554
|
-
- spec/unit/alf-core/aggregator/test_variance.rb
|
555
|
-
- spec/unit/alf-core/assumptions/test_file.rb
|
556
|
-
- spec/unit/alf-core/assumptions/test_instance_eval.rb
|
557
|
-
- spec/unit/alf-core/assumptions/test_scoping.rb
|
558
|
-
- spec/unit/alf-core/assumptions/test_set.rb
|
559
625
|
- spec/unit/alf-core/environment/examples/suppliers.rash
|
560
626
|
- spec/unit/alf-core/environment/test_folder.rb
|
561
|
-
- spec/unit/alf-core/
|
562
|
-
- spec/unit/alf-core/
|
563
|
-
- spec/unit/alf-core/
|
564
|
-
- spec/unit/alf-core/
|
565
|
-
- spec/unit/alf-core/
|
566
|
-
- spec/unit/alf-core/
|
567
|
-
- spec/unit/alf-core/
|
627
|
+
- spec/unit/alf-core/types/test_ordering.rb
|
628
|
+
- spec/unit/alf-core/types/test_tuple_computation.rb
|
629
|
+
- spec/unit/alf-core/types/test_tuple_expression.rb
|
630
|
+
- spec/unit/alf-core/types/test_boolean.rb
|
631
|
+
- spec/unit/alf-core/types/test_renaming.rb
|
632
|
+
- spec/unit/alf-core/types/test_summarization.rb
|
633
|
+
- spec/unit/alf-core/types/test_heading.rb
|
634
|
+
- spec/unit/alf-core/types/test_class_methods.rb
|
635
|
+
- spec/unit/alf-core/types/test_attr_list.rb
|
636
|
+
- spec/unit/alf-core/types/test_attr_name.rb
|
637
|
+
- spec/unit/alf-core/types/test_tuple_predicate.rb
|
638
|
+
- spec/unit/alf-core/types/test_size.rb
|
639
|
+
- spec/unit/alf-core/tools/test_coalesce.rb
|
640
|
+
- spec/unit/alf-core/tools/test_class_name.rb
|
641
|
+
- spec/unit/alf-core/tools/test_to_relation.rb
|
642
|
+
- spec/unit/alf-core/tools/test_varargs.rb
|
643
|
+
- spec/unit/alf-core/tools/test_to_ruby_literal.rb
|
644
|
+
- spec/unit/alf-core/tools/test_ruby_case.rb
|
645
|
+
- spec/unit/alf-core/tools/test_coerce.rb
|
646
|
+
- spec/unit/alf-core/tools/test_to_lispy.rb
|
647
|
+
- spec/unit/alf-core/tools/test_tuple_heading.rb
|
648
|
+
- spec/unit/alf-core/tools/test_tuple_handle.rb
|
649
|
+
- spec/unit/alf-core/text/test_cell.rb
|
650
|
+
- spec/unit/alf-core/text/test_table.rb
|
651
|
+
- spec/unit/alf-core/text/test_row.rb
|
652
|
+
- spec/unit/alf-core/test_environment.rb
|
653
|
+
- spec/unit/alf-core/renderer/test_initialize.rb
|
654
|
+
- spec/unit/alf-core/assumptions/test_scoping.rb
|
655
|
+
- spec/unit/alf-core/assumptions/test_set.rb
|
656
|
+
- spec/unit/alf-core/assumptions/test_instance_eval.rb
|
657
|
+
- spec/unit/alf-core/assumptions/test_file.rb
|
658
|
+
- spec/unit/alf-core/test_renderer.rb
|
659
|
+
- spec/unit/alf-core/operator/test_non_relational.rb
|
660
|
+
- spec/unit/alf-core/operator/relational/test_join.rb
|
568
661
|
- spec/unit/alf-core/operator/relational/test_extend.rb
|
569
|
-
- spec/unit/alf-core/operator/relational/test_group.rb
|
570
|
-
- spec/unit/alf-core/operator/relational/test_heading.rb
|
571
662
|
- spec/unit/alf-core/operator/relational/test_intersect.rb
|
572
|
-
- spec/unit/alf-core/operator/relational/test_join.rb
|
573
|
-
- spec/unit/alf-core/operator/relational/test_minus.rb
|
574
|
-
- spec/unit/alf-core/operator/relational/test_project.rb
|
575
|
-
- spec/unit/alf-core/operator/relational/test_quota.rb
|
576
663
|
- spec/unit/alf-core/operator/relational/test_rank.rb
|
664
|
+
- spec/unit/alf-core/operator/relational/test_summarize.rb
|
577
665
|
- spec/unit/alf-core/operator/relational/test_rename.rb
|
666
|
+
- spec/unit/alf-core/operator/relational/test_heading.rb
|
667
|
+
- spec/unit/alf-core/operator/relational/test_wrap.rb
|
578
668
|
- spec/unit/alf-core/operator/relational/test_restrict.rb
|
579
|
-
- spec/unit/alf-core/operator/relational/
|
580
|
-
- spec/unit/alf-core/operator/relational/
|
581
|
-
- spec/unit/alf-core/operator/relational/test_union.rb
|
669
|
+
- spec/unit/alf-core/operator/relational/test_minus.rb
|
670
|
+
- spec/unit/alf-core/operator/relational/test_quota.rb
|
582
671
|
- spec/unit/alf-core/operator/relational/test_unwrap.rb
|
583
|
-
- spec/unit/alf-core/operator/relational/
|
584
|
-
- spec/unit/alf-core/operator/
|
585
|
-
- spec/unit/alf-core/operator/
|
586
|
-
- spec/unit/alf-core/operator/
|
672
|
+
- spec/unit/alf-core/operator/relational/test_group.rb
|
673
|
+
- spec/unit/alf-core/operator/relational/test_union.rb
|
674
|
+
- spec/unit/alf-core/operator/relational/test_project.rb
|
675
|
+
- spec/unit/alf-core/operator/relational/test_ungroup.rb
|
676
|
+
- spec/unit/alf-core/operator/non_relational/test_defaults.rb
|
677
|
+
- spec/unit/alf-core/operator/non_relational/test_sort.rb
|
678
|
+
- spec/unit/alf-core/operator/non_relational/test_generator.rb
|
679
|
+
- spec/unit/alf-core/operator/non_relational/test_coerce.rb
|
680
|
+
- spec/unit/alf-core/operator/non_relational/test_clip.rb
|
681
|
+
- spec/unit/alf-core/operator/non_relational/test_autonum.rb
|
682
|
+
- spec/unit/alf-core/operator/non_relational/test_compact.rb
|
587
683
|
- spec/unit/alf-core/operator/signature/test_install.rb
|
588
|
-
- spec/unit/alf-core/operator/signature/test_option_parser.rb
|
589
684
|
- spec/unit/alf-core/operator/signature/test_parse_args.rb
|
685
|
+
- spec/unit/alf-core/operator/signature/test_initialize.rb
|
686
|
+
- spec/unit/alf-core/operator/signature/test_option_parser.rb
|
590
687
|
- spec/unit/alf-core/operator/signature/test_to_lispy.rb
|
688
|
+
- spec/unit/alf-core/operator/signature/test_argv2args.rb
|
591
689
|
- spec/unit/alf-core/operator/signature/test_to_shell.rb
|
592
|
-
- spec/unit/alf-core/operator/
|
690
|
+
- spec/unit/alf-core/operator/signature/test_collect_on.rb
|
593
691
|
- spec/unit/alf-core/operator/test_relational.rb
|
594
|
-
- spec/unit/alf-core/reader/input.rb
|
595
|
-
- spec/unit/alf-core/reader/test_alf_file.rb
|
596
|
-
- spec/unit/alf-core/reader/test_initialize.rb
|
597
|
-
- spec/unit/alf-core/reader/test_looks_a_path.rb
|
598
|
-
- spec/unit/alf-core/reader/test_rash.rb
|
599
|
-
- spec/unit/alf-core/relation/test_coerce.rb
|
600
|
-
- spec/unit/alf-core/relation/test_inspect.rb
|
601
|
-
- spec/unit/alf-core/relation/test_relops.rb
|
602
|
-
- spec/unit/alf-core/relation/test_to_a.rb
|
603
|
-
- spec/unit/alf-core/renderer/test_initialize.rb
|
604
|
-
- spec/unit/alf-core/test_aggregator.rb
|
605
|
-
- spec/unit/alf-core/test_environment.rb
|
606
|
-
- spec/unit/alf-core/test_operator.rb
|
607
692
|
- spec/unit/alf-core/test_reader.rb
|
608
|
-
- spec/unit/alf-core/test_relation.rb
|
609
|
-
- spec/unit/alf-core/test_renderer.rb
|
610
|
-
- spec/unit/alf-core/text/test_cell.rb
|
611
|
-
- spec/unit/alf-core/text/test_row.rb
|
612
|
-
- spec/unit/alf-core/text/test_table.rb
|
613
|
-
- spec/unit/alf-core/tools/test_class_name.rb
|
614
|
-
- spec/unit/alf-core/tools/test_coalesce.rb
|
615
|
-
- spec/unit/alf-core/tools/test_coerce.rb
|
616
|
-
- spec/unit/alf-core/tools/test_ruby_case.rb
|
617
|
-
- spec/unit/alf-core/tools/test_to_lispy.rb
|
618
|
-
- spec/unit/alf-core/tools/test_to_ruby_literal.rb
|
619
|
-
- spec/unit/alf-core/tools/test_tuple_handle.rb
|
620
|
-
- spec/unit/alf-core/tools/test_tuple_heading.rb
|
621
|
-
- spec/unit/alf-core/tools/test_varargs.rb
|
622
|
-
- spec/unit/alf-core/types/test_attr_list.rb
|
623
|
-
- spec/unit/alf-core/types/test_attr_name.rb
|
624
|
-
- spec/unit/alf-core/types/test_boolean.rb
|
625
|
-
- spec/unit/alf-core/types/test_class_methods.rb
|
626
|
-
- spec/unit/alf-core/types/test_heading.rb
|
627
|
-
- spec/unit/alf-core/types/test_ordering.rb
|
628
|
-
- spec/unit/alf-core/types/test_renaming.rb
|
629
|
-
- spec/unit/alf-core/types/test_size.rb
|
630
|
-
- spec/unit/alf-core/types/test_summarization.rb
|
631
|
-
- spec/unit/alf-core/types/test_tuple_computation.rb
|
632
|
-
- spec/unit/alf-core/types/test_tuple_expression.rb
|
633
|
-
- spec/unit/alf-core/types/test_tuple_predicate.rb
|
634
|
-
- spec/unit/alf-csv/input.csv
|
635
|
-
- spec/unit/alf-csv/test_reader.rb
|
636
|
-
- spec/unit/alf-csv/test_renderer.rb
|
637
|
-
- spec/unit/alf-engine/compact/test_set.rb
|
638
|
-
- spec/unit/alf-engine/compact/test_uniq.rb
|
639
|
-
- spec/unit/alf-engine/group/test_hash.rb
|
640
|
-
- spec/unit/alf-engine/join/test_hash.rb
|
641
|
-
- spec/unit/alf-engine/materialize/test_array.rb
|
642
|
-
- spec/unit/alf-engine/materialize/test_hash.rb
|
643
|
-
- spec/unit/alf-engine/quota/test_cesure.rb
|
644
|
-
- spec/unit/alf-engine/rank/test_cesure.rb
|
645
|
-
- spec/unit/alf-engine/semi/test_hash.rb
|
646
|
-
- spec/unit/alf-engine/sort/test_in_memory.rb
|
647
|
-
- spec/unit/alf-engine/summarize/test_cesure.rb
|
648
|
-
- spec/unit/alf-engine/summarize/test_hash.rb
|
649
|
-
- spec/unit/alf-engine/test_aggregate.rb
|
650
|
-
- spec/unit/alf-engine/test_autonum.rb
|
651
|
-
- spec/unit/alf-engine/test_clip.rb
|
652
|
-
- spec/unit/alf-engine/test_coerce.rb
|
653
|
-
- spec/unit/alf-engine/test_compact.rb
|
654
|
-
- spec/unit/alf-engine/test_concat.rb
|
655
|
-
- spec/unit/alf-engine/test_defaults.rb
|
656
|
-
- spec/unit/alf-engine/test_filter.rb
|
657
|
-
- spec/unit/alf-engine/test_generator.rb
|
658
|
-
- spec/unit/alf-engine/test_rename.rb
|
659
|
-
- spec/unit/alf-engine/test_set_attr.rb
|
660
|
-
- spec/unit/alf-engine/test_sort.rb
|
661
|
-
- spec/unit/alf-engine/test_ungroup.rb
|
662
|
-
- spec/unit/alf-engine/test_unwrap.rb
|
663
|
-
- spec/unit/alf-engine/test_wrap.rb
|
664
693
|
- spec/unit/alf-logs/apache_combined.log
|
665
694
|
- spec/unit/alf-logs/postgresql.log
|
666
695
|
- spec/unit/alf-logs/test_reader.rb
|
667
|
-
- spec/
|
668
|
-
- spec/
|
669
|
-
- spec/
|
670
|
-
- spec/
|
671
|
-
- spec/
|
672
|
-
- spec/
|
673
|
-
- spec/
|
674
|
-
- spec/
|
675
|
-
- spec/
|
676
|
-
- spec/
|
677
|
-
- spec/unit/alf-shell/operator/test_coerce.rb
|
678
|
-
- spec/unit/alf-shell/operator/test_compact.rb
|
679
|
-
- spec/unit/alf-shell/operator/test_defaults.rb
|
680
|
-
- spec/unit/alf-shell/operator/test_extend.rb
|
681
|
-
- spec/unit/alf-shell/operator/test_generator.rb
|
682
|
-
- spec/unit/alf-shell/operator/test_group.rb
|
683
|
-
- spec/unit/alf-shell/operator/test_heading.rb
|
684
|
-
- spec/unit/alf-shell/operator/test_intersect.rb
|
685
|
-
- spec/unit/alf-shell/operator/test_join.rb
|
686
|
-
- spec/unit/alf-shell/operator/test_matching.rb
|
687
|
-
- spec/unit/alf-shell/operator/test_minus.rb
|
688
|
-
- spec/unit/alf-shell/operator/test_not_matching.rb
|
689
|
-
- spec/unit/alf-shell/operator/test_project.rb
|
690
|
-
- spec/unit/alf-shell/operator/test_quota.rb
|
691
|
-
- spec/unit/alf-shell/operator/test_rank.rb
|
692
|
-
- spec/unit/alf-shell/operator/test_rename.rb
|
693
|
-
- spec/unit/alf-shell/operator/test_restrict.rb
|
694
|
-
- spec/unit/alf-shell/operator/test_sort.rb
|
695
|
-
- spec/unit/alf-shell/operator/test_summarize.rb
|
696
|
-
- spec/unit/alf-shell/operator/test_ungroup.rb
|
697
|
-
- spec/unit/alf-shell/operator/test_union.rb
|
698
|
-
- spec/unit/alf-shell/operator/test_unwrap.rb
|
699
|
-
- spec/unit/alf-shell/operator/test_wrap.rb
|
700
|
-
- tasks/clean.rake
|
701
|
-
- tasks/debug_mail.rake
|
702
|
-
- tasks/debug_mail.txt
|
703
|
-
- tasks/gem.rake
|
704
|
-
- tasks/gh-pages.rake
|
696
|
+
- spec/regression/relation/test_relation_allbut_all.rb
|
697
|
+
- spec/regression/relation/test_relation_with_date.rb
|
698
|
+
- spec/regression/restrict/test_restrict_with_keywords.rb
|
699
|
+
- spec/regression/alf_file/test___FILE__.rb
|
700
|
+
- spec/regression/alf_file/__FILE__.alf
|
701
|
+
- spec/regression/alf_file/suppliers.rash
|
702
|
+
- spec/regression/heading/test_heading_with_date.rb
|
703
|
+
- spec/regression/lispy/test_compile.rb
|
704
|
+
- spec/regression/logs/apache_combined.log
|
705
|
+
- spec/regression/logs/test_path_attribute.rb
|
705
706
|
- tasks/integration_test.rake
|
707
|
+
- tasks/gh-pages.rake
|
706
708
|
- tasks/regression_test.rake
|
707
|
-
- tasks/
|
709
|
+
- tasks/debug_mail.rake
|
708
710
|
- tasks/yard.rake
|
711
|
+
- tasks/clean.rake
|
712
|
+
- tasks/gem.rake
|
713
|
+
- tasks/unit_test.rake
|
714
|
+
- tasks/debug_mail.txt
|
709
715
|
- Rakefile
|
710
716
|
- alf.gemspec
|
711
717
|
- alf.noespec
|
@@ -730,7 +736,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
730
736
|
version: '0'
|
731
737
|
segments:
|
732
738
|
- 0
|
733
|
-
hash:
|
739
|
+
hash: -257351793
|
734
740
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
735
741
|
none: false
|
736
742
|
requirements:
|
@@ -739,312 +745,314 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
739
745
|
version: '0'
|
740
746
|
requirements: []
|
741
747
|
rubyforge_project:
|
742
|
-
rubygems_version: 1.8.
|
748
|
+
rubygems_version: 1.8.15
|
743
749
|
signing_key:
|
744
750
|
specification_version: 3
|
745
751
|
summary: Relational Algebra at your fingertips
|
746
752
|
test_files:
|
747
|
-
- spec/
|
748
|
-
- spec/
|
749
|
-
- spec/
|
750
|
-
- spec/
|
751
|
-
- spec/integration/
|
752
|
-
- spec/integration/
|
753
|
-
- spec/integration/
|
754
|
-
- spec/integration/lispy/test_tuple.rb
|
755
|
-
- spec/integration/semantics/test_join.alf
|
753
|
+
- spec/spec_helper.rb
|
754
|
+
- spec/shared/a_value.rb
|
755
|
+
- spec/shared/a_valid_type_implementation.rb
|
756
|
+
- spec/shared/an_operator_class.rb
|
757
|
+
- spec/integration/test_shell.rb
|
758
|
+
- spec/integration/test_lispy.rb
|
759
|
+
- spec/integration/semantics/test_rank.alf
|
756
760
|
- spec/integration/semantics/test_minus.alf
|
757
761
|
- spec/integration/semantics/test_project.alf
|
758
|
-
- spec/integration/semantics/
|
759
|
-
- spec/integration/
|
762
|
+
- spec/integration/semantics/test_join.alf
|
763
|
+
- spec/integration/test_semantics.rb
|
764
|
+
- spec/integration/shell/rename/rename_0.stdout
|
765
|
+
- spec/integration/shell/rename/rename_0.cmd
|
766
|
+
- spec/integration/shell/ungroup/ungroup_0.cmd
|
767
|
+
- spec/integration/shell/ungroup/ungroup_0.stdout
|
768
|
+
- spec/integration/shell/help/help_1.cmd
|
769
|
+
- spec/integration/shell/help/help_1.stdout
|
770
|
+
- spec/integration/shell/compact/compact_0.stdout
|
771
|
+
- spec/integration/shell/compact/compact_0.cmd
|
772
|
+
- spec/integration/shell/union/union_0.stdout
|
773
|
+
- spec/integration/shell/union/union_0.cmd
|
774
|
+
- spec/integration/shell/restrict/restrict_0.stdout
|
775
|
+
- spec/integration/shell/restrict/restrict_0.cmd
|
776
|
+
- spec/integration/shell/restrict/restrict_1.cmd
|
777
|
+
- spec/integration/shell/restrict/restrict_1.stdout
|
778
|
+
- spec/integration/shell/extend/extend_0.cmd
|
779
|
+
- spec/integration/shell/extend/extend_0.stdout
|
780
|
+
- spec/integration/shell/join/join_0.stdout
|
781
|
+
- spec/integration/shell/join/join_0.cmd
|
782
|
+
- spec/integration/shell/coerce/coerce_1.cmd
|
783
|
+
- spec/integration/shell/coerce/coerce_1.stdout
|
784
|
+
- spec/integration/shell/quota/quota_0.stdout
|
785
|
+
- spec/integration/shell/quota/quota_0.cmd
|
786
|
+
- spec/integration/shell/wrap/wrap_0.stdout
|
787
|
+
- spec/integration/shell/wrap/wrap_0.cmd
|
788
|
+
- spec/integration/shell/group/group_1.stdout
|
789
|
+
- spec/integration/shell/group/group_1.cmd
|
790
|
+
- spec/integration/shell/group/group_0.stdout
|
791
|
+
- spec/integration/shell/group/group_0.cmd
|
792
|
+
- spec/integration/shell/minus/minus_0.cmd
|
793
|
+
- spec/integration/shell/minus/minus_0.stdout
|
794
|
+
- spec/integration/shell/not-matching/not-matching_0.cmd
|
795
|
+
- spec/integration/shell/not-matching/not-matching_0.stdout
|
760
796
|
- spec/integration/shell/alf/alf_e.cmd
|
761
|
-
- spec/integration/shell/alf/
|
762
|
-
- spec/integration/shell/alf/alf_env.cmd
|
763
|
-
- spec/integration/shell/alf/alf_env.stdout
|
797
|
+
- spec/integration/shell/alf/alf_implicit_exec.stdout
|
764
798
|
- spec/integration/shell/alf/alf_env_sqlite.cmd
|
765
|
-
- spec/integration/shell/alf/
|
766
|
-
- spec/integration/shell/alf/alf_help.cmd
|
799
|
+
- spec/integration/shell/alf/rel.rash
|
767
800
|
- spec/integration/shell/alf/alf_help.stdout
|
768
|
-
- spec/integration/shell/alf/
|
769
|
-
- spec/integration/shell/alf/
|
770
|
-
- spec/integration/shell/alf/
|
771
|
-
- spec/integration/shell/alf/alf_r.cmd
|
801
|
+
- spec/integration/shell/alf/alf_yaml.cmd
|
802
|
+
- spec/integration/shell/alf/alf_version.stdout
|
803
|
+
- spec/integration/shell/alf/alf_env.stdout
|
772
804
|
- spec/integration/shell/alf/alf_r.stdout
|
805
|
+
- spec/integration/shell/alf/alf_env.cmd
|
773
806
|
- spec/integration/shell/alf/alf_version.cmd
|
774
|
-
- spec/integration/shell/alf/
|
775
|
-
- spec/integration/shell/alf/
|
807
|
+
- spec/integration/shell/alf/alf_env_sqlite.stdout
|
808
|
+
- spec/integration/shell/alf/alf_help.cmd
|
809
|
+
- spec/integration/shell/alf/alf.db
|
776
810
|
- spec/integration/shell/alf/alf_yaml.stdout
|
777
|
-
- spec/integration/shell/alf/
|
778
|
-
- spec/integration/shell/
|
779
|
-
- spec/integration/shell/
|
780
|
-
- spec/integration/shell/
|
781
|
-
- spec/integration/shell/
|
782
|
-
- spec/integration/shell/
|
783
|
-
- spec/integration/shell/
|
811
|
+
- spec/integration/shell/alf/alf_e.stdout
|
812
|
+
- spec/integration/shell/alf/alf_implicit_exec.cmd
|
813
|
+
- spec/integration/shell/alf/alf_implicit.alf
|
814
|
+
- spec/integration/shell/alf/alf_r.cmd
|
815
|
+
- spec/integration/shell/generator/generator_1.cmd
|
816
|
+
- spec/integration/shell/generator/generator_2.cmd
|
817
|
+
- spec/integration/shell/generator/generator_3.stdout
|
818
|
+
- spec/integration/shell/generator/generator_1.stdout
|
819
|
+
- spec/integration/shell/generator/generator_2.stdout
|
820
|
+
- spec/integration/shell/generator/generator_3.cmd
|
821
|
+
- spec/integration/shell/unwrap/unwrap_0.cmd
|
822
|
+
- spec/integration/shell/unwrap/unwrap_0.stdout
|
784
823
|
- spec/integration/shell/clip/clip_1.cmd
|
785
824
|
- spec/integration/shell/clip/clip_1.stdout
|
786
|
-
- spec/integration/shell/
|
787
|
-
- spec/integration/shell/
|
788
|
-
- spec/integration/shell/
|
789
|
-
- spec/integration/shell/
|
790
|
-
- spec/integration/shell/
|
791
|
-
- spec/integration/shell/
|
792
|
-
- spec/integration/shell/
|
825
|
+
- spec/integration/shell/clip/clip_0.cmd
|
826
|
+
- spec/integration/shell/clip/clip_0.stdout
|
827
|
+
- spec/integration/shell/project/project_1.stdout
|
828
|
+
- spec/integration/shell/project/project_1.cmd
|
829
|
+
- spec/integration/shell/project/project_0.cmd
|
830
|
+
- spec/integration/shell/project/project_0.stdout
|
831
|
+
- spec/integration/shell/matching/matching_0.stdout
|
832
|
+
- spec/integration/shell/matching/matching_0.cmd
|
793
833
|
- spec/integration/shell/defaults/defaults_1.stdout
|
834
|
+
- spec/integration/shell/defaults/defaults_0.stdout
|
794
835
|
- spec/integration/shell/defaults/defaults_2.cmd
|
795
836
|
- spec/integration/shell/defaults/defaults_2.stdout
|
796
|
-
- spec/integration/shell/
|
797
|
-
- spec/integration/shell/
|
798
|
-
- spec/integration/shell/generator/generator_1.cmd
|
799
|
-
- spec/integration/shell/generator/generator_1.stdout
|
800
|
-
- spec/integration/shell/generator/generator_2.cmd
|
801
|
-
- spec/integration/shell/generator/generator_2.stdout
|
802
|
-
- spec/integration/shell/generator/generator_3.cmd
|
803
|
-
- spec/integration/shell/generator/generator_3.stdout
|
804
|
-
- spec/integration/shell/group/group_0.cmd
|
805
|
-
- spec/integration/shell/group/group_0.stdout
|
806
|
-
- spec/integration/shell/group/group_1.cmd
|
807
|
-
- spec/integration/shell/group/group_1.stdout
|
808
|
-
- spec/integration/shell/help/help_1.cmd
|
809
|
-
- spec/integration/shell/help/help_1.stdout
|
837
|
+
- spec/integration/shell/defaults/defaults_1.cmd
|
838
|
+
- spec/integration/shell/defaults/defaults_0.cmd
|
810
839
|
- spec/integration/shell/intersect/intersect_0.cmd
|
811
840
|
- spec/integration/shell/intersect/intersect_0.stdout
|
812
|
-
- spec/integration/shell/join/join_0.cmd
|
813
|
-
- spec/integration/shell/join/join_0.stdout
|
814
|
-
- spec/integration/shell/matching/matching_0.cmd
|
815
|
-
- spec/integration/shell/matching/matching_0.stdout
|
816
|
-
- spec/integration/shell/minus/minus_0.cmd
|
817
|
-
- spec/integration/shell/minus/minus_0.stdout
|
818
|
-
- spec/integration/shell/not-matching/not-matching_0.cmd
|
819
|
-
- spec/integration/shell/not-matching/not-matching_0.stdout
|
820
|
-
- spec/integration/shell/project/project_0.cmd
|
821
|
-
- spec/integration/shell/project/project_0.stdout
|
822
|
-
- spec/integration/shell/project/project_1.cmd
|
823
|
-
- spec/integration/shell/project/project_1.stdout
|
824
|
-
- spec/integration/shell/quota/quota_0.cmd
|
825
|
-
- spec/integration/shell/quota/quota_0.stdout
|
826
|
-
- spec/integration/shell/rank/rank_1.cmd
|
827
|
-
- spec/integration/shell/rank/rank_1.stdout
|
828
|
-
- spec/integration/shell/rank/rank_2.cmd
|
829
|
-
- spec/integration/shell/rank/rank_2.stdout
|
830
|
-
- spec/integration/shell/rank/rank_3.cmd
|
831
|
-
- spec/integration/shell/rank/rank_3.stdout
|
832
|
-
- spec/integration/shell/rank/rank_4.cmd
|
833
|
-
- spec/integration/shell/rank/rank_4.stdout
|
834
|
-
- spec/integration/shell/rank/rank_5.cmd
|
835
|
-
- spec/integration/shell/rank/rank_5.stdout
|
836
|
-
- spec/integration/shell/rename/rename_0.cmd
|
837
|
-
- spec/integration/shell/rename/rename_0.stdout
|
838
|
-
- spec/integration/shell/restrict/restrict_0.cmd
|
839
|
-
- spec/integration/shell/restrict/restrict_0.stdout
|
840
|
-
- spec/integration/shell/restrict/restrict_1.cmd
|
841
|
-
- spec/integration/shell/restrict/restrict_1.stdout
|
842
|
-
- spec/integration/shell/show/show_base.cmd
|
843
841
|
- spec/integration/shell/show/show_base.stdout
|
842
|
+
- spec/integration/shell/show/show_rash_pretty.cmd
|
843
|
+
- spec/integration/shell/show/show_yaml.cmd
|
844
|
+
- spec/integration/shell/show/show_rash_pretty.stdout
|
845
|
+
- spec/integration/shell/show/show_ff.cmd
|
846
|
+
- spec/integration/shell/show/show_yaml.stdout
|
847
|
+
- spec/integration/shell/show/show_rash.cmd
|
844
848
|
- spec/integration/shell/show/show_base_sort_1.cmd
|
845
|
-
- spec/integration/shell/show/
|
849
|
+
- spec/integration/shell/show/show_conflictual.stdout
|
846
850
|
- spec/integration/shell/show/show_base_sort_2.cmd
|
851
|
+
- spec/integration/shell/show/show_rash.stdout
|
852
|
+
- spec/integration/shell/show/show_base.cmd
|
847
853
|
- spec/integration/shell/show/show_base_sort_2.stdout
|
848
|
-
- spec/integration/shell/show/show_conflictual.cmd
|
849
|
-
- spec/integration/shell/show/show_conflictual.stdout
|
850
854
|
- spec/integration/shell/show/show_csv.cmd
|
855
|
+
- spec/integration/shell/show/show_conflictual.cmd
|
851
856
|
- spec/integration/shell/show/show_csv.stdout
|
852
|
-
- spec/integration/shell/show/
|
857
|
+
- spec/integration/shell/show/show_base_sort_1.stdout
|
853
858
|
- spec/integration/shell/show/show_ff.stdout
|
854
|
-
- spec/integration/shell/
|
855
|
-
- spec/integration/shell/
|
856
|
-
- spec/integration/shell/
|
857
|
-
- spec/integration/shell/
|
858
|
-
- spec/integration/shell/
|
859
|
-
- spec/integration/shell/
|
860
|
-
- spec/integration/shell/
|
859
|
+
- spec/integration/shell/rank/rank_5.stdout
|
860
|
+
- spec/integration/shell/rank/rank_2.cmd
|
861
|
+
- spec/integration/shell/rank/rank_5.cmd
|
862
|
+
- spec/integration/shell/rank/rank_1.stdout
|
863
|
+
- spec/integration/shell/rank/rank_3.cmd
|
864
|
+
- spec/integration/shell/rank/rank_3.stdout
|
865
|
+
- spec/integration/shell/rank/rank_1.cmd
|
866
|
+
- spec/integration/shell/rank/rank_2.stdout
|
867
|
+
- spec/integration/shell/rank/rank_4.cmd
|
868
|
+
- spec/integration/shell/rank/rank_4.stdout
|
861
869
|
- spec/integration/shell/sort/sort_0.stdout
|
862
|
-
- spec/integration/shell/sort/sort_1.cmd
|
863
|
-
- spec/integration/shell/sort/sort_1.stdout
|
864
870
|
- spec/integration/shell/sort/sort_2.cmd
|
865
|
-
- spec/integration/shell/sort/sort_2.stdout
|
866
871
|
- spec/integration/shell/sort/sort_3.cmd
|
867
872
|
- spec/integration/shell/sort/sort_3.stdout
|
868
|
-
- spec/integration/shell/
|
873
|
+
- spec/integration/shell/sort/sort_1.stdout
|
874
|
+
- spec/integration/shell/sort/sort_2.stdout
|
875
|
+
- spec/integration/shell/sort/sort_0.cmd
|
876
|
+
- spec/integration/shell/sort/sort_1.cmd
|
877
|
+
- spec/integration/shell/autonum/autonum_0.stdout
|
878
|
+
- spec/integration/shell/autonum/autonum_1.stdout
|
879
|
+
- spec/integration/shell/autonum/autonum_0.cmd
|
880
|
+
- spec/integration/shell/autonum/autonum_1.cmd
|
869
881
|
- spec/integration/shell/summarize/summarize_0.stdout
|
870
|
-
- spec/integration/shell/
|
871
|
-
- spec/integration/shell/ungroup/ungroup_0.stdout
|
872
|
-
- spec/integration/shell/union/union_0.cmd
|
873
|
-
- spec/integration/shell/union/union_0.stdout
|
874
|
-
- spec/integration/shell/unwrap/unwrap_0.cmd
|
875
|
-
- spec/integration/shell/unwrap/unwrap_0.stdout
|
876
|
-
- spec/integration/shell/wrap/wrap_0.cmd
|
877
|
-
- spec/integration/shell/wrap/wrap_0.stdout
|
878
|
-
- spec/integration/test_alf.rb
|
882
|
+
- spec/integration/shell/summarize/summarize_0.cmd
|
879
883
|
- spec/integration/test_examples.rb
|
880
|
-
- spec/integration/
|
881
|
-
- spec/integration/
|
882
|
-
- spec/integration/
|
883
|
-
- spec/
|
884
|
-
- spec/
|
885
|
-
- spec/
|
886
|
-
- spec/
|
887
|
-
- spec/
|
888
|
-
- spec/
|
889
|
-
- spec/
|
890
|
-
- spec/
|
891
|
-
- spec/
|
892
|
-
- spec/
|
893
|
-
- spec/
|
894
|
-
- spec/
|
895
|
-
- spec/
|
896
|
-
- spec/
|
884
|
+
- spec/integration/__database__/supplies.rash
|
885
|
+
- spec/integration/__database__/group.alf
|
886
|
+
- spec/integration/__database__/parts.rash
|
887
|
+
- spec/integration/__database__/suppliers.rash
|
888
|
+
- spec/integration/__database__/suppliers_csv.csv
|
889
|
+
- spec/integration/ext/test_relation.rb
|
890
|
+
- spec/integration/lispy/test_relation.rb
|
891
|
+
- spec/integration/lispy/test_tuple.rb
|
892
|
+
- spec/integration/lispy/test_run.rb
|
893
|
+
- spec/integration/test_alf.rb
|
894
|
+
- spec/unit/alf-csv/input.csv
|
895
|
+
- spec/unit/alf-csv/test_renderer.rb
|
896
|
+
- spec/unit/alf-csv/test_reader.rb
|
897
|
+
- spec/unit/alf-shell/doc_manager/dynamic.md
|
898
|
+
- spec/unit/alf-shell/doc_manager/example_1.txt
|
899
|
+
- spec/unit/alf-shell/doc_manager/example.md
|
900
|
+
- spec/unit/alf-shell/doc_manager/static.md
|
901
|
+
- spec/unit/alf-shell/doc_manager/test_call.rb
|
902
|
+
- spec/unit/alf-shell/main/test_class_methods.rb
|
903
|
+
- spec/unit/alf-shell/operator/test_join.rb
|
904
|
+
- spec/unit/alf-shell/operator/test_matching.rb
|
905
|
+
- spec/unit/alf-shell/operator/test_defaults.rb
|
906
|
+
- spec/unit/alf-shell/operator/test_not_matching.rb
|
907
|
+
- spec/unit/alf-shell/operator/test_extend.rb
|
908
|
+
- spec/unit/alf-shell/operator/test_sort.rb
|
909
|
+
- spec/unit/alf-shell/operator/test_intersect.rb
|
910
|
+
- spec/unit/alf-shell/operator/test_rank.rb
|
911
|
+
- spec/unit/alf-shell/operator/test_summarize.rb
|
912
|
+
- spec/unit/alf-shell/operator/test_rename.rb
|
913
|
+
- spec/unit/alf-shell/operator/test_generator.rb
|
914
|
+
- spec/unit/alf-shell/operator/test_heading.rb
|
915
|
+
- spec/unit/alf-shell/operator/test_wrap.rb
|
916
|
+
- spec/unit/alf-shell/operator/test_coerce.rb
|
917
|
+
- spec/unit/alf-shell/operator/test_restrict.rb
|
918
|
+
- spec/unit/alf-shell/operator/test_minus.rb
|
919
|
+
- spec/unit/alf-shell/operator/test_quota.rb
|
920
|
+
- spec/unit/alf-shell/operator/test_clip.rb
|
921
|
+
- spec/unit/alf-shell/operator/test_autonum.rb
|
922
|
+
- spec/unit/alf-shell/operator/test_unwrap.rb
|
923
|
+
- spec/unit/alf-shell/operator/test_group.rb
|
924
|
+
- spec/unit/alf-shell/operator/test_compact.rb
|
925
|
+
- spec/unit/alf-shell/operator/test_union.rb
|
926
|
+
- spec/unit/alf-shell/operator/test_project.rb
|
927
|
+
- spec/unit/alf-shell/operator/test_ungroup.rb
|
928
|
+
- spec/unit/alf-sequel/test_environment.rb
|
929
|
+
- spec/unit/alf-sequel/alf.db
|
930
|
+
- spec/unit/alf-engine/test_defaults.rb
|
931
|
+
- spec/unit/alf-engine/compact/test_set.rb
|
932
|
+
- spec/unit/alf-engine/compact/test_uniq.rb
|
933
|
+
- spec/unit/alf-engine/test_sort.rb
|
934
|
+
- spec/unit/alf-engine/semi/test_hash.rb
|
935
|
+
- spec/unit/alf-engine/test_filter.rb
|
936
|
+
- spec/unit/alf-engine/test_rename.rb
|
937
|
+
- spec/unit/alf-engine/join/test_hash.rb
|
938
|
+
- spec/unit/alf-engine/test_generator.rb
|
939
|
+
- spec/unit/alf-engine/test_concat.rb
|
940
|
+
- spec/unit/alf-engine/quota/test_cesure.rb
|
941
|
+
- spec/unit/alf-engine/test_wrap.rb
|
942
|
+
- spec/unit/alf-engine/test_set_attr.rb
|
943
|
+
- spec/unit/alf-engine/test_coerce.rb
|
944
|
+
- spec/unit/alf-engine/group/test_hash.rb
|
945
|
+
- spec/unit/alf-engine/test_clip.rb
|
946
|
+
- spec/unit/alf-engine/test_autonum.rb
|
947
|
+
- spec/unit/alf-engine/materialize/test_array.rb
|
948
|
+
- spec/unit/alf-engine/materialize/test_hash.rb
|
949
|
+
- spec/unit/alf-engine/test_unwrap.rb
|
950
|
+
- spec/unit/alf-engine/rank/test_cesure.rb
|
951
|
+
- spec/unit/alf-engine/test_aggregate.rb
|
952
|
+
- spec/unit/alf-engine/test_compact.rb
|
953
|
+
- spec/unit/alf-engine/sort/test_in_memory.rb
|
954
|
+
- spec/unit/alf-engine/summarize/test_hash.rb
|
955
|
+
- spec/unit/alf-engine/summarize/test_cesure.rb
|
956
|
+
- spec/unit/alf-engine/test_ungroup.rb
|
957
|
+
- spec/unit/alf-core/test_operator.rb
|
958
|
+
- spec/unit/alf-core/test_relation.rb
|
959
|
+
- spec/unit/alf-core/relation/test_relops.rb
|
960
|
+
- spec/unit/alf-core/relation/test_inspect.rb
|
961
|
+
- spec/unit/alf-core/relation/test_coerce.rb
|
962
|
+
- spec/unit/alf-core/relation/test_to_a.rb
|
963
|
+
- spec/unit/alf-core/reader/test_looks_a_path.rb
|
964
|
+
- spec/unit/alf-core/reader/input.rb
|
965
|
+
- spec/unit/alf-core/reader/test_rash.rb
|
966
|
+
- spec/unit/alf-core/reader/test_initialize.rb
|
967
|
+
- spec/unit/alf-core/reader/test_alf_file.rb
|
968
|
+
- spec/unit/alf-core/test_aggregator.rb
|
969
|
+
- spec/unit/alf-core/aggregator/test_sum.rb
|
970
|
+
- spec/unit/alf-core/aggregator/test_min.rb
|
971
|
+
- spec/unit/alf-core/aggregator/test_concat.rb
|
897
972
|
- spec/unit/alf-core/aggregator/test_avg.rb
|
973
|
+
- spec/unit/alf-core/aggregator/test_variance.rb
|
974
|
+
- spec/unit/alf-core/aggregator/test_stddev.rb
|
898
975
|
- spec/unit/alf-core/aggregator/test_collect.rb
|
899
|
-
- spec/unit/alf-core/aggregator/test_concat.rb
|
900
976
|
- spec/unit/alf-core/aggregator/test_count.rb
|
901
977
|
- spec/unit/alf-core/aggregator/test_max.rb
|
902
|
-
- spec/unit/alf-core/aggregator/test_min.rb
|
903
|
-
- spec/unit/alf-core/aggregator/test_stddev.rb
|
904
|
-
- spec/unit/alf-core/aggregator/test_sum.rb
|
905
|
-
- spec/unit/alf-core/aggregator/test_variance.rb
|
906
|
-
- spec/unit/alf-core/assumptions/test_file.rb
|
907
|
-
- spec/unit/alf-core/assumptions/test_instance_eval.rb
|
908
|
-
- spec/unit/alf-core/assumptions/test_scoping.rb
|
909
|
-
- spec/unit/alf-core/assumptions/test_set.rb
|
910
978
|
- spec/unit/alf-core/environment/examples/suppliers.rash
|
911
979
|
- spec/unit/alf-core/environment/test_folder.rb
|
912
|
-
- spec/unit/alf-core/
|
913
|
-
- spec/unit/alf-core/
|
914
|
-
- spec/unit/alf-core/
|
915
|
-
- spec/unit/alf-core/
|
916
|
-
- spec/unit/alf-core/
|
917
|
-
- spec/unit/alf-core/
|
918
|
-
- spec/unit/alf-core/
|
980
|
+
- spec/unit/alf-core/types/test_ordering.rb
|
981
|
+
- spec/unit/alf-core/types/test_tuple_computation.rb
|
982
|
+
- spec/unit/alf-core/types/test_tuple_expression.rb
|
983
|
+
- spec/unit/alf-core/types/test_boolean.rb
|
984
|
+
- spec/unit/alf-core/types/test_renaming.rb
|
985
|
+
- spec/unit/alf-core/types/test_summarization.rb
|
986
|
+
- spec/unit/alf-core/types/test_heading.rb
|
987
|
+
- spec/unit/alf-core/types/test_class_methods.rb
|
988
|
+
- spec/unit/alf-core/types/test_attr_list.rb
|
989
|
+
- spec/unit/alf-core/types/test_attr_name.rb
|
990
|
+
- spec/unit/alf-core/types/test_tuple_predicate.rb
|
991
|
+
- spec/unit/alf-core/types/test_size.rb
|
992
|
+
- spec/unit/alf-core/tools/test_coalesce.rb
|
993
|
+
- spec/unit/alf-core/tools/test_class_name.rb
|
994
|
+
- spec/unit/alf-core/tools/test_to_relation.rb
|
995
|
+
- spec/unit/alf-core/tools/test_varargs.rb
|
996
|
+
- spec/unit/alf-core/tools/test_to_ruby_literal.rb
|
997
|
+
- spec/unit/alf-core/tools/test_ruby_case.rb
|
998
|
+
- spec/unit/alf-core/tools/test_coerce.rb
|
999
|
+
- spec/unit/alf-core/tools/test_to_lispy.rb
|
1000
|
+
- spec/unit/alf-core/tools/test_tuple_heading.rb
|
1001
|
+
- spec/unit/alf-core/tools/test_tuple_handle.rb
|
1002
|
+
- spec/unit/alf-core/text/test_cell.rb
|
1003
|
+
- spec/unit/alf-core/text/test_table.rb
|
1004
|
+
- spec/unit/alf-core/text/test_row.rb
|
1005
|
+
- spec/unit/alf-core/test_environment.rb
|
1006
|
+
- spec/unit/alf-core/renderer/test_initialize.rb
|
1007
|
+
- spec/unit/alf-core/assumptions/test_scoping.rb
|
1008
|
+
- spec/unit/alf-core/assumptions/test_set.rb
|
1009
|
+
- spec/unit/alf-core/assumptions/test_instance_eval.rb
|
1010
|
+
- spec/unit/alf-core/assumptions/test_file.rb
|
1011
|
+
- spec/unit/alf-core/test_renderer.rb
|
1012
|
+
- spec/unit/alf-core/operator/test_non_relational.rb
|
1013
|
+
- spec/unit/alf-core/operator/relational/test_join.rb
|
919
1014
|
- spec/unit/alf-core/operator/relational/test_extend.rb
|
920
|
-
- spec/unit/alf-core/operator/relational/test_group.rb
|
921
|
-
- spec/unit/alf-core/operator/relational/test_heading.rb
|
922
1015
|
- spec/unit/alf-core/operator/relational/test_intersect.rb
|
923
|
-
- spec/unit/alf-core/operator/relational/test_join.rb
|
924
|
-
- spec/unit/alf-core/operator/relational/test_minus.rb
|
925
|
-
- spec/unit/alf-core/operator/relational/test_project.rb
|
926
|
-
- spec/unit/alf-core/operator/relational/test_quota.rb
|
927
1016
|
- spec/unit/alf-core/operator/relational/test_rank.rb
|
1017
|
+
- spec/unit/alf-core/operator/relational/test_summarize.rb
|
928
1018
|
- spec/unit/alf-core/operator/relational/test_rename.rb
|
1019
|
+
- spec/unit/alf-core/operator/relational/test_heading.rb
|
1020
|
+
- spec/unit/alf-core/operator/relational/test_wrap.rb
|
929
1021
|
- spec/unit/alf-core/operator/relational/test_restrict.rb
|
930
|
-
- spec/unit/alf-core/operator/relational/
|
931
|
-
- spec/unit/alf-core/operator/relational/
|
932
|
-
- spec/unit/alf-core/operator/relational/test_union.rb
|
1022
|
+
- spec/unit/alf-core/operator/relational/test_minus.rb
|
1023
|
+
- spec/unit/alf-core/operator/relational/test_quota.rb
|
933
1024
|
- spec/unit/alf-core/operator/relational/test_unwrap.rb
|
934
|
-
- spec/unit/alf-core/operator/relational/
|
935
|
-
- spec/unit/alf-core/operator/
|
936
|
-
- spec/unit/alf-core/operator/
|
937
|
-
- spec/unit/alf-core/operator/
|
1025
|
+
- spec/unit/alf-core/operator/relational/test_group.rb
|
1026
|
+
- spec/unit/alf-core/operator/relational/test_union.rb
|
1027
|
+
- spec/unit/alf-core/operator/relational/test_project.rb
|
1028
|
+
- spec/unit/alf-core/operator/relational/test_ungroup.rb
|
1029
|
+
- spec/unit/alf-core/operator/non_relational/test_defaults.rb
|
1030
|
+
- spec/unit/alf-core/operator/non_relational/test_sort.rb
|
1031
|
+
- spec/unit/alf-core/operator/non_relational/test_generator.rb
|
1032
|
+
- spec/unit/alf-core/operator/non_relational/test_coerce.rb
|
1033
|
+
- spec/unit/alf-core/operator/non_relational/test_clip.rb
|
1034
|
+
- spec/unit/alf-core/operator/non_relational/test_autonum.rb
|
1035
|
+
- spec/unit/alf-core/operator/non_relational/test_compact.rb
|
938
1036
|
- spec/unit/alf-core/operator/signature/test_install.rb
|
939
|
-
- spec/unit/alf-core/operator/signature/test_option_parser.rb
|
940
1037
|
- spec/unit/alf-core/operator/signature/test_parse_args.rb
|
1038
|
+
- spec/unit/alf-core/operator/signature/test_initialize.rb
|
1039
|
+
- spec/unit/alf-core/operator/signature/test_option_parser.rb
|
941
1040
|
- spec/unit/alf-core/operator/signature/test_to_lispy.rb
|
1041
|
+
- spec/unit/alf-core/operator/signature/test_argv2args.rb
|
942
1042
|
- spec/unit/alf-core/operator/signature/test_to_shell.rb
|
943
|
-
- spec/unit/alf-core/operator/
|
1043
|
+
- spec/unit/alf-core/operator/signature/test_collect_on.rb
|
944
1044
|
- spec/unit/alf-core/operator/test_relational.rb
|
945
|
-
- spec/unit/alf-core/reader/input.rb
|
946
|
-
- spec/unit/alf-core/reader/test_alf_file.rb
|
947
|
-
- spec/unit/alf-core/reader/test_initialize.rb
|
948
|
-
- spec/unit/alf-core/reader/test_looks_a_path.rb
|
949
|
-
- spec/unit/alf-core/reader/test_rash.rb
|
950
|
-
- spec/unit/alf-core/relation/test_coerce.rb
|
951
|
-
- spec/unit/alf-core/relation/test_inspect.rb
|
952
|
-
- spec/unit/alf-core/relation/test_relops.rb
|
953
|
-
- spec/unit/alf-core/relation/test_to_a.rb
|
954
|
-
- spec/unit/alf-core/renderer/test_initialize.rb
|
955
|
-
- spec/unit/alf-core/test_aggregator.rb
|
956
|
-
- spec/unit/alf-core/test_environment.rb
|
957
|
-
- spec/unit/alf-core/test_operator.rb
|
958
1045
|
- spec/unit/alf-core/test_reader.rb
|
959
|
-
- spec/unit/alf-core/test_relation.rb
|
960
|
-
- spec/unit/alf-core/test_renderer.rb
|
961
|
-
- spec/unit/alf-core/text/test_cell.rb
|
962
|
-
- spec/unit/alf-core/text/test_row.rb
|
963
|
-
- spec/unit/alf-core/text/test_table.rb
|
964
|
-
- spec/unit/alf-core/tools/test_class_name.rb
|
965
|
-
- spec/unit/alf-core/tools/test_coalesce.rb
|
966
|
-
- spec/unit/alf-core/tools/test_coerce.rb
|
967
|
-
- spec/unit/alf-core/tools/test_ruby_case.rb
|
968
|
-
- spec/unit/alf-core/tools/test_to_lispy.rb
|
969
|
-
- spec/unit/alf-core/tools/test_to_ruby_literal.rb
|
970
|
-
- spec/unit/alf-core/tools/test_tuple_handle.rb
|
971
|
-
- spec/unit/alf-core/tools/test_tuple_heading.rb
|
972
|
-
- spec/unit/alf-core/tools/test_varargs.rb
|
973
|
-
- spec/unit/alf-core/types/test_attr_list.rb
|
974
|
-
- spec/unit/alf-core/types/test_attr_name.rb
|
975
|
-
- spec/unit/alf-core/types/test_boolean.rb
|
976
|
-
- spec/unit/alf-core/types/test_class_methods.rb
|
977
|
-
- spec/unit/alf-core/types/test_heading.rb
|
978
|
-
- spec/unit/alf-core/types/test_ordering.rb
|
979
|
-
- spec/unit/alf-core/types/test_renaming.rb
|
980
|
-
- spec/unit/alf-core/types/test_size.rb
|
981
|
-
- spec/unit/alf-core/types/test_summarization.rb
|
982
|
-
- spec/unit/alf-core/types/test_tuple_computation.rb
|
983
|
-
- spec/unit/alf-core/types/test_tuple_expression.rb
|
984
|
-
- spec/unit/alf-core/types/test_tuple_predicate.rb
|
985
|
-
- spec/unit/alf-csv/input.csv
|
986
|
-
- spec/unit/alf-csv/test_reader.rb
|
987
|
-
- spec/unit/alf-csv/test_renderer.rb
|
988
|
-
- spec/unit/alf-engine/compact/test_set.rb
|
989
|
-
- spec/unit/alf-engine/compact/test_uniq.rb
|
990
|
-
- spec/unit/alf-engine/group/test_hash.rb
|
991
|
-
- spec/unit/alf-engine/join/test_hash.rb
|
992
|
-
- spec/unit/alf-engine/materialize/test_array.rb
|
993
|
-
- spec/unit/alf-engine/materialize/test_hash.rb
|
994
|
-
- spec/unit/alf-engine/quota/test_cesure.rb
|
995
|
-
- spec/unit/alf-engine/rank/test_cesure.rb
|
996
|
-
- spec/unit/alf-engine/semi/test_hash.rb
|
997
|
-
- spec/unit/alf-engine/sort/test_in_memory.rb
|
998
|
-
- spec/unit/alf-engine/summarize/test_cesure.rb
|
999
|
-
- spec/unit/alf-engine/summarize/test_hash.rb
|
1000
|
-
- spec/unit/alf-engine/test_aggregate.rb
|
1001
|
-
- spec/unit/alf-engine/test_autonum.rb
|
1002
|
-
- spec/unit/alf-engine/test_clip.rb
|
1003
|
-
- spec/unit/alf-engine/test_coerce.rb
|
1004
|
-
- spec/unit/alf-engine/test_compact.rb
|
1005
|
-
- spec/unit/alf-engine/test_concat.rb
|
1006
|
-
- spec/unit/alf-engine/test_defaults.rb
|
1007
|
-
- spec/unit/alf-engine/test_filter.rb
|
1008
|
-
- spec/unit/alf-engine/test_generator.rb
|
1009
|
-
- spec/unit/alf-engine/test_rename.rb
|
1010
|
-
- spec/unit/alf-engine/test_set_attr.rb
|
1011
|
-
- spec/unit/alf-engine/test_sort.rb
|
1012
|
-
- spec/unit/alf-engine/test_ungroup.rb
|
1013
|
-
- spec/unit/alf-engine/test_unwrap.rb
|
1014
|
-
- spec/unit/alf-engine/test_wrap.rb
|
1015
1046
|
- spec/unit/alf-logs/apache_combined.log
|
1016
1047
|
- spec/unit/alf-logs/postgresql.log
|
1017
1048
|
- spec/unit/alf-logs/test_reader.rb
|
1018
|
-
- spec/
|
1019
|
-
- spec/
|
1020
|
-
- spec/
|
1021
|
-
- spec/
|
1022
|
-
- spec/
|
1023
|
-
- spec/
|
1024
|
-
- spec/
|
1025
|
-
- spec/
|
1026
|
-
- spec/
|
1027
|
-
- spec/
|
1028
|
-
- spec/unit/alf-shell/operator/test_coerce.rb
|
1029
|
-
- spec/unit/alf-shell/operator/test_compact.rb
|
1030
|
-
- spec/unit/alf-shell/operator/test_defaults.rb
|
1031
|
-
- spec/unit/alf-shell/operator/test_extend.rb
|
1032
|
-
- spec/unit/alf-shell/operator/test_generator.rb
|
1033
|
-
- spec/unit/alf-shell/operator/test_group.rb
|
1034
|
-
- spec/unit/alf-shell/operator/test_heading.rb
|
1035
|
-
- spec/unit/alf-shell/operator/test_intersect.rb
|
1036
|
-
- spec/unit/alf-shell/operator/test_join.rb
|
1037
|
-
- spec/unit/alf-shell/operator/test_matching.rb
|
1038
|
-
- spec/unit/alf-shell/operator/test_minus.rb
|
1039
|
-
- spec/unit/alf-shell/operator/test_not_matching.rb
|
1040
|
-
- spec/unit/alf-shell/operator/test_project.rb
|
1041
|
-
- spec/unit/alf-shell/operator/test_quota.rb
|
1042
|
-
- spec/unit/alf-shell/operator/test_rank.rb
|
1043
|
-
- spec/unit/alf-shell/operator/test_rename.rb
|
1044
|
-
- spec/unit/alf-shell/operator/test_restrict.rb
|
1045
|
-
- spec/unit/alf-shell/operator/test_sort.rb
|
1046
|
-
- spec/unit/alf-shell/operator/test_summarize.rb
|
1047
|
-
- spec/unit/alf-shell/operator/test_ungroup.rb
|
1048
|
-
- spec/unit/alf-shell/operator/test_union.rb
|
1049
|
-
- spec/unit/alf-shell/operator/test_unwrap.rb
|
1050
|
-
- spec/unit/alf-shell/operator/test_wrap.rb
|
1049
|
+
- spec/regression/relation/test_relation_allbut_all.rb
|
1050
|
+
- spec/regression/relation/test_relation_with_date.rb
|
1051
|
+
- spec/regression/restrict/test_restrict_with_keywords.rb
|
1052
|
+
- spec/regression/alf_file/test___FILE__.rb
|
1053
|
+
- spec/regression/alf_file/__FILE__.alf
|
1054
|
+
- spec/regression/alf_file/suppliers.rash
|
1055
|
+
- spec/regression/heading/test_heading_with_date.rb
|
1056
|
+
- spec/regression/lispy/test_compile.rb
|
1057
|
+
- spec/regression/logs/apache_combined.log
|
1058
|
+
- spec/regression/logs/test_path_attribute.rb
|