aws-cfn-compiler 0.8.6 → 0.8.7
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 +8 -8
- data/lib/aws/cfn/compiler/mixins/parse.rb +5 -2
- data/lib/aws/cfn/compiler/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
YzlkYmQxMDM3YTcyZmZjZTM4ZDJjZWZhZmNlYTMzMjgyYjBjNDY3NA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MWM2YWQ5MjAxZjdhNTc1MGJiMDBmOGEzNTkyN2RmYzdhMDc2ODEyMw==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
NmRjMGZkYThhODYyNzMwNTQ4ODIxMjRhYWY2YjY2ZTBhMWZmNWI0M2Q4YmQz
|
10
|
+
MDlmMWYwZWE2NTU0YTJiYjZkMTY2OWI0NzMyODVhNTUwYTA1ZDExYjY3YzMx
|
11
|
+
MGZhZjEzMTA3OWI1M2UwN2VlOWExNTgzNWE0MWNhNGZlZGM0Y2Y=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MmFmNWQxYzliNjNlYzUzMGQ0N2NiOWI0YzUwY2UxNTkyYTRiY2IwNTg3OTJk
|
14
|
+
ZjVhMzE4ZDg3ODNjYTY3MGU2ZWMzZmY3MGFhN2VkMzEzMWJmMWJiYTBjOWQ4
|
15
|
+
ZTZkZmJkMDc3NjQ2NmJmYTQyZDJmOTZmYWNmNDVlYzQyOTc5NTY=
|
@@ -90,8 +90,11 @@ module Aws
|
|
90
90
|
compiler: self
|
91
91
|
}
|
92
92
|
source_file = File.expand_path(filename)
|
93
|
-
|
94
|
-
|
93
|
+
begin
|
94
|
+
eval 'require source_file', binding
|
95
|
+
rescue Exception => e
|
96
|
+
abort! "Cannot compile #{source_file}\n\n" + e.message + "\n\n" + e.backtrace.to_s
|
97
|
+
end
|
95
98
|
unless @dsl.dict[section.to_sym]
|
96
99
|
abort! "Unable to compile/expand #{filename} for #{section}/#{base}"
|
97
100
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-cfn-compiler
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- PKinney
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-07-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: awesome_print
|