cfnresponse 0.3.0 → 0.4.0
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 +4 -4
- data/.gitignore +1 -0
- data/CHANGELOG.md +10 -0
- data/cfnresponse.gemspec +1 -1
- data/lib/cfnresponse.rb +1 -1
- data/lib/cfnresponse/version.rb +1 -1
- metadata +4 -4
- data/Gemfile.lock +0 -35
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e9f426cb476d2c7c56a0541aa99784b38d482cadb86b77cf0501d748125a32f2
|
|
4
|
+
data.tar.gz: 53872baac751a29ccd12e56283efc6198bad1eab88e5cc5b18174a8b354b4f2f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4897f796b4898066217c0c42b12075445bd2f3d2440d8de0d29af3a13d9bcefa7ab1477e69ed0a6528119786fef0af8a61f6a3222decf832715e7f79e9357fb3
|
|
7
|
+
data.tar.gz: 6dcea753cd4171f1dbf18df50714154b403db98b7d00eb688b906d6b9db091dd396b2c15710910008f458e3e93642f978443b9033258a9285c9cc536a266545b
|
data/.gitignore
CHANGED
data/CHANGELOG.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
|
+
|
|
6
|
+
## [0.4.0]
|
|
7
|
+
- add log group to error help message
|
|
8
|
+
|
|
9
|
+
## [0.3.0]
|
|
10
|
+
- init working version
|
data/cfnresponse.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.authors = ["Tung Nguyen"]
|
|
9
9
|
spec.email = ["tongueroo@gmail.com"]
|
|
10
10
|
|
|
11
|
-
spec.summary = %q{CloudFormation send_response
|
|
11
|
+
spec.summary = %q{CloudFormation send_response helper for custom resource}
|
|
12
12
|
spec.homepage = "https://github.com/tongueroo/cfnresponse"
|
|
13
13
|
spec.license = "MIT"
|
|
14
14
|
|
data/lib/cfnresponse.rb
CHANGED
|
@@ -8,7 +8,7 @@ module Cfnresponse
|
|
|
8
8
|
|
|
9
9
|
# Debugging puts kept to help debug custom resources
|
|
10
10
|
def send_response(event, context, response_status, response_data={}, physical_id="PhysicalId", reason=nil)
|
|
11
|
-
reason ||= "See the details in CloudWatch Log Stream: #{context.log_stream_name
|
|
11
|
+
reason ||= "See the details in CloudWatch Log Group: #{context.log_group_name} Log Stream: #{context.log_stream_name}"
|
|
12
12
|
|
|
13
13
|
body_data = {
|
|
14
14
|
"Status" => response_status,
|
data/lib/cfnresponse/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: cfnresponse
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.4.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-02-
|
|
11
|
+
date: 2019-02-11 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -62,8 +62,8 @@ files:
|
|
|
62
62
|
- ".gitignore"
|
|
63
63
|
- ".rspec"
|
|
64
64
|
- ".travis.yml"
|
|
65
|
+
- CHANGELOG.md
|
|
65
66
|
- Gemfile
|
|
66
|
-
- Gemfile.lock
|
|
67
67
|
- LICENSE.txt
|
|
68
68
|
- README.md
|
|
69
69
|
- Rakefile
|
|
@@ -94,5 +94,5 @@ requirements: []
|
|
|
94
94
|
rubygems_version: 3.0.2
|
|
95
95
|
signing_key:
|
|
96
96
|
specification_version: 4
|
|
97
|
-
summary: CloudFormation send_response
|
|
97
|
+
summary: CloudFormation send_response helper for custom resource
|
|
98
98
|
test_files: []
|
data/Gemfile.lock
DELETED
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
PATH
|
|
2
|
-
remote: .
|
|
3
|
-
specs:
|
|
4
|
-
cfnresponse (0.3.0)
|
|
5
|
-
|
|
6
|
-
GEM
|
|
7
|
-
remote: https://rubygems.org/
|
|
8
|
-
specs:
|
|
9
|
-
diff-lcs (1.3)
|
|
10
|
-
rake (10.5.0)
|
|
11
|
-
rspec (3.8.0)
|
|
12
|
-
rspec-core (~> 3.8.0)
|
|
13
|
-
rspec-expectations (~> 3.8.0)
|
|
14
|
-
rspec-mocks (~> 3.8.0)
|
|
15
|
-
rspec-core (3.8.0)
|
|
16
|
-
rspec-support (~> 3.8.0)
|
|
17
|
-
rspec-expectations (3.8.2)
|
|
18
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
19
|
-
rspec-support (~> 3.8.0)
|
|
20
|
-
rspec-mocks (3.8.0)
|
|
21
|
-
diff-lcs (>= 1.2.0, < 2.0)
|
|
22
|
-
rspec-support (~> 3.8.0)
|
|
23
|
-
rspec-support (3.8.0)
|
|
24
|
-
|
|
25
|
-
PLATFORMS
|
|
26
|
-
ruby
|
|
27
|
-
|
|
28
|
-
DEPENDENCIES
|
|
29
|
-
bundler (~> 2.0)
|
|
30
|
-
cfnresponse!
|
|
31
|
-
rake (~> 10.0)
|
|
32
|
-
rspec (~> 3.0)
|
|
33
|
-
|
|
34
|
-
BUNDLED WITH
|
|
35
|
-
2.0.1
|