zaws 0.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.
- data/.gitignore +35 -0
- data/.travis.yml +20 -0
- data/Gemfile +5 -0
- data/Gemfile.lock +78 -0
- data/LICENSE +204 -0
- data/README.md +17 -0
- data/Rakefile +26 -0
- data/bin/zaws +20 -0
- data/feature/compute/assoc_security_group.feature +55 -0
- data/feature/compute/compute.feature +138 -0
- data/feature/compute/secondary_ip.feature +107 -0
- data/feature/compute/view.feature +23 -0
- data/feature/compute/view_images.feature +24 -0
- data/feature/elasticip/elasticip.feature +138 -0
- data/feature/elasticip/view.feature +18 -0
- data/feature/hosted_zone/view.feature +17 -0
- data/feature/hosted_zone/view_record.feature +29 -0
- data/feature/load_balancer/instance_registration.feature +120 -0
- data/feature/load_balancer/listener.feature +86 -0
- data/feature/load_balancer/load_balancer.feature +101 -0
- data/feature/load_balancer/view.feature +18 -0
- data/feature/route_table/assoc_subnet.feature +128 -0
- data/feature/route_table/route_propagation.feature +93 -0
- data/feature/route_table/route_table.feature +91 -0
- data/feature/route_table/route_to_gateway.feature +69 -0
- data/feature/route_table/route_to_instance.feature +115 -0
- data/feature/route_table/view.feature +25 -0
- data/feature/security_group/ingress.feature +184 -0
- data/feature/security_group/security_group.feature +107 -0
- data/feature/security_group/view.feature +23 -0
- data/feature/subnet/subnet.feature +92 -0
- data/feature/subnet/view.feature +24 -0
- data/feature/support/env.rb +14 -0
- data/feature/version.feature +6 -0
- data/lib/zaws/aws.rb +26 -0
- data/lib/zaws/command/compute.rb +100 -0
- data/lib/zaws/command/elasticip.rb +47 -0
- data/lib/zaws/command/hosted_zone.rb +26 -0
- data/lib/zaws/command/load_balancer.rb +113 -0
- data/lib/zaws/command/route_table.rb +134 -0
- data/lib/zaws/command/security_group.rb +69 -0
- data/lib/zaws/command/subnet.rb +65 -0
- data/lib/zaws/ec2/compute.rb +247 -0
- data/lib/zaws/ec2/elasticip.rb +85 -0
- data/lib/zaws/ec2/route_table.rb +202 -0
- data/lib/zaws/ec2/security_group.rb +116 -0
- data/lib/zaws/ec2/subnet.rb +108 -0
- data/lib/zaws/ec2.rb +40 -0
- data/lib/zaws/elb/load_balancer.rb +157 -0
- data/lib/zaws/elb.rb +20 -0
- data/lib/zaws/helper/file.rb +23 -0
- data/lib/zaws/helper/option.rb +24 -0
- data/lib/zaws/helper/output.rb +46 -0
- data/lib/zaws/helper/shell.rb +25 -0
- data/lib/zaws/route53/hosted_zone.rb +36 -0
- data/lib/zaws/route53.rb +20 -0
- data/lib/zaws/version.rb +3 -0
- data/lib/zaws.rb +57 -0
- data/spec/spec_helper.rb +4 -0
- data/spec/zaws/ec2/compute/add_volume_spec.rb +39 -0
- data/spec/zaws/ec2/compute/block_device_mapping_spec.rb +31 -0
- data/spec/zaws/ec2/compute/instance_id_by_external_id_spec.rb +23 -0
- data/spec/zaws/ec2/compute/instance_ping_spec.rb +34 -0
- data/spec/zaws/ec2/compute/instance_running_spec.rb +47 -0
- data/spec/zaws/ec2/compute/network_interface_json_spec.rb +57 -0
- data/spec/zaws/ec2/compute/nosdcheck_spec.rb +17 -0
- data/spec/zaws/ec2/compute/tag_instance_spec.rb +21 -0
- data/spec/zaws/ec2/security_group/id_by_name_spec.rb +32 -0
- data/spec/zaws/ec2/subnet/available_spec.rb +22 -0
- data/spec/zaws/ec2/subnet/declare_spec.rb +31 -0
- data/spec/zaws/ec2/subnet/exists_spec.rb +33 -0
- data/spec/zaws/ec2/subnet/id_array_by_cidrblock_array_spec.rb +48 -0
- data/spec/zaws/ec2/subnet/id_by_cidrblock_spec.rb +35 -0
- data/spec/zaws/ec2/subnet/id_by_ip_spec.rb +42 -0
- data/spec/zaws/ec2/subnet/view_spec.rb +34 -0
- data/spec/zaws/elb/load_balancer/calculated_listener_spec.rb +18 -0
- data/spec/zaws/helper/option/absent_spec.rb +14 -0
- data/spec/zaws/helper/option/exclusive_spec.rb +14 -0
- data/spec/zaws/helper/option/exists_spec.rb +18 -0
- data/spec/zaws/helper/option/minimum_spec.rb +14 -0
- data/spec/zaws/helper/output/binary_nagios_check_spec.rb +19 -0
- data/spec/zaws/helper/output/colorize_spec.rb +30 -0
- data/spec/zaws/helper/output/opt_exclusive_spec.rb +14 -0
- data/spec/zaws/helper/output/opt_minimum_spec.rb +15 -0
- data/spec/zaws/helper/output/opt_required_spec.rb +12 -0
- data/spec/zaws/helper/shell/cli_spec.rb +33 -0
- data/spec/zaws/helper/shell/if_then_spec.rb +24 -0
- data/zaws.gemspec +34 -0
- metadata +350 -0
@@ -0,0 +1,33 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe ZAWS::Helper::Shell do
|
4
|
+
|
5
|
+
it "echo 'text' should return text" do
|
6
|
+
shell=ZAWS::Helper::Shell.new
|
7
|
+
expect(shell.cli("echo 'text'")).to eq("text\n")
|
8
|
+
end
|
9
|
+
|
10
|
+
it "ls_no_such_command should raise an error" do
|
11
|
+
shell=ZAWS::Helper::Shell.new
|
12
|
+
expect {shell.cli("ls_no_such_command")}.to raise_error(Errno::ENOENT)
|
13
|
+
end
|
14
|
+
|
15
|
+
it "grep exit code of 1 should raise an error" do
|
16
|
+
shell=ZAWS::Helper::Shell.new
|
17
|
+
expect {shell.cli("echo 'lookup' | grep 'lookout'")}.to raise_error(Mixlib::ShellOut::ShellCommandFailed)
|
18
|
+
end
|
19
|
+
|
20
|
+
it "grep exit code of 1 should raise an error" do
|
21
|
+
shell=ZAWS::Helper::Shell.new
|
22
|
+
expect {shell.cli("echo 'lookup' | grep 'lookout'")}.to raise_error(Mixlib::ShellOut::ShellCommandFailed)
|
23
|
+
end
|
24
|
+
|
25
|
+
it "should put colorize text to output" do
|
26
|
+
shell=ZAWS::Helper::Shell.new
|
27
|
+
output = double ('output')
|
28
|
+
output.should_receive(:puts).with("\e[34mecho 'text'\e[0m")
|
29
|
+
expect(shell.cli("echo 'text'",output)).to eq("text\n")
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
33
|
+
|
@@ -0,0 +1,24 @@
|
|
1
|
+
require 'spec_helper'
|
2
|
+
|
3
|
+
describe ZAWS::Helper::Shell do
|
4
|
+
|
5
|
+
it "what if true should echo 'text' should return text" do
|
6
|
+
shell=ZAWS::Helper::Shell.new
|
7
|
+
expect(shell.if_then(true,"echo 'text'")).to eq("text\n")
|
8
|
+
end
|
9
|
+
|
10
|
+
it "what if false should return nil" do
|
11
|
+
shell=ZAWS::Helper::Shell.new
|
12
|
+
expect(shell.if_then(false,"echo 'text'")).to be_nil
|
13
|
+
end
|
14
|
+
|
15
|
+
|
16
|
+
it "what if false should return nil and output command" do
|
17
|
+
shell=ZAWS::Helper::Shell.new
|
18
|
+
output = double ('output')
|
19
|
+
output.should_receive(:puts).with("\e[34mecho 'text'\e[0m")
|
20
|
+
expect(shell.if_then(false,"echo 'text'",output)).to be_nil
|
21
|
+
end
|
22
|
+
|
23
|
+
end
|
24
|
+
|
data/zaws.gemspec
ADDED
@@ -0,0 +1,34 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'zaws/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "zaws"
|
8
|
+
spec.version = ZAWS::VERSION
|
9
|
+
spec.authors = ["Aslan Brooke"]
|
10
|
+
spec.email = ["aslandbrooke@yahoo.com"]
|
11
|
+
spec.description = %q{the zaws gem provides command line tools for interfacing with AWS through the AWS CLI. It is required that the AWS CLI be installed on the system that this gem is used on. This gem expects the AWS credentials to be located in a location that the AWS CLI can access them, whether it be environment variables or config file.}
|
12
|
+
spec.summary = %q{Zynx AWS Automation Tool}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_runtime_dependency "thor", "~> 0.18.1"
|
22
|
+
spec.add_runtime_dependency "netaddr", "~> 1.5.0"
|
23
|
+
spec.add_runtime_dependency "mixlib-shellout", "~> 1.1.0"
|
24
|
+
spec.add_runtime_dependency "json", "~> 1.5.0"
|
25
|
+
|
26
|
+
spec.add_development_dependency "coveralls"
|
27
|
+
spec.add_development_dependency "bundler"
|
28
|
+
spec.add_development_dependency "rake"
|
29
|
+
spec.add_development_dependency "rspec", "~> 2.14.1"
|
30
|
+
spec.add_development_dependency "cucumber", "~> 1.3.14"
|
31
|
+
spec.add_development_dependency "aruba", "~> 0.5.4"
|
32
|
+
spec.add_development_dependency "aruba-doubles", "~> 1.2.1"
|
33
|
+
|
34
|
+
end
|
metadata
ADDED
@@ -0,0 +1,350 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: zaws
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Aslan Brooke
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2014-06-22 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: thor
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ~>
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: 0.18.1
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ~>
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: 0.18.1
|
30
|
+
- !ruby/object:Gem::Dependency
|
31
|
+
name: netaddr
|
32
|
+
requirement: !ruby/object:Gem::Requirement
|
33
|
+
none: false
|
34
|
+
requirements:
|
35
|
+
- - ~>
|
36
|
+
- !ruby/object:Gem::Version
|
37
|
+
version: 1.5.0
|
38
|
+
type: :runtime
|
39
|
+
prerelease: false
|
40
|
+
version_requirements: !ruby/object:Gem::Requirement
|
41
|
+
none: false
|
42
|
+
requirements:
|
43
|
+
- - ~>
|
44
|
+
- !ruby/object:Gem::Version
|
45
|
+
version: 1.5.0
|
46
|
+
- !ruby/object:Gem::Dependency
|
47
|
+
name: mixlib-shellout
|
48
|
+
requirement: !ruby/object:Gem::Requirement
|
49
|
+
none: false
|
50
|
+
requirements:
|
51
|
+
- - ~>
|
52
|
+
- !ruby/object:Gem::Version
|
53
|
+
version: 1.1.0
|
54
|
+
type: :runtime
|
55
|
+
prerelease: false
|
56
|
+
version_requirements: !ruby/object:Gem::Requirement
|
57
|
+
none: false
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: 1.1.0
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: json
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
none: false
|
66
|
+
requirements:
|
67
|
+
- - ~>
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: 1.5.0
|
70
|
+
type: :runtime
|
71
|
+
prerelease: false
|
72
|
+
version_requirements: !ruby/object:Gem::Requirement
|
73
|
+
none: false
|
74
|
+
requirements:
|
75
|
+
- - ~>
|
76
|
+
- !ruby/object:Gem::Version
|
77
|
+
version: 1.5.0
|
78
|
+
- !ruby/object:Gem::Dependency
|
79
|
+
name: coveralls
|
80
|
+
requirement: !ruby/object:Gem::Requirement
|
81
|
+
none: false
|
82
|
+
requirements:
|
83
|
+
- - ! '>='
|
84
|
+
- !ruby/object:Gem::Version
|
85
|
+
version: '0'
|
86
|
+
type: :development
|
87
|
+
prerelease: false
|
88
|
+
version_requirements: !ruby/object:Gem::Requirement
|
89
|
+
none: false
|
90
|
+
requirements:
|
91
|
+
- - ! '>='
|
92
|
+
- !ruby/object:Gem::Version
|
93
|
+
version: '0'
|
94
|
+
- !ruby/object:Gem::Dependency
|
95
|
+
name: bundler
|
96
|
+
requirement: !ruby/object:Gem::Requirement
|
97
|
+
none: false
|
98
|
+
requirements:
|
99
|
+
- - ! '>='
|
100
|
+
- !ruby/object:Gem::Version
|
101
|
+
version: '0'
|
102
|
+
type: :development
|
103
|
+
prerelease: false
|
104
|
+
version_requirements: !ruby/object:Gem::Requirement
|
105
|
+
none: false
|
106
|
+
requirements:
|
107
|
+
- - ! '>='
|
108
|
+
- !ruby/object:Gem::Version
|
109
|
+
version: '0'
|
110
|
+
- !ruby/object:Gem::Dependency
|
111
|
+
name: rake
|
112
|
+
requirement: !ruby/object:Gem::Requirement
|
113
|
+
none: false
|
114
|
+
requirements:
|
115
|
+
- - ! '>='
|
116
|
+
- !ruby/object:Gem::Version
|
117
|
+
version: '0'
|
118
|
+
type: :development
|
119
|
+
prerelease: false
|
120
|
+
version_requirements: !ruby/object:Gem::Requirement
|
121
|
+
none: false
|
122
|
+
requirements:
|
123
|
+
- - ! '>='
|
124
|
+
- !ruby/object:Gem::Version
|
125
|
+
version: '0'
|
126
|
+
- !ruby/object:Gem::Dependency
|
127
|
+
name: rspec
|
128
|
+
requirement: !ruby/object:Gem::Requirement
|
129
|
+
none: false
|
130
|
+
requirements:
|
131
|
+
- - ~>
|
132
|
+
- !ruby/object:Gem::Version
|
133
|
+
version: 2.14.1
|
134
|
+
type: :development
|
135
|
+
prerelease: false
|
136
|
+
version_requirements: !ruby/object:Gem::Requirement
|
137
|
+
none: false
|
138
|
+
requirements:
|
139
|
+
- - ~>
|
140
|
+
- !ruby/object:Gem::Version
|
141
|
+
version: 2.14.1
|
142
|
+
- !ruby/object:Gem::Dependency
|
143
|
+
name: cucumber
|
144
|
+
requirement: !ruby/object:Gem::Requirement
|
145
|
+
none: false
|
146
|
+
requirements:
|
147
|
+
- - ~>
|
148
|
+
- !ruby/object:Gem::Version
|
149
|
+
version: 1.3.14
|
150
|
+
type: :development
|
151
|
+
prerelease: false
|
152
|
+
version_requirements: !ruby/object:Gem::Requirement
|
153
|
+
none: false
|
154
|
+
requirements:
|
155
|
+
- - ~>
|
156
|
+
- !ruby/object:Gem::Version
|
157
|
+
version: 1.3.14
|
158
|
+
- !ruby/object:Gem::Dependency
|
159
|
+
name: aruba
|
160
|
+
requirement: !ruby/object:Gem::Requirement
|
161
|
+
none: false
|
162
|
+
requirements:
|
163
|
+
- - ~>
|
164
|
+
- !ruby/object:Gem::Version
|
165
|
+
version: 0.5.4
|
166
|
+
type: :development
|
167
|
+
prerelease: false
|
168
|
+
version_requirements: !ruby/object:Gem::Requirement
|
169
|
+
none: false
|
170
|
+
requirements:
|
171
|
+
- - ~>
|
172
|
+
- !ruby/object:Gem::Version
|
173
|
+
version: 0.5.4
|
174
|
+
- !ruby/object:Gem::Dependency
|
175
|
+
name: aruba-doubles
|
176
|
+
requirement: !ruby/object:Gem::Requirement
|
177
|
+
none: false
|
178
|
+
requirements:
|
179
|
+
- - ~>
|
180
|
+
- !ruby/object:Gem::Version
|
181
|
+
version: 1.2.1
|
182
|
+
type: :development
|
183
|
+
prerelease: false
|
184
|
+
version_requirements: !ruby/object:Gem::Requirement
|
185
|
+
none: false
|
186
|
+
requirements:
|
187
|
+
- - ~>
|
188
|
+
- !ruby/object:Gem::Version
|
189
|
+
version: 1.2.1
|
190
|
+
description: the zaws gem provides command line tools for interfacing with AWS through
|
191
|
+
the AWS CLI. It is required that the AWS CLI be installed on the system that this
|
192
|
+
gem is used on. This gem expects the AWS credentials to be located in a location
|
193
|
+
that the AWS CLI can access them, whether it be environment variables or config
|
194
|
+
file.
|
195
|
+
email:
|
196
|
+
- aslandbrooke@yahoo.com
|
197
|
+
executables:
|
198
|
+
- zaws
|
199
|
+
extensions: []
|
200
|
+
extra_rdoc_files: []
|
201
|
+
files:
|
202
|
+
- .gitignore
|
203
|
+
- .travis.yml
|
204
|
+
- Gemfile
|
205
|
+
- Gemfile.lock
|
206
|
+
- LICENSE
|
207
|
+
- README.md
|
208
|
+
- Rakefile
|
209
|
+
- bin/zaws
|
210
|
+
- feature/compute/assoc_security_group.feature
|
211
|
+
- feature/compute/compute.feature
|
212
|
+
- feature/compute/secondary_ip.feature
|
213
|
+
- feature/compute/view.feature
|
214
|
+
- feature/compute/view_images.feature
|
215
|
+
- feature/elasticip/elasticip.feature
|
216
|
+
- feature/elasticip/view.feature
|
217
|
+
- feature/hosted_zone/view.feature
|
218
|
+
- feature/hosted_zone/view_record.feature
|
219
|
+
- feature/load_balancer/instance_registration.feature
|
220
|
+
- feature/load_balancer/listener.feature
|
221
|
+
- feature/load_balancer/load_balancer.feature
|
222
|
+
- feature/load_balancer/view.feature
|
223
|
+
- feature/route_table/assoc_subnet.feature
|
224
|
+
- feature/route_table/route_propagation.feature
|
225
|
+
- feature/route_table/route_table.feature
|
226
|
+
- feature/route_table/route_to_gateway.feature
|
227
|
+
- feature/route_table/route_to_instance.feature
|
228
|
+
- feature/route_table/view.feature
|
229
|
+
- feature/security_group/ingress.feature
|
230
|
+
- feature/security_group/security_group.feature
|
231
|
+
- feature/security_group/view.feature
|
232
|
+
- feature/subnet/subnet.feature
|
233
|
+
- feature/subnet/view.feature
|
234
|
+
- feature/support/env.rb
|
235
|
+
- feature/version.feature
|
236
|
+
- lib/zaws.rb
|
237
|
+
- lib/zaws/aws.rb
|
238
|
+
- lib/zaws/command/compute.rb
|
239
|
+
- lib/zaws/command/elasticip.rb
|
240
|
+
- lib/zaws/command/hosted_zone.rb
|
241
|
+
- lib/zaws/command/load_balancer.rb
|
242
|
+
- lib/zaws/command/route_table.rb
|
243
|
+
- lib/zaws/command/security_group.rb
|
244
|
+
- lib/zaws/command/subnet.rb
|
245
|
+
- lib/zaws/ec2.rb
|
246
|
+
- lib/zaws/ec2/compute.rb
|
247
|
+
- lib/zaws/ec2/elasticip.rb
|
248
|
+
- lib/zaws/ec2/route_table.rb
|
249
|
+
- lib/zaws/ec2/security_group.rb
|
250
|
+
- lib/zaws/ec2/subnet.rb
|
251
|
+
- lib/zaws/elb.rb
|
252
|
+
- lib/zaws/elb/load_balancer.rb
|
253
|
+
- lib/zaws/helper/file.rb
|
254
|
+
- lib/zaws/helper/option.rb
|
255
|
+
- lib/zaws/helper/output.rb
|
256
|
+
- lib/zaws/helper/shell.rb
|
257
|
+
- lib/zaws/route53.rb
|
258
|
+
- lib/zaws/route53/hosted_zone.rb
|
259
|
+
- lib/zaws/version.rb
|
260
|
+
- spec/spec_helper.rb
|
261
|
+
- spec/zaws/ec2/compute/add_volume_spec.rb
|
262
|
+
- spec/zaws/ec2/compute/block_device_mapping_spec.rb
|
263
|
+
- spec/zaws/ec2/compute/instance_id_by_external_id_spec.rb
|
264
|
+
- spec/zaws/ec2/compute/instance_ping_spec.rb
|
265
|
+
- spec/zaws/ec2/compute/instance_running_spec.rb
|
266
|
+
- spec/zaws/ec2/compute/network_interface_json_spec.rb
|
267
|
+
- spec/zaws/ec2/compute/nosdcheck_spec.rb
|
268
|
+
- spec/zaws/ec2/compute/tag_instance_spec.rb
|
269
|
+
- spec/zaws/ec2/security_group/id_by_name_spec.rb
|
270
|
+
- spec/zaws/ec2/subnet/available_spec.rb
|
271
|
+
- spec/zaws/ec2/subnet/declare_spec.rb
|
272
|
+
- spec/zaws/ec2/subnet/exists_spec.rb
|
273
|
+
- spec/zaws/ec2/subnet/id_array_by_cidrblock_array_spec.rb
|
274
|
+
- spec/zaws/ec2/subnet/id_by_cidrblock_spec.rb
|
275
|
+
- spec/zaws/ec2/subnet/id_by_ip_spec.rb
|
276
|
+
- spec/zaws/ec2/subnet/view_spec.rb
|
277
|
+
- spec/zaws/elb/load_balancer/calculated_listener_spec.rb
|
278
|
+
- spec/zaws/helper/option/absent_spec.rb
|
279
|
+
- spec/zaws/helper/option/exclusive_spec.rb
|
280
|
+
- spec/zaws/helper/option/exists_spec.rb
|
281
|
+
- spec/zaws/helper/option/minimum_spec.rb
|
282
|
+
- spec/zaws/helper/output/binary_nagios_check_spec.rb
|
283
|
+
- spec/zaws/helper/output/colorize_spec.rb
|
284
|
+
- spec/zaws/helper/output/opt_exclusive_spec.rb
|
285
|
+
- spec/zaws/helper/output/opt_minimum_spec.rb
|
286
|
+
- spec/zaws/helper/output/opt_required_spec.rb
|
287
|
+
- spec/zaws/helper/shell/cli_spec.rb
|
288
|
+
- spec/zaws/helper/shell/if_then_spec.rb
|
289
|
+
- zaws.gemspec
|
290
|
+
homepage: ''
|
291
|
+
licenses:
|
292
|
+
- MIT
|
293
|
+
post_install_message:
|
294
|
+
rdoc_options: []
|
295
|
+
require_paths:
|
296
|
+
- lib
|
297
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
298
|
+
none: false
|
299
|
+
requirements:
|
300
|
+
- - ! '>='
|
301
|
+
- !ruby/object:Gem::Version
|
302
|
+
version: '0'
|
303
|
+
segments:
|
304
|
+
- 0
|
305
|
+
hash: 4377404040725906656
|
306
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
307
|
+
none: false
|
308
|
+
requirements:
|
309
|
+
- - ! '>='
|
310
|
+
- !ruby/object:Gem::Version
|
311
|
+
version: '0'
|
312
|
+
segments:
|
313
|
+
- 0
|
314
|
+
hash: 4377404040725906656
|
315
|
+
requirements: []
|
316
|
+
rubyforge_project:
|
317
|
+
rubygems_version: 1.8.24
|
318
|
+
signing_key:
|
319
|
+
specification_version: 3
|
320
|
+
summary: Zynx AWS Automation Tool
|
321
|
+
test_files:
|
322
|
+
- spec/spec_helper.rb
|
323
|
+
- spec/zaws/ec2/compute/add_volume_spec.rb
|
324
|
+
- spec/zaws/ec2/compute/block_device_mapping_spec.rb
|
325
|
+
- spec/zaws/ec2/compute/instance_id_by_external_id_spec.rb
|
326
|
+
- spec/zaws/ec2/compute/instance_ping_spec.rb
|
327
|
+
- spec/zaws/ec2/compute/instance_running_spec.rb
|
328
|
+
- spec/zaws/ec2/compute/network_interface_json_spec.rb
|
329
|
+
- spec/zaws/ec2/compute/nosdcheck_spec.rb
|
330
|
+
- spec/zaws/ec2/compute/tag_instance_spec.rb
|
331
|
+
- spec/zaws/ec2/security_group/id_by_name_spec.rb
|
332
|
+
- spec/zaws/ec2/subnet/available_spec.rb
|
333
|
+
- spec/zaws/ec2/subnet/declare_spec.rb
|
334
|
+
- spec/zaws/ec2/subnet/exists_spec.rb
|
335
|
+
- spec/zaws/ec2/subnet/id_array_by_cidrblock_array_spec.rb
|
336
|
+
- spec/zaws/ec2/subnet/id_by_cidrblock_spec.rb
|
337
|
+
- spec/zaws/ec2/subnet/id_by_ip_spec.rb
|
338
|
+
- spec/zaws/ec2/subnet/view_spec.rb
|
339
|
+
- spec/zaws/elb/load_balancer/calculated_listener_spec.rb
|
340
|
+
- spec/zaws/helper/option/absent_spec.rb
|
341
|
+
- spec/zaws/helper/option/exclusive_spec.rb
|
342
|
+
- spec/zaws/helper/option/exists_spec.rb
|
343
|
+
- spec/zaws/helper/option/minimum_spec.rb
|
344
|
+
- spec/zaws/helper/output/binary_nagios_check_spec.rb
|
345
|
+
- spec/zaws/helper/output/colorize_spec.rb
|
346
|
+
- spec/zaws/helper/output/opt_exclusive_spec.rb
|
347
|
+
- spec/zaws/helper/output/opt_minimum_spec.rb
|
348
|
+
- spec/zaws/helper/output/opt_required_spec.rb
|
349
|
+
- spec/zaws/helper/shell/cli_spec.rb
|
350
|
+
- spec/zaws/helper/shell/if_then_spec.rb
|