opendelivery 0.0.15 → 0.0.16

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.
Files changed (2) hide show
  1. data/lib/opendelivery/stack.rb +4 -4
  2. metadata +1 -1
@@ -47,14 +47,14 @@ module OpenDelivery
47
47
  end
48
48
 
49
49
 
50
- def create(stack_name, template, parameters = {}, wait?=false, domain=nil)
50
+ def create(stack_name, template, parameters = {}, wait=false, domain=nil)
51
51
  stack = @cfn.stacks.create(stack_name,
52
52
  File.open(template, "r").read,
53
53
  :parameters => parameters,
54
54
  :capabilities => ["CAPABILITY_IAM"],
55
55
  :disable_rollback => true)
56
56
 
57
- wait_for_stack(stack, wait?)
57
+ wait_for_stack(stack, wait)
58
58
 
59
59
  @domain.load_stack_properties(domain, stack)
60
60
  end
@@ -92,8 +92,8 @@ module OpenDelivery
92
92
 
93
93
  protected
94
94
 
95
- def wait_for_stack(stack, wait?)
96
- if wait?
95
+ def wait_for_stack(stack, wait)
96
+ if wait
97
97
  while stack.status != "CREATE_COMPLETE"
98
98
  sleep 20
99
99
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opendelivery
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.15
4
+ version: 0.0.16
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors: