benry-unixcommand 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGES.md +20 -0
- data/MIT-LICENSE +21 -0
- data/README.md +1063 -0
- data/benry-unixcommand.gemspec +31 -0
- data/doc/benry-unixcommand.html +932 -0
- data/doc/css/style.css +168 -0
- data/lib/benry/unixcommand.rb +1322 -0
- data/test/run_all.rb +14 -0
- data/test/unixcommand_test.rb +2517 -0
- metadata +69 -0
@@ -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
|