caliph 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/doc/Caliph/CommandChain.html +532 -0
- data/doc/Caliph/CommandLine.html +2541 -0
- data/doc/Caliph/CommandLineDSL.html +230 -0
- data/doc/Caliph/CommandLineExampleGroup/MockingExecute.html +174 -0
- data/doc/Caliph/CommandLineExampleGroup.html +366 -0
- data/doc/Caliph/CommandRunResult.html +1124 -0
- data/doc/Caliph/DefineOp/ClassMethods.html +250 -0
- data/doc/Caliph/DefineOp.html +188 -0
- data/doc/Caliph/MockCommandResult.html +465 -0
- data/doc/Caliph/PipelineChain.html +242 -0
- data/doc/Caliph/PrereqChain.html +242 -0
- data/doc/Caliph/ShellEscaped.html +445 -0
- data/doc/Caliph/WrappingChain.html +242 -0
- data/doc/Caliph.html +119 -0
- data/doc/_index.html +241 -0
- data/doc/class_list.html +54 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +57 -0
- data/doc/css/style.css +339 -0
- data/doc/file.README.html +235 -0
- data/doc/file_list.html +56 -0
- data/doc/frames.html +26 -0
- data/doc/index.html +235 -0
- data/doc/js/app.js +219 -0
- data/doc/js/full_list.js +178 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +503 -0
- data/doc/top-level-namespace.html +112 -0
- data/lib/caliph/command-chain.rb +4 -1
- data/lib/caliph/command-line.rb +24 -81
- data/lib/caliph/command-run-result.rb +48 -7
- data/lib/caliph/shell.rb +172 -0
- data/lib/caliph.rb +9 -0
- data/spec/command-line-dsl.rb +15 -15
- data/spec/command-line.rb +16 -18
- data/spec_help/spec_helper.rb +9 -3
- metadata +63 -6
@@ -0,0 +1,503 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html>
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
|
7
|
+
<link rel="stylesheet" href="css/full_list.css" type="text/css" media="screen" charset="utf-8" />
|
8
|
+
|
9
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" media="screen" charset="utf-8" />
|
10
|
+
|
11
|
+
|
12
|
+
|
13
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
14
|
+
|
15
|
+
<script type="text/javascript" charset="utf-8" src="js/full_list.js"></script>
|
16
|
+
|
17
|
+
|
18
|
+
<title>Method List</title>
|
19
|
+
<base id="base_target" target="_parent" />
|
20
|
+
</head>
|
21
|
+
<body>
|
22
|
+
<script type="text/javascript" charset="utf-8">
|
23
|
+
if (window.top.frames.main) {
|
24
|
+
document.getElementById('base_target').target = 'main';
|
25
|
+
document.body.className = 'frames';
|
26
|
+
}
|
27
|
+
</script>
|
28
|
+
<div id="content">
|
29
|
+
<h1 id="full_list_header">Method List</h1>
|
30
|
+
<div id="nav">
|
31
|
+
|
32
|
+
<span><a target="_self" href="class_list.html">
|
33
|
+
Classes
|
34
|
+
</a></span>
|
35
|
+
|
36
|
+
<span><a target="_self" href="method_list.html">
|
37
|
+
Methods
|
38
|
+
</a></span>
|
39
|
+
|
40
|
+
<span><a target="_self" href="file_list.html">
|
41
|
+
Files
|
42
|
+
</a></span>
|
43
|
+
|
44
|
+
</div>
|
45
|
+
<div id="search">Search: <input type="text" /></div>
|
46
|
+
|
47
|
+
<ul id="full_list" class="method">
|
48
|
+
|
49
|
+
|
50
|
+
<li class="r1 ">
|
51
|
+
<span class='object_link'><a href="Caliph/CommandChain.html#add-instance_method" title="Caliph::CommandChain#add (method)">#add</a></span>
|
52
|
+
<small>Caliph::CommandChain</small>
|
53
|
+
</li>
|
54
|
+
|
55
|
+
|
56
|
+
<li class="r2 ">
|
57
|
+
<span class='object_link'><a href="Caliph/CommandLineDSL.html#cmd-instance_method" title="Caliph::CommandLineDSL#cmd (method)">#cmd</a></span>
|
58
|
+
<small>Caliph::CommandLineDSL</small>
|
59
|
+
</li>
|
60
|
+
|
61
|
+
|
62
|
+
<li class="r1 ">
|
63
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#collect_result-instance_method" title="Caliph::CommandLine#collect_result (method)">#collect_result</a></span>
|
64
|
+
<small>Caliph::CommandLine</small>
|
65
|
+
</li>
|
66
|
+
|
67
|
+
|
68
|
+
<li class="r2 ">
|
69
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#command-instance_method" title="Caliph::CommandLine#command (method)">#command</a></span>
|
70
|
+
<small>Caliph::CommandLine</small>
|
71
|
+
</li>
|
72
|
+
|
73
|
+
|
74
|
+
<li class="r1 ">
|
75
|
+
<span class='object_link'><a href="Caliph/WrappingChain.html#command-instance_method" title="Caliph::WrappingChain#command (method)">#command</a></span>
|
76
|
+
<small>Caliph::WrappingChain</small>
|
77
|
+
</li>
|
78
|
+
|
79
|
+
|
80
|
+
<li class="r2 ">
|
81
|
+
<span class='object_link'><a href="Caliph/PrereqChain.html#command-instance_method" title="Caliph::PrereqChain#command (method)">#command</a></span>
|
82
|
+
<small>Caliph::PrereqChain</small>
|
83
|
+
</li>
|
84
|
+
|
85
|
+
|
86
|
+
<li class="r1 ">
|
87
|
+
<span class='object_link'><a href="Caliph/PipelineChain.html#command-instance_method" title="Caliph::PipelineChain#command (method)">#command</a></span>
|
88
|
+
<small>Caliph::PipelineChain</small>
|
89
|
+
</li>
|
90
|
+
|
91
|
+
|
92
|
+
<li class="r2 ">
|
93
|
+
<span class='object_link'><a href="Caliph/ShellEscaped.html#command-instance_method" title="Caliph::ShellEscaped#command (method)">#command</a></span>
|
94
|
+
<small>Caliph::ShellEscaped</small>
|
95
|
+
</li>
|
96
|
+
|
97
|
+
|
98
|
+
<li class="r1 ">
|
99
|
+
<span class='object_link'><a href="Caliph/CommandChain.html#command_environment-instance_method" title="Caliph::CommandChain#command_environment (method)">#command_environment</a></span>
|
100
|
+
<small>Caliph::CommandChain</small>
|
101
|
+
</li>
|
102
|
+
|
103
|
+
|
104
|
+
<li class="r2 ">
|
105
|
+
<span class='object_link'><a href="Caliph/ShellEscaped.html#command_environment-instance_method" title="Caliph::ShellEscaped#command_environment (method)">#command_environment</a></span>
|
106
|
+
<small>Caliph::ShellEscaped</small>
|
107
|
+
</li>
|
108
|
+
|
109
|
+
|
110
|
+
<li class="r1 ">
|
111
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#command_recording_path-class_method" title="Caliph::CommandLine.command_recording_path (method)">command_recording_path</a></span>
|
112
|
+
<small>Caliph::CommandLine</small>
|
113
|
+
</li>
|
114
|
+
|
115
|
+
|
116
|
+
<li class="r2 ">
|
117
|
+
<span class='object_link'><a href="Caliph/CommandChain.html#commands-instance_method" title="Caliph::CommandChain#commands (method)">#commands</a></span>
|
118
|
+
<small>Caliph::CommandChain</small>
|
119
|
+
</li>
|
120
|
+
|
121
|
+
|
122
|
+
<li class="r1 ">
|
123
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#complete-instance_method" title="Caliph::CommandLine#complete (method)">#complete</a></span>
|
124
|
+
<small>Caliph::CommandLine</small>
|
125
|
+
</li>
|
126
|
+
|
127
|
+
|
128
|
+
<li class="r2 ">
|
129
|
+
<span class='object_link'><a href="Caliph/CommandRunResult.html#consume_buffers-instance_method" title="Caliph::CommandRunResult#consume_buffers (method)">#consume_buffers</a></span>
|
130
|
+
<small>Caliph::CommandRunResult</small>
|
131
|
+
</li>
|
132
|
+
|
133
|
+
|
134
|
+
<li class="r1 ">
|
135
|
+
<span class='object_link'><a href="Caliph/CommandRunResult.html#consume_timeout-instance_method" title="Caliph::CommandRunResult#consume_timeout (method)">#consume_timeout</a></span>
|
136
|
+
<small>Caliph::CommandRunResult</small>
|
137
|
+
</li>
|
138
|
+
|
139
|
+
|
140
|
+
<li class="r2 ">
|
141
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#copy_stream_to-instance_method" title="Caliph::CommandLine#copy_stream_to (method)">#copy_stream_to</a></span>
|
142
|
+
<small>Caliph::CommandLine</small>
|
143
|
+
</li>
|
144
|
+
|
145
|
+
|
146
|
+
<li class="r1 ">
|
147
|
+
<span class='object_link'><a href="Caliph/MockCommandResult.html#create-class_method" title="Caliph::MockCommandResult.create (method)">create</a></span>
|
148
|
+
<small>Caliph::MockCommandResult</small>
|
149
|
+
</li>
|
150
|
+
|
151
|
+
|
152
|
+
<li class="r2 ">
|
153
|
+
<span class='object_link'><a href="Caliph/DefineOp/ClassMethods.html#define_chain_op-instance_method" title="Caliph::DefineOp::ClassMethods#define_chain_op (method)">#define_chain_op</a></span>
|
154
|
+
<small>Caliph::DefineOp::ClassMethods</small>
|
155
|
+
</li>
|
156
|
+
|
157
|
+
|
158
|
+
<li class="r1 ">
|
159
|
+
<span class='object_link'><a href="Caliph/DefineOp/ClassMethods.html#define_op-instance_method" title="Caliph::DefineOp::ClassMethods#define_op (method)">#define_op</a></span>
|
160
|
+
<small>Caliph::DefineOp::ClassMethods</small>
|
161
|
+
</li>
|
162
|
+
|
163
|
+
|
164
|
+
<li class="r2 ">
|
165
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#emit_recording-class_method" title="Caliph::CommandLine.emit_recording (method)">emit_recording</a></span>
|
166
|
+
<small>Caliph::CommandLine</small>
|
167
|
+
</li>
|
168
|
+
|
169
|
+
|
170
|
+
<li class="r1 ">
|
171
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#env-instance_method" title="Caliph::CommandLine#env (method)">#env</a></span>
|
172
|
+
<small>Caliph::CommandLine</small>
|
173
|
+
</li>
|
174
|
+
|
175
|
+
|
176
|
+
<li class="r2 ">
|
177
|
+
<span class='object_link'><a href="Caliph/CommandLineDSL.html#escaped_command-instance_method" title="Caliph::CommandLineDSL#escaped_command (method)">#escaped_command</a></span>
|
178
|
+
<small>Caliph::CommandLineDSL</small>
|
179
|
+
</li>
|
180
|
+
|
181
|
+
|
182
|
+
<li class="r1 ">
|
183
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#executable-instance_method" title="Caliph::CommandLine#executable (method)">#executable</a></span>
|
184
|
+
<small>Caliph::CommandLine</small>
|
185
|
+
</li>
|
186
|
+
|
187
|
+
|
188
|
+
<li class="r2 ">
|
189
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#execute-class_method" title="Caliph::CommandLine.execute (method)">execute</a></span>
|
190
|
+
<small>Caliph::CommandLine</small>
|
191
|
+
</li>
|
192
|
+
|
193
|
+
|
194
|
+
<li class="r1 ">
|
195
|
+
<span class='object_link'><a href="Caliph/CommandLineExampleGroup/MockingExecute.html#execute-instance_method" title="Caliph::CommandLineExampleGroup::MockingExecute#execute (method)">#execute</a></span>
|
196
|
+
<small>Caliph::CommandLineExampleGroup::MockingExecute</small>
|
197
|
+
</li>
|
198
|
+
|
199
|
+
|
200
|
+
<li class="r2 ">
|
201
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#execute-instance_method" title="Caliph::CommandLine#execute (method)">#execute</a></span>
|
202
|
+
<small>Caliph::CommandLine</small>
|
203
|
+
</li>
|
204
|
+
|
205
|
+
|
206
|
+
<li class="r1 ">
|
207
|
+
<span class='object_link'><a href="Caliph/CommandRunResult.html#exit_code-instance_method" title="Caliph::CommandRunResult#exit_code (method)">#exit_code</a></span>
|
208
|
+
<small>Caliph::CommandRunResult</small>
|
209
|
+
</li>
|
210
|
+
|
211
|
+
|
212
|
+
<li class="r2 ">
|
213
|
+
<span class='object_link'><a href="Caliph/MockCommandResult.html#exit_code-instance_method" title="Caliph::MockCommandResult#exit_code (method)">#exit_code</a></span>
|
214
|
+
<small>Caliph::MockCommandResult</small>
|
215
|
+
</li>
|
216
|
+
|
217
|
+
|
218
|
+
<li class="r1 ">
|
219
|
+
<span class='object_link'><a href="Caliph/CommandLineExampleGroup.html#expect_command-instance_method" title="Caliph::CommandLineExampleGroup#expect_command (method)">#expect_command</a></span>
|
220
|
+
<small>Caliph::CommandLineExampleGroup</small>
|
221
|
+
</li>
|
222
|
+
|
223
|
+
|
224
|
+
<li class="r2 ">
|
225
|
+
<span class='object_link'><a href="Caliph/CommandLineExampleGroup.html#expect_some_commands-instance_method" title="Caliph::CommandLineExampleGroup#expect_some_commands (method)">#expect_some_commands</a></span>
|
226
|
+
<small>Caliph::CommandLineExampleGroup</small>
|
227
|
+
</li>
|
228
|
+
|
229
|
+
|
230
|
+
<li class="r1 ">
|
231
|
+
<span class='object_link'><a href="Caliph/CommandRunResult.html#format_streams-instance_method" title="Caliph::CommandRunResult#format_streams (method)">#format_streams</a></span>
|
232
|
+
<small>Caliph::CommandRunResult</small>
|
233
|
+
</li>
|
234
|
+
|
235
|
+
|
236
|
+
<li class="r2 ">
|
237
|
+
<span class='object_link'><a href="Caliph/CommandLineExampleGroup.html#included-class_method" title="Caliph::CommandLineExampleGroup.included (method)">included</a></span>
|
238
|
+
<small>Caliph::CommandLineExampleGroup</small>
|
239
|
+
</li>
|
240
|
+
|
241
|
+
|
242
|
+
<li class="r1 ">
|
243
|
+
<span class='object_link'><a href="Caliph/DefineOp.html#included-class_method" title="Caliph::DefineOp.included (method)">included</a></span>
|
244
|
+
<small>Caliph::DefineOp</small>
|
245
|
+
</li>
|
246
|
+
|
247
|
+
|
248
|
+
<li class="r2 ">
|
249
|
+
<span class='object_link'><a href="Caliph/MockCommandResult.html#initialize-instance_method" title="Caliph::MockCommandResult#initialize (method)">#initialize</a></span>
|
250
|
+
<small>Caliph::MockCommandResult</small>
|
251
|
+
</li>
|
252
|
+
|
253
|
+
|
254
|
+
<li class="r1 ">
|
255
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#initialize-instance_method" title="Caliph::CommandLine#initialize (method)">#initialize</a></span>
|
256
|
+
<small>Caliph::CommandLine</small>
|
257
|
+
</li>
|
258
|
+
|
259
|
+
|
260
|
+
<li class="r2 ">
|
261
|
+
<span class='object_link'><a href="Caliph/CommandChain.html#initialize-instance_method" title="Caliph::CommandChain#initialize (method)">#initialize</a></span>
|
262
|
+
<small>Caliph::CommandChain</small>
|
263
|
+
</li>
|
264
|
+
|
265
|
+
|
266
|
+
<li class="r1 ">
|
267
|
+
<span class='object_link'><a href="Caliph/ShellEscaped.html#initialize-instance_method" title="Caliph::ShellEscaped#initialize (method)">#initialize</a></span>
|
268
|
+
<small>Caliph::ShellEscaped</small>
|
269
|
+
</li>
|
270
|
+
|
271
|
+
|
272
|
+
<li class="r2 ">
|
273
|
+
<span class='object_link'><a href="Caliph/CommandRunResult.html#initialize-instance_method" title="Caliph::CommandRunResult#initialize (method)">#initialize</a></span>
|
274
|
+
<small>Caliph::CommandRunResult</small>
|
275
|
+
</li>
|
276
|
+
|
277
|
+
|
278
|
+
<li class="r1 ">
|
279
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#kill_process-instance_method" title="Caliph::CommandLine#kill_process (method)">#kill_process</a></span>
|
280
|
+
<small>Caliph::CommandLine</small>
|
281
|
+
</li>
|
282
|
+
|
283
|
+
|
284
|
+
<li class="r2 ">
|
285
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#must_succeed%21-instance_method" title="Caliph::CommandLine#must_succeed! (method)">#must_succeed!</a></span>
|
286
|
+
<small>Caliph::CommandLine</small>
|
287
|
+
</li>
|
288
|
+
|
289
|
+
|
290
|
+
<li class="r1 ">
|
291
|
+
<span class='object_link'><a href="Caliph/CommandRunResult.html#must_succeed%21-instance_method" title="Caliph::CommandRunResult#must_succeed! (method)">#must_succeed!</a></span>
|
292
|
+
<small>Caliph::CommandRunResult</small>
|
293
|
+
</li>
|
294
|
+
|
295
|
+
|
296
|
+
<li class="r2 ">
|
297
|
+
<span class='object_link'><a href="Caliph/CommandChain.html#name-instance_method" title="Caliph::CommandChain#name (method)">#name</a></span>
|
298
|
+
<small>Caliph::CommandChain</small>
|
299
|
+
</li>
|
300
|
+
|
301
|
+
|
302
|
+
<li class="r1 ">
|
303
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#name-instance_method" title="Caliph::CommandLine#name (method)">#name</a></span>
|
304
|
+
<small>Caliph::CommandLine</small>
|
305
|
+
</li>
|
306
|
+
|
307
|
+
|
308
|
+
<li class="r2 ">
|
309
|
+
<span class='object_link'><a href="Caliph/ShellEscaped.html#name-instance_method" title="Caliph::ShellEscaped#name (method)">#name</a></span>
|
310
|
+
<small>Caliph::ShellEscaped</small>
|
311
|
+
</li>
|
312
|
+
|
313
|
+
|
314
|
+
<li class="r1 ">
|
315
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#options-instance_method" title="Caliph::CommandLine#options (method)">#options</a></span>
|
316
|
+
<small>Caliph::CommandLine</small>
|
317
|
+
</li>
|
318
|
+
|
319
|
+
|
320
|
+
<li class="r2 ">
|
321
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#options_composition-instance_method" title="Caliph::CommandLine#options_composition (method)">#options_composition</a></span>
|
322
|
+
<small>Caliph::CommandLine</small>
|
323
|
+
</li>
|
324
|
+
|
325
|
+
|
326
|
+
<li class="r1 ">
|
327
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#original_execute-instance_method" title="Caliph::CommandLine#original_execute (method)">#original_execute</a></span>
|
328
|
+
<small>Caliph::CommandLine</small>
|
329
|
+
</li>
|
330
|
+
|
331
|
+
|
332
|
+
<li class="r2 ">
|
333
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#output_stream-class_method" title="Caliph::CommandLine.output_stream (method)">output_stream</a></span>
|
334
|
+
<small>Caliph::CommandLine</small>
|
335
|
+
</li>
|
336
|
+
|
337
|
+
|
338
|
+
<li class="r1 ">
|
339
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#output_stream-instance_method" title="Caliph::CommandLine#output_stream (method)">#output_stream</a></span>
|
340
|
+
<small>Caliph::CommandLine</small>
|
341
|
+
</li>
|
342
|
+
|
343
|
+
|
344
|
+
<li class="r2 ">
|
345
|
+
<span class='object_link'><a href="Caliph/CommandRunResult.html#pid-instance_method" title="Caliph::CommandRunResult#pid (method)">#pid</a></span>
|
346
|
+
<small>Caliph::CommandRunResult</small>
|
347
|
+
</li>
|
348
|
+
|
349
|
+
|
350
|
+
<li class="r1 ">
|
351
|
+
<span class='object_link'><a href="Caliph/CommandRunResult.html#process_status-instance_method" title="Caliph::CommandRunResult#process_status (method)">#process_status</a></span>
|
352
|
+
<small>Caliph::CommandRunResult</small>
|
353
|
+
</li>
|
354
|
+
|
355
|
+
|
356
|
+
<li class="r2 ">
|
357
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#redirect_both-instance_method" title="Caliph::CommandLine#redirect_both (method)">#redirect_both</a></span>
|
358
|
+
<small>Caliph::CommandLine</small>
|
359
|
+
</li>
|
360
|
+
|
361
|
+
|
362
|
+
<li class="r1 ">
|
363
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#redirect_from-instance_method" title="Caliph::CommandLine#redirect_from (method)">#redirect_from</a></span>
|
364
|
+
<small>Caliph::CommandLine</small>
|
365
|
+
</li>
|
366
|
+
|
367
|
+
|
368
|
+
<li class="r2 ">
|
369
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#redirect_stderr-instance_method" title="Caliph::CommandLine#redirect_stderr (method)">#redirect_stderr</a></span>
|
370
|
+
<small>Caliph::CommandLine</small>
|
371
|
+
</li>
|
372
|
+
|
373
|
+
|
374
|
+
<li class="r1 ">
|
375
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#redirect_stdin-instance_method" title="Caliph::CommandLine#redirect_stdin (method)">#redirect_stdin</a></span>
|
376
|
+
<small>Caliph::CommandLine</small>
|
377
|
+
</li>
|
378
|
+
|
379
|
+
|
380
|
+
<li class="r2 ">
|
381
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#redirect_stdout-instance_method" title="Caliph::CommandLine#redirect_stdout (method)">#redirect_stdout</a></span>
|
382
|
+
<small>Caliph::CommandLine</small>
|
383
|
+
</li>
|
384
|
+
|
385
|
+
|
386
|
+
<li class="r1 ">
|
387
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#redirect_to-instance_method" title="Caliph::CommandLine#redirect_to (method)">#redirect_to</a></span>
|
388
|
+
<small>Caliph::CommandLine</small>
|
389
|
+
</li>
|
390
|
+
|
391
|
+
|
392
|
+
<li class="r2 ">
|
393
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#redirections-instance_method" title="Caliph::CommandLine#redirections (method)">#redirections</a></span>
|
394
|
+
<small>Caliph::CommandLine</small>
|
395
|
+
</li>
|
396
|
+
|
397
|
+
|
398
|
+
<li class="r1 ">
|
399
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#report-instance_method" title="Caliph::CommandLine#report (method)">#report</a></span>
|
400
|
+
<small>Caliph::CommandLine</small>
|
401
|
+
</li>
|
402
|
+
|
403
|
+
|
404
|
+
<li class="r2 ">
|
405
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#run-instance_method" title="Caliph::CommandLine#run (method)">#run</a></span>
|
406
|
+
<small>Caliph::CommandLine</small>
|
407
|
+
</li>
|
408
|
+
|
409
|
+
|
410
|
+
<li class="r1 ">
|
411
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#run_as_replacement-instance_method" title="Caliph::CommandLine#run_as_replacement (method)">#run_as_replacement</a></span>
|
412
|
+
<small>Caliph::CommandLine</small>
|
413
|
+
</li>
|
414
|
+
|
415
|
+
|
416
|
+
<li class="r2 ">
|
417
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#run_detached-instance_method" title="Caliph::CommandLine#run_detached (method)">#run_detached</a></span>
|
418
|
+
<small>Caliph::CommandLine</small>
|
419
|
+
</li>
|
420
|
+
|
421
|
+
|
422
|
+
<li class="r1 ">
|
423
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#run_in_background-instance_method" title="Caliph::CommandLine#run_in_background (method)">#run_in_background</a></span>
|
424
|
+
<small>Caliph::CommandLine</small>
|
425
|
+
</li>
|
426
|
+
|
427
|
+
|
428
|
+
<li class="r2 ">
|
429
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#set_env-instance_method" title="Caliph::CommandLine#set_env (method)">#set_env</a></span>
|
430
|
+
<small>Caliph::CommandLine</small>
|
431
|
+
</li>
|
432
|
+
|
433
|
+
|
434
|
+
<li class="r1 ">
|
435
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#spawn_process-instance_method" title="Caliph::CommandLine#spawn_process (method)">#spawn_process</a></span>
|
436
|
+
<small>Caliph::CommandLine</small>
|
437
|
+
</li>
|
438
|
+
|
439
|
+
|
440
|
+
<li class="r2 ">
|
441
|
+
<span class='object_link'><a href="Caliph/CommandRunResult.html#stderr-instance_method" title="Caliph::CommandRunResult#stderr (method)">#stderr</a></span>
|
442
|
+
<small>Caliph::CommandRunResult</small>
|
443
|
+
</li>
|
444
|
+
|
445
|
+
|
446
|
+
<li class="r1 ">
|
447
|
+
<span class='object_link'><a href="Caliph/CommandRunResult.html#stdout-instance_method" title="Caliph::CommandRunResult#stdout (method)">#stdout</a></span>
|
448
|
+
<small>Caliph::CommandRunResult</small>
|
449
|
+
</li>
|
450
|
+
|
451
|
+
|
452
|
+
<li class="r2 ">
|
453
|
+
<span class='object_link'><a href="Caliph/MockCommandResult.html#streams-instance_method" title="Caliph::MockCommandResult#streams (method)">#streams</a></span>
|
454
|
+
<small>Caliph::MockCommandResult</small>
|
455
|
+
</li>
|
456
|
+
|
457
|
+
|
458
|
+
<li class="r1 ">
|
459
|
+
<span class='object_link'><a href="Caliph/CommandRunResult.html#streams-instance_method" title="Caliph::CommandRunResult#streams (method)">#streams</a></span>
|
460
|
+
<small>Caliph::CommandRunResult</small>
|
461
|
+
</li>
|
462
|
+
|
463
|
+
|
464
|
+
<li class="r2 ">
|
465
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#string_format-instance_method" title="Caliph::CommandLine#string_format (method)">#string_format</a></span>
|
466
|
+
<small>Caliph::CommandLine</small>
|
467
|
+
</li>
|
468
|
+
|
469
|
+
|
470
|
+
<li class="r1 ">
|
471
|
+
<span class='object_link'><a href="Caliph/CommandRunResult.html#succeeded%3F-instance_method" title="Caliph::CommandRunResult#succeeded? (method)">#succeeded?</a></span>
|
472
|
+
<small>Caliph::CommandRunResult</small>
|
473
|
+
</li>
|
474
|
+
|
475
|
+
|
476
|
+
<li class="r2 ">
|
477
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#succeeds%3F-instance_method" title="Caliph::CommandLine#succeeds? (method)">#succeeds?</a></span>
|
478
|
+
<small>Caliph::CommandLine</small>
|
479
|
+
</li>
|
480
|
+
|
481
|
+
|
482
|
+
<li class="r1 ">
|
483
|
+
<span class='object_link'><a href="Caliph/ShellEscaped.html#to_s-instance_method" title="Caliph::ShellEscaped#to_s (method)">#to_s</a></span>
|
484
|
+
<small>Caliph::ShellEscaped</small>
|
485
|
+
</li>
|
486
|
+
|
487
|
+
|
488
|
+
<li class="r2 ">
|
489
|
+
<span class='object_link'><a href="Caliph/CommandLine.html#verbose-instance_method" title="Caliph::CommandLine#verbose (method)">#verbose</a></span>
|
490
|
+
<small>Caliph::CommandLine</small>
|
491
|
+
</li>
|
492
|
+
|
493
|
+
|
494
|
+
<li class="r1 ">
|
495
|
+
<span class='object_link'><a href="Caliph/CommandRunResult.html#wait-instance_method" title="Caliph::CommandRunResult#wait (method)">#wait</a></span>
|
496
|
+
<small>Caliph::CommandRunResult</small>
|
497
|
+
</li>
|
498
|
+
|
499
|
+
|
500
|
+
</ul>
|
501
|
+
</div>
|
502
|
+
</body>
|
503
|
+
</html>
|
@@ -0,0 +1,112 @@
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
4
|
+
<head>
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
6
|
+
<title>
|
7
|
+
Top Level Namespace
|
8
|
+
|
9
|
+
— Documentation by YARD 0.8.7.4
|
10
|
+
|
11
|
+
</title>
|
12
|
+
|
13
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
|
14
|
+
|
15
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
16
|
+
|
17
|
+
<script type="text/javascript" charset="utf-8">
|
18
|
+
hasFrames = window.top.frames.main ? true : false;
|
19
|
+
relpath = '';
|
20
|
+
framesUrl = "frames.html#!top-level-namespace.html";
|
21
|
+
</script>
|
22
|
+
|
23
|
+
|
24
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
25
|
+
|
26
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
27
|
+
|
28
|
+
|
29
|
+
</head>
|
30
|
+
<body>
|
31
|
+
<div id="header">
|
32
|
+
<div id="menu">
|
33
|
+
|
34
|
+
<a href="_index.html">Index</a> »
|
35
|
+
|
36
|
+
|
37
|
+
<span class="title">Top Level Namespace</span>
|
38
|
+
|
39
|
+
|
40
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
41
|
+
</div>
|
42
|
+
|
43
|
+
<div id="search">
|
44
|
+
|
45
|
+
<a class="full_list_link" id="class_list_link"
|
46
|
+
href="class_list.html">
|
47
|
+
Class List
|
48
|
+
</a>
|
49
|
+
|
50
|
+
<a class="full_list_link" id="method_list_link"
|
51
|
+
href="method_list.html">
|
52
|
+
Method List
|
53
|
+
</a>
|
54
|
+
|
55
|
+
<a class="full_list_link" id="file_list_link"
|
56
|
+
href="file_list.html">
|
57
|
+
File List
|
58
|
+
</a>
|
59
|
+
|
60
|
+
</div>
|
61
|
+
<div class="clear"></div>
|
62
|
+
</div>
|
63
|
+
|
64
|
+
<iframe id="search_frame"></iframe>
|
65
|
+
|
66
|
+
<div id="content"><h1>Top Level Namespace
|
67
|
+
|
68
|
+
|
69
|
+
|
70
|
+
</h1>
|
71
|
+
|
72
|
+
<dl class="box">
|
73
|
+
|
74
|
+
|
75
|
+
|
76
|
+
|
77
|
+
|
78
|
+
|
79
|
+
|
80
|
+
|
81
|
+
</dl>
|
82
|
+
<div class="clear"></div>
|
83
|
+
|
84
|
+
<h2>Defined Under Namespace</h2>
|
85
|
+
<p class="children">
|
86
|
+
|
87
|
+
|
88
|
+
<strong class="modules">Modules:</strong> <span class='object_link'><a href="Caliph.html" title="Caliph (module)">Caliph</a></span>
|
89
|
+
|
90
|
+
|
91
|
+
|
92
|
+
|
93
|
+
</p>
|
94
|
+
|
95
|
+
|
96
|
+
|
97
|
+
|
98
|
+
|
99
|
+
|
100
|
+
|
101
|
+
|
102
|
+
|
103
|
+
</div>
|
104
|
+
|
105
|
+
<div id="footer">
|
106
|
+
Generated on Fri Jun 13 17:31:07 2014 by
|
107
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
108
|
+
0.8.7.4 (ruby-2.0.0).
|
109
|
+
</div>
|
110
|
+
|
111
|
+
</body>
|
112
|
+
</html>
|
data/lib/caliph/command-chain.rb
CHANGED