subcommand 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- data/Makefile +29 -0
- data/VERSION +1 -1
- data/lib/subcommand.rb +39 -15
- data/tests/Makefile +2 -0
- data/tests/README +313 -0
- data/tests/aggregate-results.sh +34 -0
- data/tests/recreate.sh +33 -0
- data/tests/rtest2.sh +127 -0
- data/tests/t0001-main.sh +51 -0
- data/tests/t0002-subcomm.sh +21 -0
- data/tests/t0003-inv_comm.sh +53 -0
- data/tests/t0004-subcomm.sh +25 -0
- data/tests/t0005-alias_goo.sh +28 -0
- data/tests/t0006-goo_opt.sh +25 -0
- data/tests/t0007-bar_baz.sh +44 -0
- data/tests/t0008-boo_zoo.sh +44 -0
- data/tests/test-lib.sh +618 -0
- metadata +17 -2
metadata
CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
|
|
5
5
|
segments:
|
6
6
|
- 1
|
7
7
|
- 0
|
8
|
-
-
|
9
|
-
version: 1.0.
|
8
|
+
- 3
|
9
|
+
version: 1.0.3
|
10
10
|
platform: ruby
|
11
11
|
authors:
|
12
12
|
- Rahul Kumar
|
@@ -43,12 +43,27 @@ files:
|
|
43
43
|
- .document
|
44
44
|
- .gitignore
|
45
45
|
- LICENSE
|
46
|
+
- Makefile
|
46
47
|
- README.rdoc
|
47
48
|
- Rakefile
|
48
49
|
- VERSION
|
49
50
|
- lib/subcommand.rb
|
50
51
|
- test/helper.rb
|
51
52
|
- test/test_subcommand.rb
|
53
|
+
- tests/Makefile
|
54
|
+
- tests/README
|
55
|
+
- tests/aggregate-results.sh
|
56
|
+
- tests/recreate.sh
|
57
|
+
- tests/rtest2.sh
|
58
|
+
- tests/t0001-main.sh
|
59
|
+
- tests/t0002-subcomm.sh
|
60
|
+
- tests/t0003-inv_comm.sh
|
61
|
+
- tests/t0004-subcomm.sh
|
62
|
+
- tests/t0005-alias_goo.sh
|
63
|
+
- tests/t0006-goo_opt.sh
|
64
|
+
- tests/t0007-bar_baz.sh
|
65
|
+
- tests/t0008-boo_zoo.sh
|
66
|
+
- tests/test-lib.sh
|
52
67
|
- TODO
|
53
68
|
has_rdoc: true
|
54
69
|
homepage: http://github.com/rkumar/subcommand
|