tap 0.11.1 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
- data/History +35 -1
- data/MIT-LICENSE +1 -1
- data/README +16 -15
- data/bin/tap +1 -1
- data/cmd/console.rb +4 -3
- data/cmd/manifest.rb +2 -2
- data/cmd/run.rb +12 -15
- data/doc/Class Reference +120 -117
- data/doc/Command Reference +27 -27
- data/doc/Syntax Reference +55 -111
- data/doc/Tutorial +69 -26
- data/lib/tap.rb +3 -8
- data/lib/tap/app.rb +122 -146
- data/lib/tap/constants.rb +2 -2
- data/lib/tap/env.rb +178 -252
- data/lib/tap/exe.rb +67 -30
- data/lib/tap/file_task.rb +224 -411
- data/lib/tap/generator/arguments.rb +13 -0
- data/lib/tap/generator/base.rb +112 -30
- data/lib/tap/generator/destroy.rb +36 -13
- data/lib/tap/generator/generate.rb +69 -48
- data/lib/tap/generator/generators/command/templates/command.erb +3 -3
- data/lib/tap/generator/generators/config/config_generator.rb +82 -10
- data/lib/tap/generator/generators/generator/generator_generator.rb +16 -6
- data/lib/tap/generator/generators/generator/templates/task.erb +2 -2
- data/lib/tap/generator/generators/generator/templates/test.erb +26 -0
- data/lib/tap/generator/generators/root/root_generator.rb +24 -13
- data/lib/tap/generator/generators/root/templates/Rakefile +4 -4
- data/lib/tap/generator/generators/root/templates/{tapfile → Rapfile} +6 -6
- data/lib/tap/generator/generators/root/templates/gemspec +0 -1
- data/lib/tap/generator/generators/task/task_generator.rb +3 -3
- data/lib/tap/generator/generators/task/templates/test.erb +1 -1
- data/lib/tap/generator/manifest.rb +7 -1
- data/lib/tap/generator/preview.rb +76 -0
- data/lib/tap/root.rb +222 -156
- data/lib/tap/spec.rb +41 -0
- data/lib/tap/support/aggregator.rb +25 -28
- data/lib/tap/support/audit.rb +278 -357
- data/lib/tap/support/constant.rb +2 -1
- data/lib/tap/support/constant_manifest.rb +28 -25
- data/lib/tap/support/dependency.rb +1 -1
- data/lib/tap/support/executable.rb +52 -183
- data/lib/tap/support/executable_queue.rb +50 -20
- data/lib/tap/support/gems.rb +1 -1
- data/lib/tap/support/intern.rb +0 -6
- data/lib/tap/support/join.rb +49 -83
- data/lib/tap/support/joins.rb +0 -3
- data/lib/tap/support/joins/switch.rb +13 -11
- data/lib/tap/support/joins/sync_merge.rb +25 -50
- data/lib/tap/support/manifest.rb +1 -0
- data/lib/tap/support/node.rb +140 -20
- data/lib/tap/support/parser.rb +56 -42
- data/lib/tap/support/schema.rb +183 -157
- data/lib/tap/support/templater.rb +9 -1
- data/lib/tap/support/versions.rb +39 -0
- data/lib/tap/task.rb +150 -177
- data/lib/tap/tasks/dump.rb +4 -4
- data/lib/tap/tasks/load.rb +29 -29
- data/lib/tap/test.rb +66 -53
- data/lib/tap/test/env_vars.rb +3 -3
- data/lib/tap/test/extensions.rb +11 -17
- data/lib/tap/test/file_test.rb +74 -132
- data/lib/tap/test/file_test_class.rb +4 -1
- data/lib/tap/test/regexp_escape.rb +2 -2
- data/lib/tap/test/script_test.rb +2 -2
- data/lib/tap/test/subset_test.rb +6 -6
- data/lib/tap/test/tap_test.rb +28 -154
- metadata +30 -51
- data/bin/rap +0 -118
- data/cgi/run.rb +0 -97
- data/lib/tap/declarations.rb +0 -229
- data/lib/tap/generator/generators/config/templates/doc.erb +0 -12
- data/lib/tap/generator/generators/config/templates/nodoc.erb +0 -8
- data/lib/tap/generator/generators/file_task/file_task_generator.rb +0 -27
- data/lib/tap/generator/generators/file_task/templates/file.txt +0 -11
- data/lib/tap/generator/generators/file_task/templates/result.yml +0 -6
- data/lib/tap/generator/generators/file_task/templates/task.erb +0 -33
- data/lib/tap/generator/generators/file_task/templates/test.erb +0 -29
- data/lib/tap/generator/generators/root/templates/test/tap_test_suite.rb +0 -5
- data/lib/tap/patches/optparse/summarize.rb +0 -62
- data/lib/tap/support/assignments.rb +0 -173
- data/lib/tap/support/class_configuration.rb +0 -182
- data/lib/tap/support/combinator.rb +0 -125
- data/lib/tap/support/configurable.rb +0 -113
- data/lib/tap/support/configurable_class.rb +0 -271
- data/lib/tap/support/configuration.rb +0 -170
- data/lib/tap/support/gems/rake.rb +0 -111
- data/lib/tap/support/instance_configuration.rb +0 -173
- data/lib/tap/support/joins/fork.rb +0 -19
- data/lib/tap/support/joins/merge.rb +0 -22
- data/lib/tap/support/joins/sequence.rb +0 -21
- data/lib/tap/support/lazy_attributes.rb +0 -45
- data/lib/tap/support/lazydoc.rb +0 -386
- data/lib/tap/support/lazydoc/comment.rb +0 -503
- data/lib/tap/support/lazydoc/config.rb +0 -17
- data/lib/tap/support/lazydoc/definition.rb +0 -36
- data/lib/tap/support/lazydoc/document.rb +0 -152
- data/lib/tap/support/lazydoc/method.rb +0 -24
- data/lib/tap/support/tdoc.rb +0 -409
- data/lib/tap/support/tdoc/tdoc_html_generator.rb +0 -38
- data/lib/tap/support/tdoc/tdoc_html_template.rb +0 -42
- data/lib/tap/support/validation.rb +0 -479
- data/lib/tap/tasks/rake.rb +0 -57
@@ -4,9 +4,12 @@ module Tap
|
|
4
4
|
# Class methods extending tests which include FileTest.
|
5
5
|
module FileTestClass
|
6
6
|
|
7
|
-
# The class-level test root (a Tap::Root)
|
7
|
+
# The class-level test root (a Tap::Root)
|
8
8
|
attr_accessor :class_test_root
|
9
9
|
|
10
|
+
# An array of directories to be cleaned up by cleanup
|
11
|
+
attr_accessor :cleanup_dirs
|
12
|
+
|
10
13
|
end
|
11
14
|
end
|
12
15
|
end
|
data/lib/tap/test/script_test.rb
CHANGED
@@ -20,9 +20,9 @@ module Tap
|
|
20
20
|
subset_test("SCRIPT", "s") do
|
21
21
|
Tap::Root.chdir(test_dir, true) do
|
22
22
|
Utils.with_argv do
|
23
|
-
puts "\n# == #{
|
23
|
+
puts "\n# == #{name}"
|
24
24
|
|
25
|
-
cmd = ScriptTester.new(default_command_path,
|
25
|
+
cmd = ScriptTester.new(default_command_path, env_var('stepwise')) do |expected, result, msg|
|
26
26
|
case expected
|
27
27
|
when String
|
28
28
|
assert_output_equal(expected, result, msg)
|
data/lib/tap/test/subset_test.rb
CHANGED
@@ -101,9 +101,9 @@ module Tap
|
|
101
101
|
# ENV or type is not specified in ENV.
|
102
102
|
def match_regexp?(type, str, default=true)
|
103
103
|
return true if env_true?("ALL")
|
104
|
-
return default unless
|
104
|
+
return default unless env_var(type)
|
105
105
|
|
106
|
-
str =~ Regexp.new(
|
106
|
+
str =~ Regexp.new(env_var(type)) ? true : false
|
107
107
|
end
|
108
108
|
|
109
109
|
# Platform-specific test. Useful for specifying test that should only
|
@@ -188,8 +188,8 @@ module Tap
|
|
188
188
|
def subset_test(type, skip=type[0..0].downcase)
|
189
189
|
type = type.upcase
|
190
190
|
type_test = "#{type}_TEST"
|
191
|
-
if run_subset?(type) ||
|
192
|
-
if match_regexp?(type_test,
|
191
|
+
if run_subset?(type) || env_var(type_test)
|
192
|
+
if match_regexp?(type_test, name.to_s)
|
193
193
|
yield
|
194
194
|
else
|
195
195
|
print skip
|
@@ -220,7 +220,7 @@ module Tap
|
|
220
220
|
def benchmark_test(length=10, &block)
|
221
221
|
subset_test("BENCHMARK") do
|
222
222
|
puts
|
223
|
-
puts
|
223
|
+
puts name
|
224
224
|
Benchmark.bm(length, &block)
|
225
225
|
end
|
226
226
|
end
|
@@ -243,7 +243,7 @@ module Tap
|
|
243
243
|
# The block recieves ['avalue', 'bvalue', 'cvalue'].
|
244
244
|
def prompt_test(*keys, &block)
|
245
245
|
subset_test("PROMPT", "p") do
|
246
|
-
puts "\n#{
|
246
|
+
puts "\n#{name} -- Enter values or 'skip'."
|
247
247
|
|
248
248
|
values = keys.collect do |key|
|
249
249
|
print "#{key}: "
|
data/lib/tap/test/tap_test.rb
CHANGED
@@ -1,32 +1,8 @@
|
|
1
|
+
require 'tap'
|
2
|
+
|
1
3
|
module Tap
|
2
4
|
module Test
|
3
5
|
|
4
|
-
# Used during check_audit to hold the sources and values of an audit
|
5
|
-
# in the correct order. Oriented so that the next value to be checked
|
6
|
-
# is at the top of the stack. Used internally.
|
7
|
-
class AuditStack # :nodoc:
|
8
|
-
attr_reader :test
|
9
|
-
|
10
|
-
def initialize(test)
|
11
|
-
@test = test
|
12
|
-
@stack = []
|
13
|
-
end
|
14
|
-
|
15
|
-
def load_audit(values)
|
16
|
-
[values._sources, values._values].transpose.reverse_each do |sv|
|
17
|
-
load(*sv)
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
def load(source, value)
|
22
|
-
@stack.unshift [source, value]
|
23
|
-
end
|
24
|
-
|
25
|
-
def next
|
26
|
-
@stack.shift
|
27
|
-
end
|
28
|
-
end
|
29
|
-
|
30
6
|
# Tap-specific testing methods to help with testing Tasks, such as the
|
31
7
|
# checking of audits and test-specific modification of application
|
32
8
|
# configuration.
|
@@ -40,7 +16,7 @@ module Tap
|
|
40
16
|
attr_reader :app
|
41
17
|
|
42
18
|
# Setup creates a test-method-specific application that is initialized
|
43
|
-
# to the method_root, and uses the
|
19
|
+
# to the method_root, and uses the relative and absolute paths from
|
44
20
|
# trs (the test root structure, see Tap::Test::FileTest).
|
45
21
|
#
|
46
22
|
# Also makes sure Tap::App.instance returns the test method app.
|
@@ -50,153 +26,51 @@ module Tap
|
|
50
26
|
Tap::App.instance = @app
|
51
27
|
end
|
52
28
|
|
53
|
-
#
|
54
|
-
# audit test methods
|
55
|
-
#
|
56
|
-
|
57
|
-
# Used to define expected audits in Tap::Test::TapTest#assert_audit_equal
|
58
|
-
class ExpAudit < Array
|
59
|
-
end
|
60
|
-
|
61
|
-
# Used to define merged audit trails in Tap::Test::TapTest#assert_audit_equal
|
62
|
-
class ExpMerge < Array
|
63
|
-
end
|
64
|
-
|
65
|
-
class Tracer
|
66
|
-
include Tap::Support::Executable
|
67
|
-
|
68
|
-
class << self
|
69
|
-
def intern(n, app, runlist)
|
70
|
-
Array.new(n) { |index| new(index, app, runlist) }
|
71
|
-
end
|
72
|
-
end
|
73
|
-
|
74
|
-
def initialize(index, app, runlist)
|
75
|
-
@index = index
|
76
|
-
@runlist = runlist
|
77
|
-
|
78
|
-
@app = app
|
79
|
-
@_method_name = :trace
|
80
|
-
@on_complete_block =nil
|
81
|
-
@dependencies = []
|
82
|
-
@batch = [self]
|
83
|
-
end
|
84
|
-
|
85
|
-
def concat(str, id)
|
86
|
-
"#{str} #{id}".strip
|
87
|
-
end
|
88
|
-
|
89
|
-
def trace(trace)
|
90
|
-
id = "#{@index}.#{batch_index}"
|
91
|
-
@runlist << id
|
92
|
-
|
93
|
-
case trace
|
94
|
-
when Array then trace.collect {|str| concat(str, id) }
|
95
|
-
when String then concat(trace, id)
|
96
|
-
else raise "cannot utilize trace: #{trace}"
|
97
|
-
end
|
98
|
-
end
|
99
|
-
end
|
100
|
-
|
101
29
|
# Asserts that an array of audits are all equal, basically feeding
|
102
30
|
# each pair of audits to assert_audit_equal.
|
103
|
-
def assert_audits_equal(expected, audits)
|
104
|
-
|
105
|
-
Utils.each_pair_with_index(expected, audits
|
106
|
-
assert_audit_equal(exp, audit,
|
31
|
+
def assert_audits_equal(expected, audits, msg=nil, &block)
|
32
|
+
assert_equal expected.length, audits.length, "expected <#{expected.length}> audits, but was <#{audits.length}>"
|
33
|
+
Utils.each_pair_with_index(expected, audits) do |exp, audit, index|
|
34
|
+
assert_audit_equal(exp, audit, &block)
|
107
35
|
end
|
108
36
|
end
|
109
37
|
|
110
|
-
# Asserts that an audit
|
111
|
-
#
|
112
|
-
#
|
113
|
-
#
|
114
|
-
# to provide directly; the Proc will be used to validate the actual
|
115
|
-
# record. Merges must be marked in the ExpAudit using ExpMerge.
|
38
|
+
# Asserts that an audit trail matches the expected trail. By default
|
39
|
+
# the expected trail should be composed of [key, value] arrays
|
40
|
+
# representing each audit, but a block may be provided to collect other
|
41
|
+
# attributes.
|
116
42
|
#
|
117
43
|
# Simple assertion:
|
118
44
|
#
|
119
|
-
# a =
|
120
|
-
#
|
121
|
-
# a._record(:b, 'b')
|
122
|
-
#
|
123
|
-
# e = ExpAudit[[:a, 'a'], [:b, 'b']]
|
124
|
-
# assert_audit_equal(e, a)
|
125
|
-
#
|
126
|
-
# Assertion validating a record with a Proc (any number of
|
127
|
-
# records can be validated with a Proc):
|
128
|
-
#
|
129
|
-
# a = Tap::Support::Audit.new
|
130
|
-
# a._record(:a, 'a')
|
131
|
-
# a._record(:b, 'b')
|
45
|
+
# a = Audit.new(:a, 'a')
|
46
|
+
# b = Audit.new(:b, 'b', a)
|
132
47
|
#
|
133
|
-
# e =
|
134
|
-
#
|
135
|
-
# [:b, 'b']]
|
136
|
-
# assert_audit_equal(e, a)
|
48
|
+
# e = [[:a, 'a'], [:b, 'b']]
|
49
|
+
# assert_audit_equal(e, b)
|
137
50
|
#
|
138
51
|
# Assertion with merge:
|
139
52
|
#
|
140
|
-
# a =
|
141
|
-
#
|
142
|
-
# a._record(:b, 'b')
|
53
|
+
# a = Audit.new(:a, 'a')
|
54
|
+
# b = Audit.new(:b, 'b', a)
|
143
55
|
#
|
144
|
-
#
|
145
|
-
#
|
146
|
-
# b._record(:d, 'd')
|
56
|
+
# c = Audit.new(:c, 'c')
|
57
|
+
# d = Audit.new(:d, 'd', c)
|
147
58
|
#
|
148
|
-
#
|
149
|
-
#
|
150
|
-
# c._record(:f, 'f')
|
59
|
+
# e = Audit.new(:e, 'e')
|
60
|
+
# f = Audit.new(:f, 'f', [b,d])
|
151
61
|
#
|
152
|
-
#
|
153
|
-
#
|
154
|
-
# e =
|
62
|
+
# eb = [[:a, "a"], [:b, "b"]]
|
63
|
+
# ed = [[:c, "c"], [:d, "d"]]
|
64
|
+
# e = [[eb, ed], [:e, "e"], [:f, "f"]]
|
155
65
|
#
|
156
66
|
# assert_audit_equal(e, c)
|
157
67
|
#
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
# ea = ExpAudit[[:a, "a"], [:b, "FLUNK"]]
|
163
|
-
# eb = ExpAudit[[:c, "c"], [:d, "d"]]
|
164
|
-
# e = ExpAudit[ExpMerge[ea, eb], [:e, "e"], [:f, "f"]]
|
165
|
-
#
|
166
|
-
# The failure message will read something like 'unequal record 0:0:1'
|
167
|
-
# indicating it was e[0][0][1] that failed. Working through it,
|
168
|
-
# remembering that ExpAudit and ExpMerge are just subclasses of
|
169
|
-
# Array:
|
170
|
-
#
|
171
|
-
# e # => ExpAudit[ExpMerge[ea, eb], [:e, "e"], [:f, "f"]]
|
172
|
-
# e[0] # => ExpMerge[ea, eb]
|
173
|
-
# e[0][0] # => ExpAudit[[:a, "a"], [:b, "FLUNK"]]
|
174
|
-
# e[0][0][1] # => [:b, "FLUNK"]
|
175
|
-
#
|
176
|
-
def assert_audit_equal(expected, audit, nesting=[])
|
177
|
-
actual = audit._collect_records {|source, value| [source, value]}
|
178
|
-
assert_audit_records_equal(expected, actual, nesting)
|
68
|
+
def assert_audit_equal(expected, audit, msg=nil, &block)
|
69
|
+
block = lambda {|a| [a.key, a.value] } unless block
|
70
|
+
actual = audit.trail(&block)
|
71
|
+
assert_equal(expected, actual, msg)
|
179
72
|
end
|
180
73
|
|
181
|
-
def assert_audit_records_equal(expected, actual, nesting=[])
|
182
|
-
assert_equal ExpAudit, expected.class
|
183
|
-
assert_equal expected.length, actual.length, "unequal number of records"
|
184
|
-
|
185
|
-
expected.each_with_index do |exp_record, i|
|
186
|
-
case exp_record
|
187
|
-
when ExpMerge
|
188
|
-
flunk "empty merge #{(nesting + [i]).join(':')}" if exp_record.empty?
|
189
|
-
exp_record.each_with_index do |exp_audit, j|
|
190
|
-
assert_audit_records_equal(exp_audit, actual[i][j], nesting + [i,j])
|
191
|
-
end
|
192
|
-
when Proc
|
193
|
-
assert exp_record.call(*actual[i]), "unconfirmed record #{(nesting + [i]).join(':')}"
|
194
|
-
else
|
195
|
-
assert_equal exp_record, actual[i], "unequal record #{(nesting + [i]).join(':')}"
|
196
|
-
end
|
197
|
-
end
|
198
|
-
end
|
199
|
-
|
200
74
|
# The configurations used to initialize self.app
|
201
75
|
def app_config
|
202
76
|
method_root.config.to_hash.merge(:quiet => true, :debug => true)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Simon Chiang
|
@@ -9,15 +9,23 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date:
|
13
|
-
default_executable:
|
14
|
-
dependencies:
|
15
|
-
|
12
|
+
date: 2009-02-17 00:00:00 -07:00
|
13
|
+
default_executable:
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: configurable
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 0.3.0
|
24
|
+
version:
|
16
25
|
description:
|
17
26
|
email: simon.a.chiang@gmail.com
|
18
27
|
executables:
|
19
28
|
- tap
|
20
|
-
- rap
|
21
29
|
extensions: []
|
22
30
|
|
23
31
|
extra_rdoc_files:
|
@@ -29,83 +37,55 @@ extra_rdoc_files:
|
|
29
37
|
- doc/Syntax Reference
|
30
38
|
- doc/Tutorial
|
31
39
|
files:
|
32
|
-
- cgi/run.rb
|
33
40
|
- cmd/console.rb
|
34
41
|
- cmd/destroy.rb
|
35
42
|
- cmd/generate.rb
|
36
43
|
- cmd/manifest.rb
|
37
44
|
- cmd/run.rb
|
38
|
-
- doc/Tutorial
|
39
|
-
- doc/Class Reference
|
40
|
-
- doc/Command Reference
|
41
|
-
- bin/rap
|
42
45
|
- bin/tap
|
46
|
+
- lib/tap.rb
|
43
47
|
- lib/tap/app.rb
|
44
48
|
- lib/tap/constants.rb
|
45
|
-
- lib/tap/declarations.rb
|
46
49
|
- lib/tap/env.rb
|
47
50
|
- lib/tap/exe.rb
|
48
51
|
- lib/tap/file_task.rb
|
52
|
+
- lib/tap/generator/arguments.rb
|
49
53
|
- lib/tap/generator/base.rb
|
50
54
|
- lib/tap/generator/destroy.rb
|
51
55
|
- lib/tap/generator/generate.rb
|
52
56
|
- lib/tap/generator/generators/command/command_generator.rb
|
53
57
|
- lib/tap/generator/generators/command/templates/command.erb
|
54
58
|
- lib/tap/generator/generators/config/config_generator.rb
|
55
|
-
- lib/tap/generator/generators/config/templates/doc.erb
|
56
|
-
- lib/tap/generator/generators/config/templates/nodoc.erb
|
57
|
-
- lib/tap/generator/generators/file_task/file_task_generator.rb
|
58
|
-
- lib/tap/generator/generators/file_task/templates/file.txt
|
59
|
-
- lib/tap/generator/generators/file_task/templates/result.yml
|
60
|
-
- lib/tap/generator/generators/file_task/templates/task.erb
|
61
|
-
- lib/tap/generator/generators/file_task/templates/test.erb
|
62
59
|
- lib/tap/generator/generators/generator/generator_generator.rb
|
63
60
|
- lib/tap/generator/generators/generator/templates/task.erb
|
61
|
+
- lib/tap/generator/generators/generator/templates/test.erb
|
64
62
|
- lib/tap/generator/generators/root/root_generator.rb
|
65
63
|
- lib/tap/generator/generators/root/templates/README
|
66
64
|
- lib/tap/generator/generators/root/templates/Rakefile
|
67
|
-
- lib/tap/generator/generators/root/templates/
|
65
|
+
- lib/tap/generator/generators/root/templates/Rapfile
|
68
66
|
- lib/tap/generator/generators/root/templates/gemspec
|
69
67
|
- lib/tap/generator/generators/root/templates/test/tap_test_helper.rb
|
70
|
-
- lib/tap/generator/generators/root/templates/test/tap_test_suite.rb
|
71
68
|
- lib/tap/generator/generators/task/task_generator.rb
|
72
69
|
- lib/tap/generator/generators/task/templates/task.erb
|
73
70
|
- lib/tap/generator/generators/task/templates/test.erb
|
74
71
|
- lib/tap/generator/manifest.rb
|
75
|
-
- lib/tap/
|
72
|
+
- lib/tap/generator/preview.rb
|
76
73
|
- lib/tap/root.rb
|
74
|
+
- lib/tap/spec.rb
|
77
75
|
- lib/tap/support/aggregator.rb
|
78
|
-
- lib/tap/support/assignments.rb
|
79
76
|
- lib/tap/support/audit.rb
|
80
|
-
- lib/tap/support/class_configuration.rb
|
81
|
-
- lib/tap/support/combinator.rb
|
82
|
-
- lib/tap/support/configurable.rb
|
83
|
-
- lib/tap/support/configurable_class.rb
|
84
|
-
- lib/tap/support/configuration.rb
|
85
77
|
- lib/tap/support/constant.rb
|
86
78
|
- lib/tap/support/constant_manifest.rb
|
87
79
|
- lib/tap/support/dependencies.rb
|
88
80
|
- lib/tap/support/dependency.rb
|
89
81
|
- lib/tap/support/executable.rb
|
90
82
|
- lib/tap/support/executable_queue.rb
|
91
|
-
- lib/tap/support/gems/rake.rb
|
92
83
|
- lib/tap/support/gems.rb
|
93
|
-
- lib/tap/support/instance_configuration.rb
|
94
84
|
- lib/tap/support/intern.rb
|
95
85
|
- lib/tap/support/join.rb
|
96
86
|
- lib/tap/support/joins.rb
|
97
|
-
- lib/tap/support/joins/fork.rb
|
98
|
-
- lib/tap/support/joins/merge.rb
|
99
|
-
- lib/tap/support/joins/sequence.rb
|
100
87
|
- lib/tap/support/joins/switch.rb
|
101
88
|
- lib/tap/support/joins/sync_merge.rb
|
102
|
-
- lib/tap/support/lazy_attributes.rb
|
103
|
-
- lib/tap/support/lazydoc.rb
|
104
|
-
- lib/tap/support/lazydoc/comment.rb
|
105
|
-
- lib/tap/support/lazydoc/config.rb
|
106
|
-
- lib/tap/support/lazydoc/definition.rb
|
107
|
-
- lib/tap/support/lazydoc/document.rb
|
108
|
-
- lib/tap/support/lazydoc/method.rb
|
109
89
|
- lib/tap/support/manifest.rb
|
110
90
|
- lib/tap/support/minimap.rb
|
111
91
|
- lib/tap/support/node.rb
|
@@ -113,42 +93,41 @@ files:
|
|
113
93
|
- lib/tap/support/schema.rb
|
114
94
|
- lib/tap/support/shell_utils.rb
|
115
95
|
- lib/tap/support/string_ext.rb
|
116
|
-
- lib/tap/support/tdoc.rb
|
117
|
-
- lib/tap/support/tdoc/tdoc_html_generator.rb
|
118
|
-
- lib/tap/support/tdoc/tdoc_html_template.rb
|
119
96
|
- lib/tap/support/templater.rb
|
120
|
-
- lib/tap/support/validation.rb
|
121
97
|
- lib/tap/support/versions.rb
|
122
98
|
- lib/tap/task.rb
|
123
99
|
- lib/tap/tasks/dump.rb
|
124
100
|
- lib/tap/tasks/load.rb
|
125
|
-
- lib/tap/
|
101
|
+
- lib/tap/test.rb
|
126
102
|
- lib/tap/test/assertions.rb
|
127
103
|
- lib/tap/test/env_vars.rb
|
128
104
|
- lib/tap/test/extensions.rb
|
129
105
|
- lib/tap/test/file_test.rb
|
130
106
|
- lib/tap/test/file_test_class.rb
|
131
|
-
- lib/tap/test/script_test.rb
|
132
107
|
- lib/tap/test/regexp_escape.rb
|
108
|
+
- lib/tap/test/script_test.rb
|
133
109
|
- lib/tap/test/script_tester.rb
|
134
110
|
- lib/tap/test/subset_test.rb
|
135
111
|
- lib/tap/test/subset_test_class.rb
|
136
112
|
- lib/tap/test/tap_test.rb
|
137
113
|
- lib/tap/test/utils.rb
|
138
|
-
- lib/tap/test.rb
|
139
|
-
- lib/tap.rb
|
140
114
|
- README
|
141
115
|
- MIT-LICENSE
|
142
116
|
- History
|
117
|
+
- doc/Class Reference
|
118
|
+
- doc/Command Reference
|
143
119
|
- doc/Syntax Reference
|
120
|
+
- doc/Tutorial
|
144
121
|
has_rdoc: true
|
145
122
|
homepage: http://tap.rubyforge.org
|
146
123
|
post_install_message:
|
147
124
|
rdoc_options:
|
148
|
-
- --title
|
149
|
-
- Tap - Task Application
|
150
125
|
- --main
|
151
126
|
- README
|
127
|
+
- -S
|
128
|
+
- -N
|
129
|
+
- --title
|
130
|
+
- Tap (Task Application)
|
152
131
|
require_paths:
|
153
132
|
- lib
|
154
133
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -166,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
166
145
|
requirements: []
|
167
146
|
|
168
147
|
rubyforge_project: tap
|
169
|
-
rubygems_version: 1.3.
|
148
|
+
rubygems_version: 1.3.1
|
170
149
|
signing_key:
|
171
150
|
specification_version: 2
|
172
151
|
summary: A framework for creating configurable, distributable tasks and workflows.
|