benry-cmdapp 0.1.0

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.
@@ -0,0 +1,38 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "benry-cmdapp"
5
+ spec.version = "$Release: 0.1.0 $".split()[1]
6
+ spec.author = "kwatch"
7
+ spec.email = "kwatch@gmail.com"
8
+ spec.platform = Gem::Platform::RUBY
9
+ spec.homepage = "https://kwatch.github.io/benry-ruby/benry-cmdapp.html"
10
+ spec.summary = "Command-line application framework`"
11
+ spec.description = <<-"END"
12
+ Benry-CmdApp is a framework to create command-line application
13
+ like `git`, `docker`, or `npm` commands.
14
+
15
+ If you want create a command-line application which takes sub-commands,
16
+ Benry-CmdApp is the solution.
17
+
18
+ See #{spec.homepage} for details.
19
+ END
20
+ spec.license = "MIT"
21
+ spec.files = Dir[
22
+ "README.md", "MIT-LICENSE", "CHANGES.md",
23
+ "#{spec.name}.gemspec",
24
+ #"Rakefile.rb", "task/**/*.rb",,
25
+ "lib/**/*.rb", "test/**/*.rb",
26
+ #"bin/*", "examples/**/*",
27
+ "doc/*.html", "doc/css/*.css",
28
+ ]
29
+ #spec.executables = []
30
+ spec.bindir = "bin"
31
+ spec.require_path = "lib"
32
+ spec.test_files = Dir["test/**/*_test.rb"] # or: ["test/run_all.rb"]
33
+ #spec.extra_rdoc_files = ["README.md", "CHANGES.md"]
34
+
35
+ spec.required_ruby_version = ">= 2.3"
36
+ spec.add_runtime_dependency "benry-cmdopt" , "~> 2"
37
+ spec.add_development_dependency "oktest" , "~> 1"
38
+ end