args_parser 0.1.5 → 0.1.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +2 -2
- data/History.txt +4 -0
- data/README.md +1 -1
- data/args_parser.gemspec +1 -1
- data/lib/args_parser/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd18f8f99cc8aab89d1ae2e1f03caa13c9f7acda
|
4
|
+
data.tar.gz: 36ad2bd87477a51ad8741c8c5eb78bdc7dac9201
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e105284a49feb4fbc5ade8f6f1eaa8c6355319526c6ffb0341ded36e460e808996d937d4c4fa42bf22cfbacfee3c4ff5b15b8df32c8a342b285b92ffde3f7009
|
7
|
+
data.tar.gz: 8d198872228f2e349e830798916aa569b79f66ccb48f810e67112dabda4a0882bd863f8d771870acd0392f7b656cb9db1a58d4dd5f282d56071352a46dc6cdd5
|
data/.gitignore
CHANGED
data/History.txt
CHANGED
data/README.md
CHANGED
data/args_parser.gemspec
CHANGED
@@ -7,7 +7,7 @@ Gem::Specification.new do |gem|
|
|
7
7
|
gem.version = ArgsParser::VERSION
|
8
8
|
gem.authors = ["Sho Hashimoto"]
|
9
9
|
gem.email = ["hashimoto@shokai.org"]
|
10
|
-
gem.description = %q{Parse ARGV from command line with DSL.}
|
10
|
+
gem.description = %q{Parse/Filter/Validate ARGV from command line with DSL.}
|
11
11
|
gem.summary = gem.description
|
12
12
|
gem.homepage = "http://shokai.github.com/args_parser"
|
13
13
|
|
data/lib/args_parser/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: args_parser
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sho Hashimoto
|
@@ -66,7 +66,7 @@ dependencies:
|
|
66
66
|
- - '>='
|
67
67
|
- !ruby/object:Gem::Version
|
68
68
|
version: '0'
|
69
|
-
description: Parse ARGV from command line with DSL.
|
69
|
+
description: Parse/Filter/Validate ARGV from command line with DSL.
|
70
70
|
email:
|
71
71
|
- hashimoto@shokai.org
|
72
72
|
executables: []
|
@@ -120,7 +120,7 @@ rubyforge_project:
|
|
120
120
|
rubygems_version: 2.0.3
|
121
121
|
signing_key:
|
122
122
|
specification_version: 4
|
123
|
-
summary: Parse ARGV from command line with DSL.
|
123
|
+
summary: Parse/Filter/Validate ARGV from command line with DSL.
|
124
124
|
test_files:
|
125
125
|
- test/test_args_parser.rb
|
126
126
|
- test/test_args_parser_style_equal.rb
|