cfn_camelizer 0.1.0 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4175a42f5c53d6d90e2fcd76673b74f6a2d0fbef965a2c998277b9395884974f
4
- data.tar.gz: d546bfbfa412020dba9491a3f80bda894124f1135e431b641933ac2956bec9f9
3
+ metadata.gz: 0b0cd8e062370249b69133dbaa32cd9eb657979aa9733c02275870716fa5f922
4
+ data.tar.gz: fe9c7f16c88669c70e3dfea74a01ae2d3e203446c889b484e2e59f1a3b730165
5
5
  SHA512:
6
- metadata.gz: aa9423e76f8313ee0c78da8c3eb3a3d6d1c312b9bff3b3618abdc8c582866be71fd41c20129a15150df3efdad9abb653ced1cb7e8300804e2a6844add119d0b3
7
- data.tar.gz: 9b9bb6c7b88e00d768204c39d8bd182e65f26c8ac6ea0c32f2916fffc2d7f50c31dff486665055f0d3ebcd5ad06463a31129726331e9079984bc3dcd27fe8161
6
+ metadata.gz: a4808d4fb0c64835a29756ca7e8891bfacdade186f748af9d82c0b78735463946aad18b81591d3dad172f6363a869d3e1cbb1fc1eeca135e54e8b86b815ae292
7
+ data.tar.gz: 7162c8cf4be952e8236a876ba7ade1b32be47644b1b58c7ea2ca791482e7dc7c56f2a2c084d8adfeba1777d5ea21353f2c6322b1e97faeef376a62b2e17634e6
data/.gitignore CHANGED
@@ -9,3 +9,5 @@
9
9
 
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
+
13
+ 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 *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
+
6
+ ## [0.2.0]
7
+ - add AWS special key
8
+
9
+ ## [0.1.0]
10
+ - Initial release
@@ -1,13 +1,14 @@
1
1
  ---
2
2
  special_keys:
3
- TemplateUrl: TemplateURL
4
- Ttl: TTL
5
- MaxReceiveCount: maxReceiveCount
6
- DeadLetterTargetArn: deadLetterTargetArn
3
+ Aws: AWS
7
4
  DbSubnetGroupDescription: DBSubnetGroupDescription
8
5
  DbSubnetGroupName: DBSubnetGroupName
6
+ DeadLetterTargetArn: deadLetterTargetArn
7
+ MaxReceiveCount: maxReceiveCount
9
8
  RoleArn: RoleARN
9
+ TemplateUrl: TemplateURL
10
+ Ttl: TTL
10
11
  passthrough_parent_keys:
11
- - Variables # Lambda Environment Variables https://amzn.to/2HLlttV
12
- - ResponseParameters # API Gateway MethodResponse https://amzn.to/2HKw0Wk
13
12
  - Fn::Sub # https://amzn.to/2HKwxri
13
+ - ResponseParameters # API Gateway MethodResponse https://amzn.to/2HKw0Wk
14
+ - Variables # Lambda Environment Variables https://amzn.to/2HLlttV
@@ -1,3 +1,3 @@
1
1
  class CfnCamelizer
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cfn_camelizer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.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-03-20 00:00:00.000000000 Z
11
+ date: 2019-03-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -104,8 +104,8 @@ files:
104
104
  - ".gitignore"
105
105
  - ".rspec"
106
106
  - ".travis.yml"
107
+ - CHANGELOG.md
107
108
  - Gemfile
108
- - Gemfile.lock
109
109
  - LICENSE.txt
110
110
  - README.md
111
111
  - Rakefile
@@ -1,52 +0,0 @@
1
- PATH
2
- remote: .
3
- specs:
4
- cfn_camelizer (0.1.0)
5
- activesupport
6
- memoist
7
- rainbow
8
-
9
- GEM
10
- remote: https://rubygems.org/
11
- specs:
12
- activesupport (5.2.2.1)
13
- concurrent-ruby (~> 1.0, >= 1.0.2)
14
- i18n (>= 0.7, < 2)
15
- minitest (~> 5.1)
16
- tzinfo (~> 1.1)
17
- concurrent-ruby (1.1.5)
18
- diff-lcs (1.3)
19
- i18n (1.6.0)
20
- concurrent-ruby (~> 1.0)
21
- memoist (0.16.0)
22
- minitest (5.11.3)
23
- rainbow (3.0.0)
24
- rake (12.3.2)
25
- rspec (3.8.0)
26
- rspec-core (~> 3.8.0)
27
- rspec-expectations (~> 3.8.0)
28
- rspec-mocks (~> 3.8.0)
29
- rspec-core (3.8.0)
30
- rspec-support (~> 3.8.0)
31
- rspec-expectations (3.8.2)
32
- diff-lcs (>= 1.2.0, < 2.0)
33
- rspec-support (~> 3.8.0)
34
- rspec-mocks (3.8.0)
35
- diff-lcs (>= 1.2.0, < 2.0)
36
- rspec-support (~> 3.8.0)
37
- rspec-support (3.8.0)
38
- thread_safe (0.3.6)
39
- tzinfo (1.2.5)
40
- thread_safe (~> 0.1)
41
-
42
- PLATFORMS
43
- ruby
44
-
45
- DEPENDENCIES
46
- bundler
47
- cfn_camelizer!
48
- rake
49
- rspec
50
-
51
- BUNDLED WITH
52
- 2.0.1