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