piculet 0.2.4 → 0.2.5
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/lib/piculet/version.rb +1 -1
- data/lib/piculet/wrapper/security-group-collection.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 185c4b8d6fa4fdce46b1462a5a5147b79964d2c9
|
|
4
|
+
data.tar.gz: cb2cbee9f9e0d8790457871c234dba9ca9d3794a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c53efed053c5653ab528b1b3a6e5203ee7be450a571b318725cfb46af47876eb3895696ca51ca0ae2ff2d7b8f81d1ed8554a50b7b0c5ba50c0937c741cb44c5a
|
|
7
|
+
data.tar.gz: e034869fa8113e5e56ac1582cc46e44826f4371d73a89e526aaa178b989e9e169fd2aa96290291fbd282b126d55d47348254dcba353c35e8e48bb46d3f25cff2
|
data/lib/piculet/version.rb
CHANGED
|
@@ -18,7 +18,7 @@ module Piculet
|
|
|
18
18
|
log(:info, 'Create SecurityGroup', :cyan, "#{opts[:vpc] || :classic} > #{name}")
|
|
19
19
|
|
|
20
20
|
if @options.dry_run
|
|
21
|
-
sg = OpenStruct.new({:id => '<new security group>', :name => name, :vpc_id => opts[:vpc]}.merge(opts))
|
|
21
|
+
sg = OpenStruct.new({:id => '<new security group>', :name => name, :vpc_id => opts[:vpc], :tags => {}}.merge(opts))
|
|
22
22
|
else
|
|
23
23
|
sg = @security_groups.create(name, opts)
|
|
24
24
|
@options.updated = true
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: piculet
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- winebarrel
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-
|
|
11
|
+
date: 2014-10-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk
|
|
@@ -111,14 +111,13 @@ extra_rdoc_files: []
|
|
|
111
111
|
files:
|
|
112
112
|
- README.md
|
|
113
113
|
- bin/piculet
|
|
114
|
-
- lib/piculet.rb
|
|
115
114
|
- lib/piculet/client.rb
|
|
116
|
-
- lib/piculet/dsl.rb
|
|
117
115
|
- lib/piculet/dsl/converter.rb
|
|
118
116
|
- lib/piculet/dsl/ec2.rb
|
|
119
117
|
- lib/piculet/dsl/permission.rb
|
|
120
118
|
- lib/piculet/dsl/permissions.rb
|
|
121
119
|
- lib/piculet/dsl/security-group.rb
|
|
120
|
+
- lib/piculet/dsl.rb
|
|
122
121
|
- lib/piculet/exporter.rb
|
|
123
122
|
- lib/piculet/ext/ec2-owner-id-ext.rb
|
|
124
123
|
- lib/piculet/ext/ip-permission-collection-ext.rb
|
|
@@ -131,6 +130,7 @@ files:
|
|
|
131
130
|
- lib/piculet/wrapper/permission.rb
|
|
132
131
|
- lib/piculet/wrapper/security-group-collection.rb
|
|
133
132
|
- lib/piculet/wrapper/security-group.rb
|
|
133
|
+
- lib/piculet.rb
|
|
134
134
|
homepage: https://github.com/winebarrel/piculet
|
|
135
135
|
licenses:
|
|
136
136
|
- MIT
|
|
@@ -151,7 +151,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
151
151
|
version: '0'
|
|
152
152
|
requirements: []
|
|
153
153
|
rubyforge_project:
|
|
154
|
-
rubygems_version: 2.
|
|
154
|
+
rubygems_version: 2.0.14
|
|
155
155
|
signing_key:
|
|
156
156
|
specification_version: 4
|
|
157
157
|
summary: Piculet is a tool to manage EC2 Security Group.
|