argy 0.2.1 → 0.2.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/README.md +1 -1
- data/argy.gemspec +4 -1
- data/lib/argy/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 705e6aac98bf72e6c437015d4412a4d772631cde
|
4
|
+
data.tar.gz: fa357d7b733815d35c3458424547a1560c0e84fb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 106e6a1d9cb175a3b2665fc19b330edcee53874216db111bd43e50846389d27060a82a299bca5317f549faed0bd53bff36fbe2498d7e0b002b4d9b9d09da0c23
|
7
|
+
data.tar.gz: 8ba898ff6283087ea8508a2a5471394d6cb5abc1ce6fccd3733c3592f90d18fbea316b78f1c7514069a54443daf5a8ffe77c8dcb851debe188f3ebe5f89b1ec1
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
data/argy.gemspec
CHANGED
@@ -8,9 +8,12 @@ Gem::Specification.new do |spec|
|
|
8
8
|
spec.authors = ["Ray Zane"]
|
9
9
|
spec.email = ["raymondzane@gmail.com"]
|
10
10
|
|
11
|
-
spec.summary = %q{
|
11
|
+
spec.summary = %q{Yet another command-line option parser.}
|
12
12
|
spec.license = "MIT"
|
13
13
|
|
14
|
+
spec.metadata["source_code_uri"] = "https://github.com/rzane/argy"
|
15
|
+
spec.metadata["documentation_uri"] = "https://rubydoc.info/github/rzane/argy"
|
16
|
+
|
14
17
|
# Specify which files should be added to the gem when it is released.
|
15
18
|
# The `git ls-files -z` loads the files in the RubyGem that have been added into git.
|
16
19
|
spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
|
data/lib/argy/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: argy
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ray Zane
|
@@ -84,7 +84,9 @@ files:
|
|
84
84
|
homepage:
|
85
85
|
licenses:
|
86
86
|
- MIT
|
87
|
-
metadata:
|
87
|
+
metadata:
|
88
|
+
source_code_uri: https://github.com/rzane/argy
|
89
|
+
documentation_uri: https://rubydoc.info/github/rzane/argy
|
88
90
|
post_install_message:
|
89
91
|
rdoc_options: []
|
90
92
|
require_paths:
|
@@ -104,5 +106,5 @@ rubyforge_project:
|
|
104
106
|
rubygems_version: 2.6.14
|
105
107
|
signing_key:
|
106
108
|
specification_version: 4
|
107
|
-
summary:
|
109
|
+
summary: Yet another command-line option parser.
|
108
110
|
test_files: []
|