cloudformation_wrapper 0.2.6 → 0.2.7

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
  SHA256:
3
- metadata.gz: d6247b8de0f658c03b4ebb82a1af4816516175a47d664f913bcdabdbc89235a6
4
- data.tar.gz: 8328f3c659df395dfdb5ae702723e444811d89fb42cb42d59d11bda6981214d3
3
+ metadata.gz: ddb9997283d392c5d729bd9e32a9420bbdf6de32fe6a50d0eb7d562318d9688c
4
+ data.tar.gz: e8d01268596a755c126b7c59e3d5ef0ee70dcb764a9f65a3779194090e367964
5
5
  SHA512:
6
- metadata.gz: 0f334a643001db70f3b1562ec87a0d1a263184ab1e922a8d8667bfe101aa855f74d5e8b3a095820aaabe87a3bed69d0b8c9f45f150f1c6f1ab7f1966845437f3
7
- data.tar.gz: dc10845ab1d41fa0c3eae689bd593b5441f19e45b6c9a255547c49fd8e1633a8289decd1d5d68a8babab65c571ba8ad49cf89122bd3b0f7d48845dfc210e77a0
6
+ metadata.gz: 27fb4604a5ac431fa2a6dd1b29289628c5963a73f64de71c889a3633798184274ce5a425861117777d2fd931d8c5cbaa76b592dff3a7e3e89ff44d58cc586eef
7
+ data.tar.gz: b3ae0052a1b46dbb0068e158b83040ff5fa72d51ab730270050afe2ee5c2cdf11127d568f0cd615fe9aefadfa315f94fe9ab74818c5dc3c5540aa510541c3b1a
@@ -49,7 +49,7 @@ module CloudFormationWrapper
49
49
  raise ArgumentError, 'parameters must be provided (Hash)'
50
50
  end
51
51
 
52
- unless options_with_defaults[:client] && (options_with_defaults[:client].is_a? Aws::CloudFormation::Client)
52
+ unless !options_with_defaults[:client].nil? && (options_with_defaults[:client].is_a? Aws::CloudFormation::Client)
53
53
  raise ArgumentError, 'If you\'re providing a client, it must be an Aws::CloudFormation::Client.'
54
54
  end
55
55
 
@@ -1,4 +1,4 @@
1
1
  module CloudFormationWrapper
2
2
  # @!visibility private
3
- VERSION = '0.2.6'.freeze
3
+ VERSION = '0.2.7'.freeze
4
4
  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.6
4
+ version: 0.2.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ted Armstrong