cloudformation_wrapper 0.2.8 → 0.2.9
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
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5696a2d03c01482607183e8666af556837a50f3004bb91307d0f0d5b30bbc959
|
|
4
|
+
data.tar.gz: 7f4583d5539761af0ca1cf9b87d924ac14f4dcf0e39f06d661837bde6e374683
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2554e49095208304f671aa8e1c8063ae8935ca562a4763147ec09a3cf7120f50b267ebbba5641614c76b80b1ae153fef959109c4ee1cd2ed59a56768b665d9d0
|
|
7
|
+
data.tar.gz: 6117b169fd00c9fe44c96601f30b1ad1666fa721374ea7153aa0dc1e300d27c761766f928142831bba070f3aa3c88dad1ec5f9463d432f08fbdbea15bf02471e
|
|
@@ -32,8 +32,6 @@ module CloudFormationWrapper
|
|
|
32
32
|
)
|
|
33
33
|
end
|
|
34
34
|
|
|
35
|
-
private
|
|
36
|
-
|
|
37
35
|
def self.verify_options(options)
|
|
38
36
|
defaults = {
|
|
39
37
|
description: 'Deployed with CloudFormation Wrapper.', parameters: {}, wait_for_stack: true
|
|
@@ -49,10 +47,6 @@ module CloudFormationWrapper
|
|
|
49
47
|
raise ArgumentError, 'parameters must be provided (Hash)'
|
|
50
48
|
end
|
|
51
49
|
|
|
52
|
-
unless !options_with_defaults[:client].nil? && (options_with_defaults[:client].is_a? Aws::CloudFormation::Client)
|
|
53
|
-
raise ArgumentError, 'If you\'re providing a client, it must be an Aws::CloudFormation::Client.'
|
|
54
|
-
end
|
|
55
|
-
|
|
56
50
|
return if options_with_defaults[:name] && (options_with_defaults[:name].is_a? String)
|
|
57
51
|
raise ArgumentError, 'name must be provided (String)'
|
|
58
52
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cloudformation_wrapper
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ted Armstrong
|
|
@@ -11,33 +11,33 @@ cert_chain: []
|
|
|
11
11
|
date: 2018-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
|
-
name:
|
|
14
|
+
name: activesupport
|
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '
|
|
19
|
+
version: '4'
|
|
20
20
|
type: :runtime
|
|
21
21
|
prerelease: false
|
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
23
|
requirements:
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '
|
|
26
|
+
version: '4'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
|
-
name:
|
|
28
|
+
name: aws-sdk-cloudformation
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '
|
|
33
|
+
version: '1'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '
|
|
40
|
+
version: '1'
|
|
41
41
|
description: Deploys and Manages AWS CloudFormation.
|
|
42
42
|
email:
|
|
43
43
|
- theodorecarmstrong@gmail.com
|