ufo 6.3.10 → 6.3.11
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/.github/FUNDING.yml +1 -0
- data/CHANGELOG.md +3 -0
- data/lib/ufo/task_definition/erb.rb +1 -1
- data/lib/ufo/version.rb +1 -1
- data/lib/ufo/yaml.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dee5f362adfe10c3a13ead6bc144fdb42e0a0671b4b445e1ca8d26ad13ee0242
|
|
4
|
+
data.tar.gz: 4cdf0f764033f03bc7b545d6538e5e688d8c71a10a5d382b801ed16057f01857
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 621378f349f803f03051ba3af47ef2df5ce5f73073eda011b18f86f4f2782109397a7b54eaa0e4593a0b9541a25e7970afb8fe77c22ba5f6ae4cac59e13ac257
|
|
7
|
+
data.tar.gz: e369cde8199aa59ef9bda89d05001cc617010da7c8df144805f1ba5fbce8fd85fc4d513c6bd7e19d5849060ab14943b7369828dddcc9126914759aa8f5a3e06c
|
data/.github/FUNDING.yml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
github: boltops-tools
|
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
|
+
## [6.3.11] - 2022-07-09
|
|
7
|
+
- [#178](https://github.com/tongueroo/ufo/pull/178) use .ufo/tmp folder instead of /tmp/ufo
|
|
8
|
+
|
|
6
9
|
## [6.3.10] - 2022-06-23
|
|
7
10
|
- [#177](https://github.com/tongueroo/ufo/pull/177) Enabled support for gRPC
|
|
8
11
|
|
|
@@ -41,7 +41,7 @@ class Ufo::TaskDefinition
|
|
|
41
41
|
def evaluate_code
|
|
42
42
|
path = @task_definition.path
|
|
43
43
|
text = RenderMePretty.result(path, context: self)
|
|
44
|
-
rendered_path = "/tmp/
|
|
44
|
+
rendered_path = "#{Ufo.root}/.ufo/tmp/task_definition#{File.extname(path)}"
|
|
45
45
|
FileUtils.mkdir_p(File.dirname(rendered_path))
|
|
46
46
|
IO.write(rendered_path, text)
|
|
47
47
|
|
data/lib/ufo/version.rb
CHANGED
data/lib/ufo/yaml.rb
CHANGED
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: 6.3.
|
|
4
|
+
version: 6.3.11
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tung Nguyen
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-07-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-logs
|
|
@@ -460,6 +460,7 @@ files:
|
|
|
460
460
|
- ".cody/acceptance/project.rb"
|
|
461
461
|
- ".cody/shared/script/install.sh"
|
|
462
462
|
- ".cody/shared/script/install/ufo.sh"
|
|
463
|
+
- ".github/FUNDING.yml"
|
|
463
464
|
- ".github/ISSUE_TEMPLATE.md"
|
|
464
465
|
- ".github/ISSUE_TEMPLATE/bug_report.md"
|
|
465
466
|
- ".github/ISSUE_TEMPLATE/documentation.md"
|