aws-mason 0.0.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 +7 -0
- data/bin/aws-mason +5 -0
- data/lib/aws-mason.rb +18 -0
- data/lib/aws-mason/translator.rb +10 -0
- metadata +50 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 0ed9d7cfbac0a32f12f14e986f79f54eb31bf8e0
|
4
|
+
data.tar.gz: 20838fff1c939c2fcf86fb346eea32ecfcdea13d
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 378fb1171f611984f404743c42e9bd0ec1558a3fd7c8286136f265952dff15bf11979b38c9d3be3434b404faeb545140f80fe4bb38e4106eb1136e16d46cfddc
|
7
|
+
data.tar.gz: ed83c4649e7faa141f794f050f9047cc9f339f7fbd6e0b64fd2d5c387350aac9a44d6236eae79a03d1a741b8931de7e30f214c2636728bd86c3866140c7387ac
|
data/bin/aws-mason
ADDED
data/lib/aws-mason.rb
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
# class AWS_Mason
|
2
|
+
# def self.hi
|
3
|
+
# puts "Hello world!"
|
4
|
+
# end
|
5
|
+
# end
|
6
|
+
|
7
|
+
|
8
|
+
module AWS_Mason
|
9
|
+
# I need to do something here.
|
10
|
+
end
|
11
|
+
|
12
|
+
require "aws-mason/translator"
|
13
|
+
|
14
|
+
# class Chatter
|
15
|
+
# def say_hello
|
16
|
+
# puts 'This is zerp. Coming in loud and clear. Over.'
|
17
|
+
# end
|
18
|
+
# end
|
metadata
ADDED
@@ -0,0 +1,50 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: aws-mason
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Eric VanWieren
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-12-11 00:00:00.000000000 Z
|
12
|
+
dependencies: []
|
13
|
+
description: |-
|
14
|
+
aws-mason is a tool that will allow you to create easily usable stacks within AWS. It breaks stacks into
|
15
|
+
easily digested pieces that can then be reused to build stacks. Stacks can also inherit from other stacks allowing CloudFormation
|
16
|
+
to be the record of source.
|
17
|
+
email: doiwanttoaddmyemail@email.com
|
18
|
+
executables:
|
19
|
+
- aws-mason
|
20
|
+
extensions: []
|
21
|
+
extra_rdoc_files: []
|
22
|
+
files:
|
23
|
+
- bin/aws-mason
|
24
|
+
- lib/aws-mason.rb
|
25
|
+
- lib/aws-mason/translator.rb
|
26
|
+
homepage: http://rubygems.org/gems/aws-mason
|
27
|
+
licenses:
|
28
|
+
- MIT
|
29
|
+
metadata: {}
|
30
|
+
post_install_message:
|
31
|
+
rdoc_options: []
|
32
|
+
require_paths:
|
33
|
+
- lib
|
34
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
35
|
+
requirements:
|
36
|
+
- - ">="
|
37
|
+
- !ruby/object:Gem::Version
|
38
|
+
version: '0'
|
39
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
40
|
+
requirements:
|
41
|
+
- - ">="
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
requirements: []
|
45
|
+
rubyforge_project:
|
46
|
+
rubygems_version: 2.4.8
|
47
|
+
signing_key:
|
48
|
+
specification_version: 4
|
49
|
+
summary: A tool for simplifying working on AWS Cloudformation Stacks.
|
50
|
+
test_files: []
|