ufo 2.0.2 → 2.0.3

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
  SHA1:
3
- metadata.gz: cd42c904e58b2a75cea2890117ea3b5212f3d3bc
4
- data.tar.gz: 24c687811975ca0ecf60d87f6edc645c74f33cc6
3
+ metadata.gz: 8350618d437b189a1331609c80641170530d0cd1
4
+ data.tar.gz: aa3c8b0c2699d209e31dfbe23e4ac623c955b06b
5
5
  SHA512:
6
- metadata.gz: ef794d89eb553c5a2d90da667a95c68e75443dc54ba2beeaeb80756db7bc99c4929643942ade56b48d10a31cf8ce78b697d5f7d992fec95f96f864c50bf4496f
7
- data.tar.gz: 0eb142aa40fd1a8018a83840e967d645bfeae8f23e43c5bf15cacfc3be0d1d054c68c64e2451b0378a25428da44b9ba8497fb4797a7172a8a811f1d9b18393ae
6
+ metadata.gz: f08a954dc92b3b019412aef4218824e790d6486d8d25dc80ebf157ea1d5a9e169a1d377c0ad9568e2409c5e2f834f31ccae045689549d970b3e2f572697b0fae
7
+ data.tar.gz: a78095ecfca8bf72ff93bbd65f0bf5609766dbfb5e6b432edd4390c8aa09f194ab20c6733eed9ca0716dea1d8cc86bf09c03d838eaecfd6aa2033a66318fba8d
@@ -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
+ ## [2.0.3]
7
+ * add aws log group as a comment in the starter project
8
+
6
9
  ## [2.0.2]
7
10
  * ufo init: update cli help
8
11
 
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- ufo (2.0.1)
4
+ ufo (2.0.3)
5
5
  aws-sdk
6
6
  colorize
7
7
  deep_merge
@@ -15,6 +15,9 @@ task_definition "<%= @app %>-web" do
15
15
  family: task_definition_name,
16
16
  name: "web",
17
17
  container_port: helper.dockerfile_port,
18
+ # uncomment out to set the log group
19
+ # awslogs_group: "<%= @app %>-web",
20
+ # awslogs_stream_prefix: "<%= @app %>",
18
21
  command: ["bin/web"]
19
22
  )
20
23
  end
@@ -24,6 +27,9 @@ task_definition "<%= @app %>-worker" do
24
27
  variables(
25
28
  family: task_definition_name,
26
29
  name: "worker",
30
+ # uncomment out to set the log group
31
+ # awslogs_group: "<%= @app %>-worker",
32
+ # awslogs_stream_prefix: "<%= @app %>",
27
33
  command: ["bin/worker"]
28
34
  )
29
35
  end
@@ -33,6 +39,9 @@ task_definition "<%= @app %>-clock" do
33
39
  variables(
34
40
  family: task_definition_name,
35
41
  name: "clock",
42
+ # uncomment out to set the log group
43
+ # awslogs_group: "<%= @app %>-clock",
44
+ # awslogs_stream_prefix: "<%= @app %>",
36
45
  command: ["bin/clock"]
37
46
  )
38
47
  end
@@ -1,3 +1,3 @@
1
1
  module Ufo
2
- VERSION = "2.0.2"
2
+ VERSION = "2.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ufo
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen