ufo 4.5.6 → 4.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0b267085b8ce0ec00506e0da5ef7e3d806169819849ca35f362319e8ccf8ef9b
4
- data.tar.gz: 2feba1921dd12e7b44a46b518e6ea34336b9b5a5fc2810fe2ad5be42b9310af0
3
+ metadata.gz: 02b5707613ba8dc21865348e023da39ee0896c494899960a153ddf4e960c0a35
4
+ data.tar.gz: 63abc4de7f146c394023d2019584add57f1cc744e4e556c5fb8216926b835067
5
5
  SHA512:
6
- metadata.gz: 5f8ba70c862d2dcdbb4647ae951140bd6db603f8bf92362ec1e7b9abd8752d5079aea1684970b0212a97f5543cc801d697172830078b698ed9ce3df99413d488
7
- data.tar.gz: a0ca47e0887d7a4d45514986f6eb8896e12dd02ab21e49a5ee3db5cae1b5f9b44a02f6615cd6485e47911d16c2866d4be44c48288fbf60f789a635e75c2865cb
6
+ metadata.gz: f250009b0c41d6c566adefeae7682f895e614d22f87e76d3819263f587bc3876b758c4b87376adadb1d9a6bae68ed7543b9dcdcc116e4e1a8eeed0683f7276c6
7
+ data.tar.gz: dc4a6d8248230337ef5a3fafb6e99d37cb10716cde584c830106f844a98b8c7c2ba2e6719b0b425fd3c0dff52e8347d1e17f7c0a92793ee59957248e7f6e6e77
@@ -3,6 +3,9 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [4.5.7]
7
+ - #88 update starter variables template with += example
8
+
6
9
  ## [4.5.6]
7
10
  - fix outgoing egress rule to allow ping
8
11
 
data/README.md CHANGED
@@ -20,7 +20,7 @@ See [ufoships.com](http://ufoships.com) for full documentation.
20
20
 
21
21
  ## Important
22
22
 
23
- If you are on version 3, you can run `ufo upgrade v3to4` within your project to upgrade it to version 4. Refer to the [CHANGELOG](CHANGELOG.md) and the [Upgrade 4 Docs](http://ufoships.com/docs/upgrade4/).
23
+ If you are upgrading, please refer to the [Upgrading docs](https://ufoships.com/docs/upgrading/)
24
24
 
25
25
  ## Installation
26
26
 
@@ -42,7 +42,7 @@ Congratulations, you have successfully used ufo to deploy to an ECS service.
42
42
 
43
43
  ## Load Balancer Support
44
44
 
45
- Ufo can also create a load balancer as part of creating the ECS service if you wish. Underneath the hood, ufo uses CloudFormation to create the load balancer. More information can be found at the [load balancer support docs](http://ufoships.com/docs/load-balancer/).
45
+ Ufo can also create a load balancer as part of creating the ECS service if you wish. Underneath the hood, ufo uses CloudFormation to create the load balancer. More information can be found at the [load balancer support docs](https://ufoships.com/docs/extras/load-balancer/).
46
46
 
47
47
  ## Articles
48
48
 
@@ -1,7 +1,8 @@
1
1
  # Example ufo/variables/development.rb
2
2
  # More info on how variables work: http://ufoships.com/docs/variables/
3
3
  @cpu = 256
4
- @environment = helper.env_vars(%Q[
4
+ # Refer to https://github.com/tongueroo/ufo/issues/87 as to why the += is used
5
+ @environment += helper.env_vars(%Q[
5
6
  RAILS_ENV=development
6
7
  SECRET_KEY_BASE=secret
7
8
  ])
@@ -1,7 +1,7 @@
1
1
  # Example ufo/variables/production.rb
2
2
  # More info on how variables work: http://ufoships.com/docs/variables/
3
3
  @cpu = 256
4
- @environment = helper.env_vars(%Q[
4
+ @environment += helper.env_vars(%Q[
5
5
  RAILS_ENV=production
6
6
  SECRET_KEY_BASE=secret
7
7
  ])
@@ -1,3 +1,3 @@
1
1
  module Ufo
2
- VERSION = "4.5.6"
2
+ VERSION = "4.5.7"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ufo
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.5.6
4
+ version: 4.5.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2019-09-17 00:00:00.000000000 Z
11
+ date: 2019-09-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-cloudformation