eb_deployer 0.4.12 → 0.4.13
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +16 -0
- data/README.md +1 -1
- data/lib/eb_deployer/cloud_formation_provisioner.rb +1 -1
- data/lib/eb_deployer/version.rb +1 -1
- metadata +2 -2
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,19 @@
|
|
1
|
+
0.4.12
|
2
|
+
======
|
3
|
+
|
4
|
+
* Update default solution stacks.
|
5
|
+
* Rails generator generates SECRET_KEY_BASE for rails 4 app.
|
6
|
+
|
7
|
+
0.4.11
|
8
|
+
======
|
9
|
+
|
10
|
+
* Make gem depend on aws-sdk-v1 until we put in support for both v1 and v2
|
11
|
+
|
12
|
+
0.4.10
|
13
|
+
======
|
14
|
+
|
15
|
+
* Fix #33
|
16
|
+
|
1
17
|
0.4.9
|
2
18
|
====
|
3
19
|
|
data/README.md
CHANGED
@@ -93,7 +93,7 @@ Take a look at code if you can not wait for the documentation.
|
|
93
93
|
|
94
94
|
## More
|
95
95
|
|
96
|
-
[Rails 3 Support](https://github.com/ThoughtWorksStudios/eb_deployer/wiki/Rails-3-Support)
|
96
|
+
[Rails 3/4 Support](https://github.com/ThoughtWorksStudios/eb_deployer/wiki/Rails-3-Support)
|
97
97
|
|
98
98
|
[EbDeployer environment](https://github.com/ThoughtWorksStudios/eb_deployer/wiki/EbDeployer-environment)
|
99
99
|
|
@@ -30,7 +30,7 @@ module EbDeployer
|
|
30
30
|
def output(key)
|
31
31
|
@cf_driver.query_output(@stack_name, key)
|
32
32
|
rescue AWS::CloudFormation::Errors::ValidationError => e
|
33
|
-
raise ResourceNotInReadyState.new("Resource stack not in ready state yet, perhaps you should provision it first?")
|
33
|
+
raise ResourceNotInReadyState.new("Resource stack(#{@stack_name}, key: #{key}) not in ready state yet, perhaps you should provision it first?")
|
34
34
|
end
|
35
35
|
|
36
36
|
private
|
data/lib/eb_deployer/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: eb_deployer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.13
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2015-
|
13
|
+
date: 2015-03-15 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: aws-sdk-v1
|