kumo_keisei 2.1.0 → 2.1.1.pre

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: 5a1997e94015e3b5c97915031183ea8945773e9b
4
- data.tar.gz: 22f51402be0f01919a948b75410df280ce73898e
3
+ metadata.gz: b982791b556698d4c9e779c8f60aa5d2cdf1751c
4
+ data.tar.gz: 6f8be5d13cf247d70367eaf408515ac0f4d3b0bb
5
5
  SHA512:
6
- metadata.gz: 57b9809c9d95b38b6d4d9459015d33695123ba819ece73dc900a188fbb249474a70a33d7a57ee9a6d9c1c00a3f6ffb4a2fa185c32f2b79433efdc75d318ba072
7
- data.tar.gz: 60ba8b07cbae4502f2cdbb44f0b187fc122c86b1070515c6c911ec319aa65bd01799a44c8036604c8c89112348ceb4d456f2ec7e324e769398f22a59f9f34bba
6
+ metadata.gz: c7aa5506399e3b8316662ae92dbca13eb2f9f3024418c70fcff66909a43ab59db12817835f101c09f143e7457548a65cef01e897d3b8b50ed068f632e0824f0f
7
+ data.tar.gz: 28b6d3717c7c023697fbbcf6b0380a5174918421c11965d7a0c1534af8d79b6238218e026001e8aa3c924a12c8f82b34294d60bb4a0be0f4eddafc1a011ec7e7
data/README.md CHANGED
@@ -53,7 +53,7 @@ This gem is tested with Ruby (MRI) versions 1.9.3 and 2.2.3.
53
53
 
54
54
  Changes to the gem can be manually tested end to end in a project that uses the gem (i.e. http-wala).
55
55
 
56
- 1. First start the dev-tools container: `baxter kumo tools debug non-production`
56
+ 1. First start the dev-tools container: `kumo tools debug non-production`
57
57
  1. Re-install the gem: `gem specific_install https://github.com/redbubble/kumo_keisei_gem.git -b <your_branch>`
58
58
  1. Fire up a console: `irb`
59
59
  1. Require the gem: `require "kumo_keisei"`
data/VERSION CHANGED
@@ -1 +1 @@
1
- 2.1.0
1
+ 2.1.1.pre
@@ -32,7 +32,6 @@ module KumoKeisei
32
32
  end
33
33
 
34
34
  def initialize(stack_name, stack_template, stack_params_filepath = nil, confirmation_timeout=30)
35
- raise StackValidationError.new("The stack name needs to be 32 characters or shorter") if stack_name.length > 32
36
35
  @stack_name = stack_name
37
36
  @stack_template = stack_template
38
37
  @stack_params_filepath = stack_params_filepath
@@ -115,6 +114,8 @@ module KumoKeisei
115
114
  end
116
115
 
117
116
  def create!(dynamic_params)
117
+ raise StackValidationError.new("The stack name needs to be 32 characters or shorter") if @stack_name.length > 32
118
+
118
119
  cloudformation_params = ParameterBuilder.new(dynamic_params, @stack_params_filepath).params
119
120
  cloudformation.create_stack(
120
121
  stack_name: @stack_name,
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kumo_keisei
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.0
4
+ version: 2.1.1.pre
5
5
  platform: ruby
6
6
  authors:
7
7
  - Redbubble
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-05-26 00:00:00.000000000 Z
11
+ date: 2016-05-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk
@@ -127,9 +127,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
127
127
  version: '0'
128
128
  required_rubygems_version: !ruby/object:Gem::Requirement
129
129
  requirements:
130
- - - ">="
130
+ - - ">"
131
131
  - !ruby/object:Gem::Version
132
- version: '0'
132
+ version: 1.3.1
133
133
  requirements: []
134
134
  rubyforge_project:
135
135
  rubygems_version: 2.2.2
@@ -143,4 +143,3 @@ test_files:
143
143
  - spec/lib/kumo_keisei/file_loader_spec.rb
144
144
  - spec/lib/kumo_keisei/parameter_builder_spec.rb
145
145
  - spec/spec_helper.rb
146
- has_rdoc: