aws-must 0.0.2
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 +7 -0
- data/README.md +235 -0
- data/bin/aws-must.rb +92 -0
- data/demo/0/conf.yaml +1 -0
- data/demo/0/root.mustache +1 -0
- data/demo/1/conf.yaml +1 -0
- data/demo/1/root.mustache +22 -0
- data/demo/2/conf.yaml +6 -0
- data/demo/2/root.mustache +54 -0
- data/demo/3/conf.yaml +3 -0
- data/demo/3/resources.mustache +26 -0
- data/demo/3/root.mustache +85 -0
- data/demo/4/conf.yaml +22 -0
- data/demo/4/resource.mustache +27 -0
- data/demo/4/resourceInstance.mustache +32 -0
- data/demo/4/resources.mustache +25 -0
- data/demo/4/root.mustache +95 -0
- data/demo/5/conf.yaml +32 -0
- data/demo/5/output.mustache +39 -0
- data/demo/5/resource.mustache +26 -0
- data/demo/5/resourceInstance.mustache +35 -0
- data/demo/5/resources.mustache +25 -0
- data/demo/5/root.mustache +100 -0
- data/demo/6/conf.yaml +31 -0
- data/demo/6/mappings.mustache +67 -0
- data/demo/6/output.mustache +40 -0
- data/demo/6/resource.mustache +29 -0
- data/demo/6/resourceInstance.mustache +35 -0
- data/demo/6/resources.mustache +35 -0
- data/demo/6/root.mustache +133 -0
- data/demo/7/conf.yaml +54 -0
- data/demo/7/mappings.mustache +67 -0
- data/demo/7/output.mustache +40 -0
- data/demo/7/parameter.mustache +38 -0
- data/demo/7/resource.mustache +38 -0
- data/demo/7/resourceInstance.mustache +45 -0
- data/demo/7/resourceSecurityGroup.mustache +37 -0
- data/demo/7/resources.mustache +35 -0
- data/demo/7/root.mustache +157 -0
- data/demo/7/tag.mustache +30 -0
- data/lib/aws-must/aws-must.rb +96 -0
- data/lib/aws-must/docu.rb +164 -0
- data/lib/aws-must/template.rb +81 -0
- data/lib/aws-must.rb +11 -0
- data/lib/tasks/demo.rake +139 -0
- data/lib/utils/hasher.rb +83 -0
- data/lib/utils/logger.rb +71 -0
- metadata +106 -0
metadata
ADDED
@@ -0,0 +1,106 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: aws-must
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.2
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- jarjuk
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-06-10 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: mustache
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 1.0.1
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 1.0.1
|
27
|
+
description: |
|
28
|
+
aws-must is a tool, which allows separating infrastructure
|
29
|
+
configuration and Amazon related syntax using YAML and Mustache templates
|
30
|
+
email:
|
31
|
+
executables:
|
32
|
+
- aws-must.rb
|
33
|
+
extensions: []
|
34
|
+
extra_rdoc_files: []
|
35
|
+
files:
|
36
|
+
- README.md
|
37
|
+
- bin/aws-must.rb
|
38
|
+
- demo/0/conf.yaml
|
39
|
+
- demo/0/root.mustache
|
40
|
+
- demo/1/conf.yaml
|
41
|
+
- demo/1/root.mustache
|
42
|
+
- demo/2/conf.yaml
|
43
|
+
- demo/2/root.mustache
|
44
|
+
- demo/3/conf.yaml
|
45
|
+
- demo/3/resources.mustache
|
46
|
+
- demo/3/root.mustache
|
47
|
+
- demo/4/conf.yaml
|
48
|
+
- demo/4/resource.mustache
|
49
|
+
- demo/4/resourceInstance.mustache
|
50
|
+
- demo/4/resources.mustache
|
51
|
+
- demo/4/root.mustache
|
52
|
+
- demo/5/conf.yaml
|
53
|
+
- demo/5/output.mustache
|
54
|
+
- demo/5/resource.mustache
|
55
|
+
- demo/5/resourceInstance.mustache
|
56
|
+
- demo/5/resources.mustache
|
57
|
+
- demo/5/root.mustache
|
58
|
+
- demo/6/conf.yaml
|
59
|
+
- demo/6/mappings.mustache
|
60
|
+
- demo/6/output.mustache
|
61
|
+
- demo/6/resource.mustache
|
62
|
+
- demo/6/resourceInstance.mustache
|
63
|
+
- demo/6/resources.mustache
|
64
|
+
- demo/6/root.mustache
|
65
|
+
- demo/7/conf.yaml
|
66
|
+
- demo/7/mappings.mustache
|
67
|
+
- demo/7/output.mustache
|
68
|
+
- demo/7/parameter.mustache
|
69
|
+
- demo/7/resource.mustache
|
70
|
+
- demo/7/resourceInstance.mustache
|
71
|
+
- demo/7/resourceSecurityGroup.mustache
|
72
|
+
- demo/7/resources.mustache
|
73
|
+
- demo/7/root.mustache
|
74
|
+
- demo/7/tag.mustache
|
75
|
+
- lib/aws-must.rb
|
76
|
+
- lib/aws-must/aws-must.rb
|
77
|
+
- lib/aws-must/docu.rb
|
78
|
+
- lib/aws-must/template.rb
|
79
|
+
- lib/tasks/demo.rake
|
80
|
+
- lib/utils/hasher.rb
|
81
|
+
- lib/utils/logger.rb
|
82
|
+
homepage:
|
83
|
+
licenses:
|
84
|
+
- MIT
|
85
|
+
metadata: {}
|
86
|
+
post_install_message:
|
87
|
+
rdoc_options: []
|
88
|
+
require_paths:
|
89
|
+
- lib
|
90
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0'
|
95
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - ">="
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0'
|
100
|
+
requirements: []
|
101
|
+
rubyforge_project:
|
102
|
+
rubygems_version: 2.2.2
|
103
|
+
signing_key:
|
104
|
+
specification_version: 4
|
105
|
+
summary: Minimum Viable Solution to Manage CloudFormation Templates'
|
106
|
+
test_files: []
|