terraspace 2.2.2 → 2.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/terraspace/cli/help/new/test.md +4 -8
- data/lib/terraspace/compiler/writer.rb +1 -1
- data/lib/terraspace/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 265cf001f291f8f16ba281504b5a10caad4931680320781c9fa57ea996d6eba0
|
4
|
+
data.tar.gz: cfc3a6bc5c3210a5b6edf60d085f9a3487535052c01b573360d18eab44bafec0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4373aff69d41d00c1533545927ace7b2ebc9ef0d93449483c5ff5cf0960cbb5d935b1f4f20d21fa00bc79c23d722cde6d4e31c2ad215f78a3a9cd8fc5cf000e9
|
7
|
+
data.tar.gz: 51773b55e7e9e51719e2c803294dba300ce7bbb9b1ab0ed5fa967313f204e3859943ab406c5228b7222e38ddc0296e80db8feba1622751f821e787a6b4b2ec4b
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,10 @@
|
|
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
|
+
## [2.2.3] - 2022-12-11
|
7
|
+
- [#283](https://github.com/boltops-tools/terraspace/pull/283) update terraspace new cli help
|
8
|
+
- [#285](https://github.com/boltops-tools/terraspace/pull/285) Only generate output files with content
|
9
|
+
|
6
10
|
## [2.2.2] - 2022-09-14
|
7
11
|
- [#268](https://github.com/boltops-tools/terraspace/pull/268) custom config.build.dependency_words ability
|
8
12
|
|
@@ -1,12 +1,12 @@
|
|
1
1
|
## Stack Examples
|
2
2
|
|
3
|
-
$ terraspace new test
|
3
|
+
$ terraspace new test example --type stack
|
4
4
|
=> Creating stack test: example
|
5
|
-
exist app/stacks/example
|
6
5
|
create app/stacks/example/test/.rspec
|
7
6
|
create app/stacks/example/test/Gemfile
|
8
|
-
create app/stacks/example/test/spec/fixtures/
|
9
|
-
create app/stacks/example/test/spec/fixtures/
|
7
|
+
create app/stacks/example/test/spec/fixtures/config/app.rb
|
8
|
+
create app/stacks/example/test/spec/fixtures/config/terraform/provider.tf
|
9
|
+
create app/stacks/example/test/spec/fixtures/tfvars/test.tfvars
|
10
10
|
create app/stacks/example/test/spec/main_spec.rb
|
11
11
|
create app/stacks/example/test/spec/spec_helper.rb
|
12
12
|
$
|
@@ -15,11 +15,8 @@
|
|
15
15
|
|
16
16
|
$ terraspace new test example --type module
|
17
17
|
=> Creating module test: example
|
18
|
-
exist app/modules/example
|
19
18
|
create app/modules/example/test/.rspec
|
20
19
|
create app/modules/example/test/Gemfile
|
21
|
-
create app/modules/example/test/spec/fixtures/stack/main.tf
|
22
|
-
create app/modules/example/test/spec/fixtures/stack/outputs.tf
|
23
20
|
create app/modules/example/test/spec/main_spec.rb
|
24
21
|
create app/modules/example/test/spec/spec_helper.rb
|
25
22
|
$
|
@@ -28,7 +25,6 @@
|
|
28
25
|
|
29
26
|
$ terraspace new test my --type project
|
30
27
|
=> Creating test bootstrap structure
|
31
|
-
exist
|
32
28
|
create .rspec
|
33
29
|
create spec/spec_helper.rb
|
34
30
|
$
|
@@ -34,7 +34,7 @@ module Terraspace::Compiler
|
|
34
34
|
if content.respond_to?(:path) # IO filehandle
|
35
35
|
FileUtils.cp(content.path, dest_path) # preserves permission
|
36
36
|
else # just content
|
37
|
-
IO.write(dest_path, content, mode: "wb")
|
37
|
+
IO.write(dest_path, content, mode: "wb") unless content.nil?
|
38
38
|
end
|
39
39
|
logger.debug "Created #{Terraspace::Util.pretty_path(dest_path)}"
|
40
40
|
end
|
data/lib/terraspace/version.rb
CHANGED
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: 2.2.
|
4
|
+
version: 2.2.3
|
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-
|
11
|
+
date: 2022-12-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -965,7 +965,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
965
965
|
- !ruby/object:Gem::Version
|
966
966
|
version: '0'
|
967
967
|
requirements: []
|
968
|
-
rubygems_version: 3.3.
|
968
|
+
rubygems_version: 3.3.26
|
969
969
|
signing_key:
|
970
970
|
specification_version: 4
|
971
971
|
summary: 'Terraspace: The Terraspace Framework'
|