benry-cmdopt 2.2.0 → 2.4.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGES.md +13 -1
- data/README.md +67 -6
- data/benry-cmdopt.gemspec +1 -1
- data/doc/benry-cmdopt.html +62 -6
- data/doc/css/style.css +2 -2
- data/lib/benry/cmdopt.rb +53 -12
- data/test/cmdopt_test.rb +1 -1526
- data/test/facade_test.rb +197 -0
- data/test/item_test.rb +463 -0
- data/test/parser_test.rb +294 -0
- data/test/run_all.rb +6 -0
- data/test/schema_test.rb +727 -0
- data/test/shared.rb +6 -0
- metadata +12 -2
data/test/shared.rb
ADDED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: benry-cmdopt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.4.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- kwatch
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-12-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: oktest
|
@@ -41,6 +41,12 @@ files:
|
|
41
41
|
- doc/css/style.css
|
42
42
|
- lib/benry/cmdopt.rb
|
43
43
|
- test/cmdopt_test.rb
|
44
|
+
- test/facade_test.rb
|
45
|
+
- test/item_test.rb
|
46
|
+
- test/parser_test.rb
|
47
|
+
- test/run_all.rb
|
48
|
+
- test/schema_test.rb
|
49
|
+
- test/shared.rb
|
44
50
|
homepage: https://kwatch.github.io/benry-ruby/benry-cmdopt.html
|
45
51
|
licenses:
|
46
52
|
- MIT
|
@@ -66,3 +72,7 @@ specification_version: 4
|
|
66
72
|
summary: Command option parser, much better than `optparse.rb`
|
67
73
|
test_files:
|
68
74
|
- test/cmdopt_test.rb
|
75
|
+
- test/facade_test.rb
|
76
|
+
- test/item_test.rb
|
77
|
+
- test/parser_test.rb
|
78
|
+
- test/schema_test.rb
|