benry-cmdapp 0.2.0 → 1.0.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 +6 -0
- data/README.md +1693 -852
- data/benry-cmdapp.gemspec +3 -3
- data/doc/benry-cmdapp.html +1582 -906
- data/lib/benry/cmdapp.rb +1894 -1060
- data/test/app_test.rb +882 -1078
- data/test/config_test.rb +71 -0
- data/test/context_test.rb +382 -0
- data/test/func_test.rb +302 -82
- data/test/help_test.rb +1054 -553
- data/test/metadata_test.rb +191 -0
- data/test/misc_test.rb +175 -0
- data/test/registry_test.rb +402 -0
- data/test/run_all.rb +4 -3
- data/test/scope_test.rb +1210 -0
- data/test/shared.rb +112 -49
- data/test/util_test.rb +154 -99
- metadata +17 -9
- data/test/action_test.rb +0 -1038
- data/test/index_test.rb +0 -185
data/benry-cmdapp.gemspec
CHANGED
@@ -2,12 +2,12 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |spec|
|
4
4
|
spec.name = "benry-cmdapp"
|
5
|
-
spec.version = "$Release: 0.
|
5
|
+
spec.version = "$Release: 1.0.0 $".split()[1]
|
6
6
|
spec.author = "kwatch"
|
7
7
|
spec.email = "kwatch@gmail.com"
|
8
8
|
spec.platform = Gem::Platform::RUBY
|
9
9
|
spec.homepage = "https://kwatch.github.io/benry-ruby/benry-cmdapp.html"
|
10
|
-
spec.summary = "Command-line application framework
|
10
|
+
spec.summary = "Command-line application framework"
|
11
11
|
spec.description = <<-"END"
|
12
12
|
Benry-CmdApp is a framework to create command-line application
|
13
13
|
like `git`, `docker`, or `npm` commands.
|
@@ -31,6 +31,6 @@ END
|
|
31
31
|
#spec.extra_rdoc_files = ["README.md", "CHANGES.md"]
|
32
32
|
|
33
33
|
spec.required_ruby_version = ">= 2.3"
|
34
|
-
spec.add_runtime_dependency "benry-cmdopt" , "~> 2", ">= 2.
|
34
|
+
spec.add_runtime_dependency "benry-cmdopt" , "~> 2", ">= 2.2.0"
|
35
35
|
spec.add_development_dependency "oktest" , "~> 1"
|
36
36
|
end
|