benry-unixcommand 1.0.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,31 @@
1
+ # -*- coding: utf-8 -*-
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "benry-unixcommand"
5
+ spec.version = "$Release: 1.0.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-unixcommand.html"
10
+ spec.summary = "Unix commands implementation like 'fileutils.rb'"
11
+ spec.description = <<-"END"
12
+ Unix commnads implementation. Similar to `fileutils.rb`, but better than it.
13
+
14
+ See #{spec.homepage} for details.
15
+ END
16
+ spec.license = "MIT"
17
+ spec.files = Dir[
18
+ "README.md", "MIT-LICENSE", "CHANGES.md",
19
+ "#{spec.name}.gemspec",
20
+ "lib/**/*.rb", "test/**/*.rb", #"bin/*", "examples/**/*",
21
+ "doc/*.html", "doc/css/*.css",
22
+ ]
23
+ #spec.executables = []
24
+ spec.bindir = "bin"
25
+ spec.require_path = "lib"
26
+ spec.test_files = ["test/run_all.rb"] # or: Dir["test/**/*_test.rb"]
27
+ #spec.extra_rdoc_files = ["README.md", "CHANGES.md"]
28
+
29
+ spec.required_ruby_version = ">= 2.3"
30
+ spec.add_development_dependency "oktest" , "~> 1"
31
+ end