piculet 0.2.4 → 0.2.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e0055ebbe6b64ab5042daa9f1abcf85d70038256
4
- data.tar.gz: d1ff3e39edd0b014616b25667baf7a34c334bff4
3
+ metadata.gz: 185c4b8d6fa4fdce46b1462a5a5147b79964d2c9
4
+ data.tar.gz: cb2cbee9f9e0d8790457871c234dba9ca9d3794a
5
5
  SHA512:
6
- metadata.gz: 58a1269880c8d577b03e35420f0c79d2e75e0845c9ed2a704cc76fbfba4e49bc539ae3916ad6e0c73d8f468b75094b9634318b016d179973fa3d8cef7d99add6
7
- data.tar.gz: 4ed0a6eaf31f29c411d13283095acbfabcda04222cfff339a4fb1a7aa5a673941124f45919d48ec8fcc3f6ba67e9fdb9cb54068254111dd03271bb4a13ad178d
6
+ metadata.gz: c53efed053c5653ab528b1b3a6e5203ee7be450a571b318725cfb46af47876eb3895696ca51ca0ae2ff2d7b8f81d1ed8554a50b7b0c5ba50c0937c741cb44c5a
7
+ data.tar.gz: e034869fa8113e5e56ac1582cc46e44826f4371d73a89e526aaa178b989e9e169fd2aa96290291fbd282b126d55d47348254dcba353c35e8e48bb46d3f25cff2
@@ -1,3 +1,3 @@
1
1
  module Piculet
2
- VERSION = "0.2.4"
2
+ VERSION = "0.2.5"
3
3
  end
@@ -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
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-09-15 00:00:00.000000000 Z
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.4.1
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.