ufo 3.4.2 → 3.4.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 +4 -4
- data/CHANGELOG.md +3 -0
- data/Gemfile.lock +1 -1
- data/lib/ufo/tasks/register.rb +0 -1
- data/lib/ufo/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4331af9c4aba2f153ac4009465fdd904d50037036f8e22d9dc8eaf7bcc15207a
|
|
4
|
+
data.tar.gz: 740a3c2bdcba00f1e225f3ccf42382aa487699f477c39f81ac48a100b2fe945e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 05dd46b7d5927bbc87112edcac6243ea58e97ba4adf7c0e1e1c7ca567bf141abbcc5d834d13b9f3552e5491ee5b2403ad4d8da62fc418c10977595e633a7f512
|
|
7
|
+
data.tar.gz: 4fda387373a698325af11d1ba3b50d1aab61c901d7044248144f945436ae45c3361a96a16953f6d49e1f6c572abb05272caf90ae5711c17be856facb9b5d61b4
|
data/CHANGELOG.md
CHANGED
|
@@ -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
|
+
## [3.4.3]
|
|
7
|
+
- remove debugging puts
|
|
8
|
+
|
|
6
9
|
## [3.4.2]
|
|
7
10
|
- Merge pull request #33 from tongueroo/rubyize_format
|
|
8
11
|
- improve rubyize_format so that original log configuration options are kept
|
data/Gemfile.lock
CHANGED
data/lib/ufo/tasks/register.rb
CHANGED
|
@@ -23,7 +23,6 @@ module Ufo
|
|
|
23
23
|
# aws ecs register-task-definition --cli-input-json file://.ufo/output/hi-web-prod.json
|
|
24
24
|
def register
|
|
25
25
|
data = JSON.parse(IO.read(@template_definition_path))
|
|
26
|
-
puts "@template_definition_path #{@template_definition_path.inspect}"
|
|
27
26
|
data = rubyize_format(data)
|
|
28
27
|
message = "#{data[:family]} task definition registered."
|
|
29
28
|
if @options[:noop]
|
data/lib/ufo/version.rb
CHANGED