simple_args 0.0.1 → 0.0.2
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.
- checksums.yaml +4 -4
- data/README.md +17 -0
- data/lib/simple_args.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bcb09029ed6fbaa9620cbf36ce26bbca6396c9f3a96e2a0219bca983eabbeabe
|
4
|
+
data.tar.gz: 0f99bc3b2b8bb4bf210acd831788027db9684f4fb7f0ed2a1121521a123b54c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 91e6b7e259dc0e00690a7b4b59b006134c217280961cf71e58ee8233924221d02c132d9fea8dcf4b6146b56a56102dc2196c42fa7283a3ff63909fe3a01ac7ad
|
7
|
+
data.tar.gz: 06444c90a3c32b8a7fe3c43f4dc644ce026b728a6917817860a8907f6bed6b9ae3a7e76e43a250da87b4bc21799d0a81060ae651cb5e99ba17ed1096f27583b0
|
data/README.md
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
[](https://badge.fury.io/rb/simple_args)
|
2
|
+
|
1
3
|
# simple_args
|
2
4
|
|
3
5
|
A simple argument parser, which is the right fit if you want
|
@@ -7,3 +9,18 @@ A simple argument parser, which is the right fit if you want
|
|
7
9
|
* A result object with a `keywords` hash and `positionals` array
|
8
10
|
* Defined methods on your result for predefined options
|
9
11
|
* Use value options __only__ with the `--key=value` syntax
|
12
|
+
|
13
|
+
#
|
14
|
+
|
15
|
+
|
16
|
+
|
17
|
+
# Author
|
18
|
+
|
19
|
+
Copyright © 2024 Robert Dober
|
20
|
+
robert.dober@gmail.com
|
21
|
+
|
22
|
+
# LICENSE
|
23
|
+
|
24
|
+
GNU AFFERO GENERAL PUBLIC LICENSE, Version 3, 19 November 2007. Please refer to [LICENSE](LICENSE) for details.
|
25
|
+
|
26
|
+
<!-- SPDX-License-Identifier: AGPL-3.0-or-later -->
|
data/lib/simple_args.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: simple_args
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Robert Dober
|
@@ -46,7 +46,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
46
46
|
- !ruby/object:Gem::Version
|
47
47
|
version: '0'
|
48
48
|
requirements: []
|
49
|
-
rubygems_version: 3.5.
|
49
|
+
rubygems_version: 3.5.14
|
50
50
|
signing_key:
|
51
51
|
specification_version: 4
|
52
52
|
summary: A simple argument parser, which is the right fit if you want * Aliases for
|