terraspace 0.6.20 → 0.6.21
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/lib/terraspace/version.rb +1 -1
- data/lib/terraspace.rb +1 -5
- data/spec/terraspace/seeder/content_spec.rb +2 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e846de537f7e1a415fa06437138b66342b39742d637843e0dd2ab0f8f308d884
|
|
4
|
+
data.tar.gz: e3cac1d61f893d8864496f5a1b8af43e0b5ac142111a2869b077e92a6dd1802e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bd9fed4ac9bb408d6284bc473966320700e076c3ed0e06461b93c612361527f629e19e88e13c54aba306af6cfe846d8e9aa2f7a408840216583364b5950ebb38
|
|
7
|
+
data.tar.gz: 8a3672f6d5cf32f4e4ac44cfa28d4e0577a66e7c5982e66f2a0f2eab94ecdfdf6fda649714e8545353ad65f47c9eebc212a25ae36fa6b8753d11a0244f626964
|
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 *loosely tries* to adhere to [Semantic Versioning](http://semver.org/), even before v1.0.
|
|
5
5
|
|
|
6
|
+
## [0.6.21] - 2021-12-16
|
|
7
|
+
- [#164](https://github.com/boltops-tools/terraspace/pull/164) Use Activesupport All
|
|
8
|
+
|
|
6
9
|
## [0.6.20] - 2021-12-14
|
|
7
10
|
- [#162](https://github.com/boltops-tools/terraspace/pull/162) expand_string? interface method so plugins can decide whether or not to expand the string
|
|
8
11
|
- improve seed generator column spacing
|
data/lib/terraspace/version.rb
CHANGED
data/lib/terraspace.rb
CHANGED
|
@@ -5,11 +5,7 @@ $:.unshift(File.expand_path("../", __FILE__))
|
|
|
5
5
|
require "terraspace/autoloader"
|
|
6
6
|
Terraspace::Autoloader.setup
|
|
7
7
|
|
|
8
|
-
require "active_support/
|
|
9
|
-
require "active_support/core_ext/class"
|
|
10
|
-
require "active_support/core_ext/hash"
|
|
11
|
-
require "active_support/core_ext/string"
|
|
12
|
-
require "active_support/ordered_options"
|
|
8
|
+
require "active_support/all"
|
|
13
9
|
require "cli-format"
|
|
14
10
|
require "deep_merge/rails_compat"
|
|
15
11
|
require "dsl_evaluator"
|
|
@@ -37,8 +37,8 @@ describe Terraspace::Seeder::Content do
|
|
|
37
37
|
result = content.build
|
|
38
38
|
expected =<<~EOL
|
|
39
39
|
# Required variables:
|
|
40
|
-
name
|
|
41
|
-
azs
|
|
40
|
+
name = "string"
|
|
41
|
+
azs = [...] # list(string)
|
|
42
42
|
|
|
43
43
|
# Optional variables:
|
|
44
44
|
# project = "project-name"
|
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.
|
|
4
|
+
version: 0.6.21
|
|
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-12-
|
|
11
|
+
date: 2021-12-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|