holepunch 1.0.0 → 1.0.1

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: fe47a0599c4e1b19b2d568547aeffe9da1f6fe7c
4
- data.tar.gz: 587e038f58741e6f9964cc3de7bbfe633408d5e5
3
+ metadata.gz: 2b279b2eeb6d71a22be15c89d5df8d0a5809f626
4
+ data.tar.gz: b8f9c861cb294128f381b9e6742e76ca2c63c668
5
5
  SHA512:
6
- metadata.gz: 91dcdcd8826236fe71ec2dfe9a1267797418f832611960912e95401a2c36478b1cdb2cb650b5467d2f6760859eeaf1beec58d94aedd6b638eca0b746b791facc
7
- data.tar.gz: 11b27c316a5d8c62c69055c9b12271b33e05b57535c541518c954b9e2bfab5482e679bd13788bca94cf154c25e3e4b41dccb1381d106243f169319028f553ef3
6
+ metadata.gz: d82f17fcf4e7881ce29141b13801b527483a964e8f42cd45d82cbd5049f3a753449374b2a40d57b388f3c1ea0ef9c9f618296e52d68d6a71d84b1f418b429bb0
7
+ data.tar.gz: 6e4ebfa45a20aa7f4fc5b034c7f8bfde3b45c56c5eb7e96dd6ea23042109faa8d476755a638c15c79aa73c11024aae7e5cda6ff103b6460701d66b43b7e82b69
@@ -83,7 +83,7 @@ module HolePunch
83
83
  parser.on('-K', '--aws-secret-access-key SECRET', String, 'Your AWS API Secret Access Key') do |value|
84
84
  opts.aws_secret_access_key = value
85
85
  end
86
- parser.on('-r', '--region REGION', String, 'Your AWS region') do |v|
86
+ parser.on('-r', '--aws-region REGION', String, 'Your AWS region') do |v|
87
87
  opts.aws_region = v
88
88
  end
89
89
  parser.on('-v', '--verbose', 'verbose output') do |v|
@@ -19,5 +19,5 @@
19
19
  # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
20
20
  #
21
21
  module HolePunch
22
- VERSION = '1.0.0'
22
+ VERSION = '1.0.1'
23
23
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: holepunch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ben Scott
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2014-06-13 00:00:00.000000000 Z
12
+ date: 2014-06-16 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: aws-sdk
@@ -55,6 +55,7 @@ dependencies:
55
55
  version: '3.0'
56
56
  description: |
57
57
  # holepunch
58
+ [![Gem Version](https://badge.fury.io/rb/holepunch.svg)](http://badge.fury.io/rb/holepunch)
58
59
  [![Build Status](https://travis-ci.org/undeadlabs/holepunch.svg?branch=master)](https://travis-ci.org/undeadlabs/holepunch)
59
60
 
60
61
  Holepunch manages AWS EC2 security groups in a declarative way through a DSL.
@@ -78,7 +79,7 @@ description: |
78
79
  ## Basic Configuration
79
80
 
80
81
  You need to provide your AWS security credentials and a region. These can be
81
- provided as the command-line options, or you can use the standard AWS
82
+ provided via the command-line options, or you can use the standard AWS
82
83
  environment variables:
83
84
 
84
85
  ```bash