ufo 3.5.0 → 3.5.1

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: 8603e4de3fb2be69fe4067d948377452ea08cc91f8b6f543dbc8d32b48b38bd9
4
- data.tar.gz: bb1e8bc5d349091d40f4af2f24336444dd1169a8019998020e85435ed924ba30
3
+ metadata.gz: db632873ad230199363aff4a5efc6cc7f736e75ab264eede48b14609c94bf953
4
+ data.tar.gz: 113e6198490dc369e433c85fc69987662753173072832149fe12851a51d39fe7
5
5
  SHA512:
6
- metadata.gz: b9a6a95df195a1d9349220b9dbbd0160613b836d2df63cead1e4987357f07a11eb0a2befe54482828686d13541377045d5d20d75fc584e6ff79aa6fa67bd8656
7
- data.tar.gz: cf070e26340633ee2490f1fe9cb6dc6bca76988736461454e7ce77340f257814ea6390b546f9e65773ab256dd3aa59b96057befd774bb38cc5a41f0069179c9f
6
+ metadata.gz: '096c5a611b92cc20eece894cf9435fe33b9567932bc7cd8cd944a0c688287461849a94bc64fb1d095bc82c3d512d3563cf4509281ca66b4fd7e54b40a48551c3'
7
+ data.tar.gz: '079abe3709b891a7c2669a559f4fbfa5c924f47fdd999e2c29b153d698810f4daa7815e70c56691a47ae2293565de757d13c1b488361b7c8fc1a790931666e61'
@@ -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.5.1]
7
+ - remove helper support for params files. erb still works.
8
+
6
9
  ## [3.5.0]
7
10
  - allow usage of template_definition_method in env variables files
8
11
 
@@ -1,5 +1,5 @@
1
1
  <%%
2
- # replace with actual values:
2
+ # replace with actual values if using fargate
3
3
  @subnets = ["subnet-111","subnet-222"]
4
4
  @security_groups = ["sg-111"]
5
5
  %>
@@ -9,16 +9,10 @@ module Ufo
9
9
  @params_path = "#{Ufo.root}/.ufo/params.yml"
10
10
  end
11
11
 
12
- def helper
13
- dsl = DSL.new("#{Ufo.root}/.ufo/task_definitions.rb", quiet: true, mute: true)
14
- dsl.helper
15
- end
16
-
17
12
  def data
18
13
  upgrade_message!
19
14
 
20
- context = Ufo::TemplateScope.new(helper, nil)
21
- result = RenderMePretty.result(@params_path, context: context)
15
+ result = RenderMePretty.result(@params_path)
22
16
  YAML.load(result)
23
17
  end
24
18
  memoize :data
@@ -1,3 +1,3 @@
1
1
  module Ufo
2
- VERSION = "3.5.0"
2
+ VERSION = "3.5.1"
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: 3.5.0
4
+ version: 3.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen