cfnresponse 0.3.0 → 0.4.0

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: c3fafc5e3ca0131d0b5c16f0ac3420a3560ae66646fd7b37dcbfc4e1193232a9
4
- data.tar.gz: 746f7dfe08b4072855b31f724ae3e46be24656c208e898f473f29bc30b92ba49
3
+ metadata.gz: e9f426cb476d2c7c56a0541aa99784b38d482cadb86b77cf0501d748125a32f2
4
+ data.tar.gz: 53872baac751a29ccd12e56283efc6198bad1eab88e5cc5b18174a8b354b4f2f
5
5
  SHA512:
6
- metadata.gz: 4d902a0a7cbe6f1c65ae38e4635d7e28ea2d3058a3e7a070349ef25349d39ec6bd1b5556432757f4f19cbfe4daa4b2709dacf138fb0c50a0cdb4c36482379e2d
7
- data.tar.gz: 9d28ed4a88a5948d405d541bcafc49d473b1e6457189f0e7fdc92ceba148e7ca756463c6c8ebba308147f51b871a0b9fd7714e43a5715a7683dfde0bed912ccd
6
+ metadata.gz: 4897f796b4898066217c0c42b12075445bd2f3d2440d8de0d29af3a13d9bcefa7ab1477e69ed0a6528119786fef0af8a61f6a3222decf832715e7f79e9357fb3
7
+ data.tar.gz: 6dcea753cd4171f1dbf18df50714154b403db98b7d00eb688b906d6b9db091dd396b2c15710910008f458e3e93642f978443b9033258a9285c9cc536a266545b
data/.gitignore CHANGED
@@ -9,3 +9,4 @@
9
9
 
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
+ Gemfile.lock
@@ -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
@@ -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 helpers to help with custom resources}
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
 
@@ -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.inspect}"
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,
@@ -1,3 +1,3 @@
1
1
  module Cfnresponse
2
- VERSION = "0.3.0"
2
+ VERSION = "0.4.0"
3
3
  end
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.3.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-10 00:00:00.000000000 Z
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 helpers to help with custom resources
97
+ summary: CloudFormation send_response helper for custom resource
98
98
  test_files: []
@@ -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