terraspace 0.6.0 → 0.6.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: 5e6515cd30855a02e17147354db57995da471812f6437611140f715726268bb6
4
- data.tar.gz: 33a4066b1a30d091fe7881bbafccc0778f47715d6bea7671ba9f011e1f3702a5
3
+ metadata.gz: 16315ba36569198d82f525f079e1416e579a53262f36cc50a3ea0ded4128067e
4
+ data.tar.gz: 8c3546c371860f3e4f4a6326113fd5c93cd99f0e0c436f771ebe4dcab3a0e523
5
5
  SHA512:
6
- metadata.gz: 6b3b7c108ac28b8cf83c4cde07ed64f4fc84d8109bc77c5b1ddaa3018e70393e9cb57cbc7fc65315e7877e55833bd434695753ed8cb71b31bb249a440c96c910
7
- data.tar.gz: 3b85a43ae356e6c95def1ab614ef86af19e3c875752d265a5de55ada4f66b12830d514d2655841f973690b449d8fc38f610ac6b146ba943e3d37d72694e86d79
6
+ metadata.gz: 64ef2db1ea751561446fcc8b6863ce13975a594d25dd9829e7d4c7eae9ba11288e899bca27cfb007465f96ac5c81077841300892e2d9fb920cc465425e05c8a2
7
+ data.tar.gz: fd1a9d8da45a996513e43fd139d0826bac58564938df4c2668c28e69a2dc2643cda33fb54d0c272a21e0f735f8d5a558a2af26ac993f9fdd2d8272ea6293f27c
data/CHANGELOG.md CHANGED
@@ -3,11 +3,12 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  This project *loosely tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
5
5
 
6
+ ## [0.6.1] - 2021-03-04
7
+ - [#89](https://github.com/boltops-tools/terraspace/pull/89) rename option to enable_names.expansion
8
+
6
9
  ## [0.6.0] - 2021-03-03
7
- - Update README.md
8
10
  - [#87](https://github.com/boltops-tools/terraspace/pull/87) rename cloud to tfc command and improvements
9
11
  - [#88](https://github.com/boltops-tools/terraspace/pull/88) custom layering support
10
- - Rename `terraspace cloud` to `terraspace tfc` and tfc improvements
11
12
  - Improve stdout handling, so this works: `terraspace show demo --json | jq`
12
13
  - `terraspace plan --output plan.save` writes to relative cache path.
13
14
  - `terraspace up --plan plan.save` copies plan.save to cache path.
@@ -40,7 +40,7 @@ module Terraspace
40
40
  config.layering = ActiveSupport::OrderedOptions.new
41
41
  config.layering.names = {}
42
42
  config.layering.enable_names = ActiveSupport::OrderedOptions.new
43
- config.layering.enable_names.cache_dir = true
43
+ config.layering.enable_names.expansion = true
44
44
  config.summary = ActiveSupport::OrderedOptions.new
45
45
  config.summary.prune = false
46
46
  config.terraform = ActiveSupport::OrderedOptions.new
@@ -70,7 +70,7 @@ module Terraspace::Plugin::Expander
70
70
  def var_value(name)
71
71
  name = name.sub(':','').downcase
72
72
  value = send(name)
73
- if name == "namespace" && Terraspace.config.layering.enable_names.cache_dir
73
+ if name == "namespace" && Terraspace.config.layering.enable_names.expansion
74
74
  value = friendly_name(value)
75
75
  end
76
76
  value
@@ -1,3 +1,3 @@
1
1
  module Terraspace
2
- VERSION = "0.6.0"
2
+ VERSION = "0.6.1"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: terraspace
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.6.0
4
+ version: 0.6.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tung Nguyen
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-03-03 00:00:00.000000000 Z
11
+ date: 2021-03-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport