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
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: caliph
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Evan Dorn
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-07-15 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: |2
|
15
15
|
TDD-suitable Ruby tool for generating command-line commands via an OOP interface.
|
@@ -18,9 +18,36 @@ email:
|
|
18
18
|
- judson@lrdesign.com
|
19
19
|
executables: []
|
20
20
|
extensions: []
|
21
|
-
extra_rdoc_files:
|
21
|
+
extra_rdoc_files:
|
22
|
+
- doc/js/full_list.js
|
23
|
+
- doc/js/app.js
|
24
|
+
- doc/js/jquery.js
|
25
|
+
- doc/css/style.css
|
26
|
+
- doc/css/full_list.css
|
27
|
+
- doc/css/common.css
|
28
|
+
- doc/Caliph/WrappingChain.html
|
29
|
+
- doc/Caliph/CommandLine.html
|
30
|
+
- doc/Caliph/DefineOp/ClassMethods.html
|
31
|
+
- doc/Caliph/CommandLineDSL.html
|
32
|
+
- doc/Caliph/PipelineChain.html
|
33
|
+
- doc/Caliph/CommandRunResult.html
|
34
|
+
- doc/Caliph/PrereqChain.html
|
35
|
+
- doc/Caliph/DefineOp.html
|
36
|
+
- doc/Caliph/CommandLineExampleGroup/MockingExecute.html
|
37
|
+
- doc/Caliph/CommandChain.html
|
38
|
+
- doc/Caliph/MockCommandResult.html
|
39
|
+
- doc/Caliph/ShellEscaped.html
|
40
|
+
- doc/Caliph/CommandLineExampleGroup.html
|
41
|
+
- doc/file_list.html
|
42
|
+
- doc/index.html
|
43
|
+
- doc/class_list.html
|
44
|
+
- doc/top-level-namespace.html
|
45
|
+
- doc/Caliph.html
|
46
|
+
- doc/_index.html
|
47
|
+
- doc/file.README.html
|
48
|
+
- doc/method_list.html
|
49
|
+
- doc/frames.html
|
22
50
|
files:
|
23
|
-
- lib/caliph.rb
|
24
51
|
- lib/caliph/command-chain.rb
|
25
52
|
- lib/caliph/command-line-dsl.rb
|
26
53
|
- lib/caliph/command-line.rb
|
@@ -29,11 +56,41 @@ files:
|
|
29
56
|
- lib/caliph/shell-escaped.rb
|
30
57
|
- lib/caliph/testing/mock-command-line.rb
|
31
58
|
- lib/caliph/testing/record-commands.rb
|
59
|
+
- lib/caliph.rb
|
60
|
+
- lib/caliph/shell.rb
|
32
61
|
- spec/command-chain.rb
|
33
62
|
- spec/command-line-dsl.rb
|
34
63
|
- spec/command-line.rb
|
35
64
|
- spec_help/gem_test_suite.rb
|
36
65
|
- spec_help/spec_helper.rb
|
66
|
+
- doc/js/full_list.js
|
67
|
+
- doc/js/app.js
|
68
|
+
- doc/js/jquery.js
|
69
|
+
- doc/css/style.css
|
70
|
+
- doc/css/full_list.css
|
71
|
+
- doc/css/common.css
|
72
|
+
- doc/Caliph/WrappingChain.html
|
73
|
+
- doc/Caliph/CommandLine.html
|
74
|
+
- doc/Caliph/DefineOp/ClassMethods.html
|
75
|
+
- doc/Caliph/CommandLineDSL.html
|
76
|
+
- doc/Caliph/PipelineChain.html
|
77
|
+
- doc/Caliph/CommandRunResult.html
|
78
|
+
- doc/Caliph/PrereqChain.html
|
79
|
+
- doc/Caliph/DefineOp.html
|
80
|
+
- doc/Caliph/CommandLineExampleGroup/MockingExecute.html
|
81
|
+
- doc/Caliph/CommandChain.html
|
82
|
+
- doc/Caliph/MockCommandResult.html
|
83
|
+
- doc/Caliph/ShellEscaped.html
|
84
|
+
- doc/Caliph/CommandLineExampleGroup.html
|
85
|
+
- doc/file_list.html
|
86
|
+
- doc/index.html
|
87
|
+
- doc/class_list.html
|
88
|
+
- doc/top-level-namespace.html
|
89
|
+
- doc/Caliph.html
|
90
|
+
- doc/_index.html
|
91
|
+
- doc/file.README.html
|
92
|
+
- doc/method_list.html
|
93
|
+
- doc/frames.html
|
37
94
|
homepage: https://github.com/LRDesign/Caliph
|
38
95
|
licenses:
|
39
96
|
- MIT
|
@@ -44,7 +101,7 @@ rdoc_options:
|
|
44
101
|
- --main
|
45
102
|
- doc/README
|
46
103
|
- --title
|
47
|
-
- caliph-0.1.
|
104
|
+
- caliph-0.1.2 Documentation
|
48
105
|
require_paths:
|
49
106
|
- lib/
|
50
107
|
required_ruby_version: !ruby/object:Gem::Requirement
|
@@ -59,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
59
116
|
version: '0'
|
60
117
|
requirements: []
|
61
118
|
rubyforge_project:
|
62
|
-
rubygems_version: 2.
|
119
|
+
rubygems_version: 2.0.14
|
63
120
|
signing_key:
|
64
121
|
specification_version: 4
|
65
122
|
summary: TDD-suitable Ruby tool for generating command-line commands via an OOP interface.
|