mini-cli 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/mini-cli/version.rb +1 -1
- data/mini-cli.gemspec +3 -3
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b99c5619db31b2250da1515981cf62e897939e57399e72b44c3b48d22d4c9840
|
4
|
+
data.tar.gz: 9ea02f0d1077a03ca5284ef20619a9c38370d9bcece25ba106e0b834733660c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 5877c7746653b3999ec6337e86e108276f26ba9a2142bdee0892033491cce2f788ee8dea594742cc5fb0554a1496923dfe5b80eba03409e9b6b4c4f2255d2d7d
|
7
|
+
data.tar.gz: 7c7d1e36a5dd1ae1f139826ad9063e68e38a864416744e383e3e308fb8d172ab6efc58c26c5e4875422884deb6e2fa820ec10cc7371d028fcdfa53b6e06523ba
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Mini Cli
|
2
2
|
|
3
|
-
This gem is a
|
3
|
+
This gem is a lean, easy to use CLI framework with a very small footprint. It provides an easy to use argument parsing, help displaying, minimalistic error handling and some tools like executing external programs and gather their output.
|
4
4
|
|
5
5
|
## Installation
|
6
6
|
|
data/lib/mini-cli/version.rb
CHANGED
data/mini-cli.gemspec
CHANGED
@@ -5,10 +5,10 @@ require_relative './lib/mini-cli/version'
|
|
5
5
|
GemSpec = Gem::Specification.new do |gem|
|
6
6
|
gem.name = 'mini-cli'
|
7
7
|
gem.version = MiniCli::VERSION
|
8
|
-
gem.summary = 'The
|
8
|
+
gem.summary = 'The lean CLI framework for Ruby'
|
9
9
|
gem.description = <<~DESC
|
10
|
-
This gem is a
|
11
|
-
|
10
|
+
This gem is a lean, easy to use CLI framework with a very small footprint.
|
11
|
+
It provides an easy to use argument parsing, help displaying and
|
12
12
|
minimalistic error handling.
|
13
13
|
DESC
|
14
14
|
gem.author = 'Mike Blumtritt'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mini-cli
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Mike Blumtritt
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-03-
|
11
|
+
date: 2020-03-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -53,8 +53,8 @@ dependencies:
|
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '0'
|
55
55
|
description: |
|
56
|
-
This gem is a
|
57
|
-
|
56
|
+
This gem is a lean, easy to use CLI framework with a very small footprint.
|
57
|
+
It provides an easy to use argument parsing, help displaying and
|
58
58
|
minimalistic error handling.
|
59
59
|
email:
|
60
60
|
executables: []
|
@@ -98,7 +98,7 @@ requirements: []
|
|
98
98
|
rubygems_version: 3.1.2
|
99
99
|
signing_key:
|
100
100
|
specification_version: 4
|
101
|
-
summary: The
|
101
|
+
summary: The lean CLI framework for Ruby
|
102
102
|
test_files:
|
103
103
|
- test/helper.rb
|
104
104
|
- test/mini-cli/main_test.rb
|