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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 3f71b96747e645a7e4ab1131c3e52840f63f22af4035d06b98f2d21172716d9b
4
- data.tar.gz: a8ec28b1326a313f16ec8986f85a56b60f1b8c9832583324b79fd6a55c6a6228
3
+ metadata.gz: b99c5619db31b2250da1515981cf62e897939e57399e72b44c3b48d22d4c9840
4
+ data.tar.gz: 9ea02f0d1077a03ca5284ef20619a9c38370d9bcece25ba106e0b834733660c1
5
5
  SHA512:
6
- metadata.gz: 72575dc73beedd924a2080b8cb436dcb11b78d9897e4f9eb87836dff6af028845d077c069540b06a5b7b93c6a2719c2de3a53a4e19996476a8c5871332fe97bb
7
- data.tar.gz: 6848f5981ef7ce5bb4545a015b309f549450796a5d6530f4fd0f56fd3c315e7347da2afa318048facdb077db0eeee21676cd305b5cd17a863cb2037f5323cf32
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 minimalistic, easy to use CLI framework with a very small footprint. I provides an easy to use argument parsing, help displaying, minimalistic error handling and some tools like executing external programs and gather their output.
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
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MiniCli
4
- VERSION = '0.1.0'
4
+ VERSION = '0.1.1'
5
5
  end
@@ -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 minimalistic CLI framework for Ruby'
8
+ gem.summary = 'The lean CLI framework for Ruby'
9
9
  gem.description = <<~DESC
10
- This gem is a minimalistic, easy to use CLI framework with a very small
11
- footprint. I provides an easy to use argument parsing, help displaying and
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.0
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-08 00:00:00.000000000 Z
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 minimalistic, easy to use CLI framework with a very small
57
- footprint. I provides an easy to use argument parsing, help displaying and
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 minimalistic CLI framework for Ruby
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