cmd.rb 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/tests.yml +0 -0
- data/.gitignore +0 -0
- data/.projectile +0 -0
- data/.rubocop.yml +0 -0
- data/.yardoc-template/default/fulldoc/html/css/0x1eef.css +0 -0
- data/.yardoc-template/default/layout/html/setup.rb +0 -0
- data/.yardoc-template/default/module/setup.rb +0 -0
- data/.yardopts +0 -0
- data/Gemfile +0 -0
- data/LICENSE +0 -0
- data/README.md +0 -0
- data/Rakefile.rb +0 -0
- data/VERSION +1 -1
- data/cmd.rb.gemspec +1 -1
- data/lib/cmd/mixins/argv.rb +0 -0
- data/lib/cmd/mixins/help.rb +0 -0
- data/lib/cmd/mixins/option_parser.rb +0 -0
- data/lib/cmd.rb +0 -0
- data/share/examples/cmd.rb/ls +0 -0
- data/share/examples/cmd.rb/setup.rb +0 -0
- data/test/fakefs/.gitkeep +0 -0
- data/test/fakefs/dev/.gitkeep +0 -0
- data/test/fakefs/etc/.gitkeep +0 -0
- data/test/fakefs/home/.gitkeep +0 -0
- data/test/readme_examples_test.rb +0 -0
- data/test/setup.rb +0 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ff8ad36671b624aa1d94446930520fa7f61a5d88731328fa2c7f6bbf95d848a8
|
4
|
+
data.tar.gz: 93c450c987bbd04f0b20a068580f00e75cf41016edcc12d32dc2559eedfef6e8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c0cc266b825f3fda55713aa5967a03d239db5cbb445081d074b4293453e429aad3c2a59fe570b9fca513112ef35c34db820bb8b4a26d03a89be65d1c37d5f538
|
7
|
+
data.tar.gz: bf3ca72be9bb7b40ca34f5497dd33b0c7b80834756c5dc13add3963c4a3c5667117dc047ee7e6234f19b42a6baf47a8fef4cfb12ae30946b912f39c4b5397c88
|
data/.github/workflows/tests.yml
CHANGED
File without changes
|
data/.gitignore
CHANGED
File without changes
|
data/.projectile
CHANGED
File without changes
|
data/.rubocop.yml
CHANGED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
data/.yardopts
CHANGED
File without changes
|
data/Gemfile
CHANGED
File without changes
|
data/LICENSE
CHANGED
File without changes
|
data/README.md
CHANGED
File without changes
|
data/Rakefile.rb
CHANGED
File without changes
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
v0.3.
|
1
|
+
v0.3.3
|
data/cmd.rb.gemspec
CHANGED
@@ -10,7 +10,7 @@ Gem::Specification.new do |gem|
|
|
10
10
|
gem.licenses = ["0BSD"]
|
11
11
|
gem.files = `git ls-files`.split($/)
|
12
12
|
gem.require_paths = ["lib"]
|
13
|
-
gem.summary = "A library for building command-line applications"
|
13
|
+
gem.summary = "A library for building command-line applications, in Ruby."
|
14
14
|
gem.description = gem.summary
|
15
15
|
gem.add_runtime_dependency "ryo.rb", "~> 0.4"
|
16
16
|
gem.add_runtime_dependency "optparse", "~> 0.3"
|
data/lib/cmd/mixins/argv.rb
CHANGED
File without changes
|
data/lib/cmd/mixins/help.rb
CHANGED
File without changes
|
File without changes
|
data/lib/cmd.rb
CHANGED
File without changes
|
data/share/examples/cmd.rb/ls
CHANGED
File without changes
|
File without changes
|
data/test/fakefs/.gitkeep
CHANGED
File without changes
|
data/test/fakefs/dev/.gitkeep
CHANGED
File without changes
|
data/test/fakefs/etc/.gitkeep
CHANGED
File without changes
|
data/test/fakefs/home/.gitkeep
CHANGED
File without changes
|
File without changes
|
data/test/setup.rb
CHANGED
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cmd.rb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- '0x1eef'
|
@@ -122,7 +122,7 @@ dependencies:
|
|
122
122
|
- - "~>"
|
123
123
|
- !ruby/object:Gem::Version
|
124
124
|
version: '13.1'
|
125
|
-
description: A library for building command-line applications
|
125
|
+
description: A library for building command-line applications, in Ruby.
|
126
126
|
email:
|
127
127
|
- 0x1eef@protonmail.com
|
128
128
|
executables: []
|
@@ -177,5 +177,5 @@ requirements: []
|
|
177
177
|
rubygems_version: 3.4.10
|
178
178
|
signing_key:
|
179
179
|
specification_version: 4
|
180
|
-
summary: A library for building command-line applications
|
180
|
+
summary: A library for building command-line applications, in Ruby.
|
181
181
|
test_files: []
|