args_parser 0.1.5 → 0.1.6

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9cca7b26e2263717697175dbe416ce72c78e5049
4
- data.tar.gz: a42f0ea6b99d10f7539b57894951a41eb588d0a3
3
+ metadata.gz: fd18f8f99cc8aab89d1ae2e1f03caa13c9f7acda
4
+ data.tar.gz: 36ad2bd87477a51ad8741c8c5eb78bdc7dac9201
5
5
  SHA512:
6
- metadata.gz: 4939cfd55947b1090921bd2e65bb99c8726184f8a309dfe0ae500d113253f774c319958ad96b1b80a92801bae5ecd4738425095de14b9f8e13601dbba238c5d0
7
- data.tar.gz: 549e68fcd2bffa8d75753c4a1ac8c06f9231d7e3fdb957c0bdc5332b7d96aa1855c027501af13ee79c855c12ff543b0f6df8430203a1866b30346b6111cd518e
6
+ metadata.gz: e105284a49feb4fbc5ade8f6f1eaa8c6355319526c6ffb0341ded36e460e808996d937d4c4fa42bf22cfbacfee3c4ff5b15b8df32c8a342b285b92ffde3f7009
7
+ data.tar.gz: 8d198872228f2e349e830798916aa569b79f66ccb48f810e67112dabda4a0882bd863f8d771870acd0392f7b656cb9db1a58d4dd5f282d56071352a46dc6cdd5
data/.gitignore CHANGED
@@ -1,5 +1,5 @@
1
1
  .DS_Store
2
2
  *~
3
+ *#*
3
4
  pkg/*
4
- .\#*
5
- *\#*
5
+ .ruby-version
@@ -1,3 +1,7 @@
1
+ === 0.1.6 2013-06-08
2
+
3
+ * fix gem description
4
+
1
5
  === 0.1.5 2013-06-08
2
6
 
3
7
  * bugfix Parser#has_param?
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  args_parser
2
2
  ===========
3
3
 
4
- * Parse ARGV from command line with DSL.
4
+ * Parse/Filter/Validate ARGV from command line with DSL.
5
5
  * http://shokai.github.io/args_parser
6
6
 
7
7
 
@@ -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
 
@@ -1,3 +1,3 @@
1
1
  module ArgsParser
2
- VERSION = '0.1.5'
2
+ VERSION = '0.1.6'
3
3
  end
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.5
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