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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4f7c8d0d2152329290209a2cf2d1745499939ed4b5adc56a053a779281a382bf
4
- data.tar.gz: eb5d9eb7eb83059cc80751bb16a7a3b8c75f44ea44f5857f433b41c6a48d5283
3
+ metadata.gz: e846de537f7e1a415fa06437138b66342b39742d637843e0dd2ab0f8f308d884
4
+ data.tar.gz: e3cac1d61f893d8864496f5a1b8af43e0b5ac142111a2869b077e92a6dd1802e
5
5
  SHA512:
6
- metadata.gz: 4884550da0751047f57c4b96df4c7a0689a1beef6ab38fc3d83e9795c1a95186cdaa260de5698ceaf84b11b01509b54893a31f99c22d0e4ab752f7b78160bee9
7
- data.tar.gz: b99ca01f18ff9583ef362410c82ae59947a646186a06f07f6b55acfd2d6a3e24a9c010ee9e72907e65e02914c339ebaf920038d2cd68ad204facbde40b8763fd
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
@@ -1,3 +1,3 @@
1
1
  module Terraspace
2
- VERSION = "0.6.20"
2
+ VERSION = "0.6.21"
3
3
  end
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/concern"
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 = "string"
41
- azs = [...] # list(string)
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.20
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-14 00:00:00.000000000 Z
11
+ date: 2021-12-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport