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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8d85a0063b688b43736f0b7e252e314d70d98d05871bd43238fb630b84336fea
4
- data.tar.gz: 99baad01439788788a8a0683c03fbbbaa2af925ffc8cc09026c8d57b61e0f1fd
3
+ metadata.gz: dee5f362adfe10c3a13ead6bc144fdb42e0a0671b4b445e1ca8d26ad13ee0242
4
+ data.tar.gz: 4cdf0f764033f03bc7b545d6538e5e688d8c71a10a5d382b801ed16057f01857
5
5
  SHA512:
6
- metadata.gz: b38a61b1adc53e520c526b0d8d72bae8812b0cb17cb58d77c17af1e6dc823a1f671b0725ef77ecb587a2f30aed6847e4f3a669d88a2f05489721b4651eae86d2
7
- data.tar.gz: 2958ec8b2aa3c5b69ac348fad209a5964528d4e8cb1101507e7bbddbf504c23f407181d9c9e394ec73b2f117758beb7ddba76e6953b8f48d2d08776615213279
6
+ metadata.gz: 621378f349f803f03051ba3af47ef2df5ce5f73073eda011b18f86f4f2782109397a7b54eaa0e4593a0b9541a25e7970afb8fe77c22ba5f6ae4cac59e13ac257
7
+ data.tar.gz: e369cde8199aa59ef9bda89d05001cc617010da7c8df144805f1ba5fbce8fd85fc4d513c6bd7e19d5849060ab14943b7369828dddcc9126914759aa8f5a3e06c
@@ -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/ufo/task_definition#{File.extname(path)}"
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
@@ -1,3 +1,3 @@
1
1
  module Ufo
2
- VERSION = "6.3.10"
2
+ VERSION = "6.3.11"
3
3
  end
data/lib/ufo/yaml.rb CHANGED
@@ -2,7 +2,7 @@ module Ufo
2
2
  class Yaml
3
3
  class << self
4
4
  def load(text)
5
- path = "/tmp/ufo/temp.yml"
5
+ path = "#{Ufo.root}/.ufo/tmp/temp.yml"
6
6
  FileUtils.mkdir_p(File.dirname(path))
7
7
  IO.write(path, text)
8
8
  Validator.new(path).validate!
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.10
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-06-23 00:00:00.000000000 Z
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"