benry-cmdopt 2.3.0 → 2.4.0

Sign up to get free protection for your applications and to get access to all the features.
data/test/shared.rb ADDED
@@ -0,0 +1,6 @@
1
+ # -*- coding: utf-8 -*-
2
+ # frozen_string_literal: true
3
+
4
+ require 'oktest'
5
+
6
+ require 'benry/cmdopt'
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.3.0
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-26 00:00:00.000000000 Z
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