convection 0.2.31 → 0.2.32

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1e2ef5c368c42fdb7e95331677057dd31fefcea1
4
- data.tar.gz: d399f40f64e6d3e07f9236c611f5bb1ae054e798
3
+ metadata.gz: f916acd8ca0393e33372be95052b9e9bec6085ba
4
+ data.tar.gz: 68fdb161218ff72237d6319eeb7afc91ee8a9a23
5
5
  SHA512:
6
- metadata.gz: 33f17b3684c303868591be29990b798f0c364b27446cca02c544d5def928a444ab7df5c757449f7e9b66ddf0cd462f6adf71e32e20d0267fcc6daa2acd39ad76
7
- data.tar.gz: 9c7814c5800810aa07fce9da22ed02878d2034b183d4b5a3bf01dc18500205372f0471f6fee6692f85dfb2a696b9c1ba3a423daa445440e6021828264fa1d7b7
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
- ## Version 0.0.1
7
- This is an Alpha release. It is still lacking functionality and testing. We plan to develop/improve features as we begin to use it for our own deployments in the coming months. PRs welcome.
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.31
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-27 00:00:00.000000000 Z
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.5
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