terraspace 0.7.1 → 0.7.2

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: 76da9d45bca8d1ad5ec798462dbb9514d7e5640fd2d52d2f1a715bd284055f87
4
- data.tar.gz: 7cd5141081e5603f61aff44df2c33508af60128efa0702d61df1efda131e09c5
3
+ metadata.gz: 34fd5fc528a54f97026d5daf99d11ecee90882e915a94c92e50039c69a418e4c
4
+ data.tar.gz: '01418d9a47515ebd4b0ad15b10af00ca07492ea549d70a8555d82078c7cc40ea'
5
5
  SHA512:
6
- metadata.gz: c37c0a02187670548173b41b268af969fbf340408589a5eb0b6104742fc9ba96b5a7c00b8e481366059946637e3f5933cfdbb9dac63a222c6069b068c183b8df
7
- data.tar.gz: 047c71a46f1cb23eae9756aa9c042197ec697fa08d821ea77fcf701f6aa6faf02915696f380cd7dc0a0ee1700e468dfea549f756fa9f6bd7257a07199feb8aae
6
+ metadata.gz: fbecb189c794586eb959cddbd052c018dd1271100c414dc787b4ba0329845662dfa160820be321894c37dbec74275a546fc3d85ed14ab1de2f4b502de799f027
7
+ data.tar.gz: 5fa0edad8d472981ee79a067100a208249e30f882ab7ec70e0c9858ba9c80931113e2e11a9f1393836dd9d1f8f20c8ab123bc9bf8b47fa2f1628cb2fad4e93ff
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.7.2] - 2022-01-05
7
+ - [#187](https://github.com/boltops-tools/terraspace/pull/187) put thor cli options at the end
8
+
6
9
  ## [0.7.1] - 2022-01-04
7
10
  - [#185](https://github.com/boltops-tools/terraspace/pull/185) pass value through untouch when expand method not defined
8
11
 
data/README.md CHANGED
@@ -8,18 +8,22 @@
8
8
 
9
9
  [![BoltOps Badge](https://img.boltops.com/boltops/badges/boltops-badge.png)](https://www.boltops.com)
10
10
 
11
- The Terraform Framework.
11
+ [![BoltOps Learn Badge](https://img.boltops.com/boltops-learn/boltops-learn.png)](https://learn.boltops.com)
12
+
12
13
 
13
- Please **watch/star** this repo to help grow and support the project.
14
+ The Terraform Framework.
14
15
 
15
16
  Official Docs Site: [terraspace.cloud](https://terraspace.cloud)
16
17
 
17
- Quick Start Demo:
18
+ ## Support the Project
18
19
 
19
- [![Watch the video](https://img.boltops.com/boltops/tools/terraspace/youtube/terraspace-quick-start.png)](https://learn.boltops.com/courses/terraspace-fundamentals/lessons/terraspace-quick-start)
20
+ * Please **watch/star** this repo to help grow and support the project.
21
+ * Consider subscribing to [BoltOps Learn](https://learn.boltops.com/). You'll get access to many training videos. Subscribing helps support the project.
20
22
 
21
23
  ## Quick Start
22
24
 
25
+ [![Watch the video](https://img.boltops.com/boltops/tools/terraspace/youtube/terraspace-quick-start.png)](https://learn.boltops.com/courses/terraspace-fundamentals/lessons/terraspace-quick-start)
26
+
23
27
  Here are commands to get started:
24
28
 
25
29
  terraspace new project infra --plugin aws --examples
@@ -18,7 +18,7 @@ module Terraspace::Terraform
18
18
 
19
19
  # default at end in case of redirection. IE: terraform output > /path
20
20
  def args
21
- args = custom.args + thor.args + pass.args
21
+ args = custom.args + pass.args + thor.args
22
22
  args.uniq
23
23
  end
24
24
 
@@ -28,18 +28,18 @@ module Terraspace::Terraform
28
28
  end
29
29
  memoize :custom
30
30
 
31
- # From Thor defined/managed cli @options
32
- def thor
33
- Args::Thor.new(@mod, @name, @options)
34
- end
35
- memoize :thor
36
-
37
31
  # From Thor passthrough cli @options[:args]
38
32
  def pass
39
33
  Args::Pass.new(@mod, @name, @options)
40
34
  end
41
35
  memoize :pass
42
36
 
37
+ # From Thor defined/managed cli @options
38
+ def thor
39
+ Args::Thor.new(@mod, @name, @options)
40
+ end
41
+ memoize :thor
42
+
43
43
  def terraform(name, *args)
44
44
  current_dir_message # only show once
45
45
 
@@ -1,3 +1,3 @@
1
1
  module Terraspace
2
- VERSION = "0.7.1"
2
+ VERSION = "0.7.2"
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.7.1
4
+ version: 0.7.2
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-01-04 00:00:00.000000000 Z
11
+ date: 2022-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport