convection 0.2.31 → 0.2.32
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 +4 -4
- data/README.md +9 -2
- data/lib/convection/model/template/resource/aws_iam_user.rb +2 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f916acd8ca0393e33372be95052b9e9bec6085ba
|
|
4
|
+
data.tar.gz: 68fdb161218ff72237d6319eeb7afc91ee8a9a23
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3e74cbb7c38420ecd793f817b49bba6fb5ccc0f8b08ea0e0f70727d86753225108eaa21b6cc71665038fc3dd33be9dec6d471b9565d417e9b4a30ec7bf18bb21
|
|
7
|
+
data.tar.gz: d0695a09dfefbdd5ed9730b5d11185897e9c2914d27ae5721516679be5d9f7726a009bcf191005d98d61f687fa751dbe3d73de7efd949a478902ae3da8cd971f
|
data/README.md
CHANGED
|
@@ -3,8 +3,15 @@ _A fully generic, modular DSL for AWS CloudFormation_
|
|
|
3
3
|
|
|
4
4
|
This gem aims to provide a reusable model for AWS CloudFormation in Ruby. It exposes a DSL for template definition, and a simple, decoupled abstraction of a CloudFormation Stack to compile and apply templates.
|
|
5
5
|
|
|
6
|
-
##
|
|
7
|
-
|
|
6
|
+
## Branches
|
|
7
|
+
We strive to use [Semantic Versioning](http://semver.org) as much as possible for convection.
|
|
8
|
+
|
|
9
|
+
### `master`
|
|
10
|
+
**NOTE**: The `master` branch is fully supported by the convection maintainers.
|
|
11
|
+
|
|
12
|
+
The latest and greatest code that we intend to release to Rubygems is merged into this branch.
|
|
13
|
+
Today that code happens to be part of the `v0.2.x` minor version since we have not deemed convection feature complete (we'll release a `v1.0.0` release at that point).
|
|
14
|
+
Backwards incompatible changes until this time *may* be added by bumping the **minor** (not major) version of the project. These will be explicitly called out in the release notes for the version that introduced them and if possible a deprecation message and compatibility will be kept making users aware of a potential the breaking change in the future.
|
|
8
15
|
|
|
9
16
|
## Installation
|
|
10
17
|
Add this line to your application's Gemfile:
|
|
@@ -46,6 +46,8 @@ module Convection
|
|
|
46
46
|
property :login_profile, 'LoginProfile'
|
|
47
47
|
property :group, 'Groups', :type => :list
|
|
48
48
|
property :policies, 'Policies', :type => :list
|
|
49
|
+
property :managed_policy_arn, 'ManagedPolicyArns', :type => :list
|
|
50
|
+
alias managed_policy managed_policy_arn
|
|
49
51
|
end
|
|
50
52
|
end
|
|
51
53
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: convection
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.32
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- John Manero
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-06
|
|
11
|
+
date: 2016-07-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk
|
|
@@ -259,7 +259,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
259
259
|
version: '0'
|
|
260
260
|
requirements: []
|
|
261
261
|
rubyforge_project:
|
|
262
|
-
rubygems_version: 2.4.
|
|
262
|
+
rubygems_version: 2.4.3
|
|
263
263
|
signing_key:
|
|
264
264
|
specification_version: 4
|
|
265
265
|
summary: A fully generic, modular DSL for AWS CloudFormation
|