terraform_landscape 0.3.2 → 0.3.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/terraform_landscape/cli.rb +1 -1
- data/lib/terraform_landscape/printer.rb +3 -0
- data/lib/terraform_landscape/version.rb +1 -1
- 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: ed97c9c256fbb685fcf5817eaef307037828f2368e44ad8a4ea2cfd079197bea
|
4
|
+
data.tar.gz: d8472628aa77d68fc2f79437d3f8fae7aad60ca4fb3ad971fa7714bd1cedbe41
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f4a3b4c0ceca57406986b8282208b77378128d99fb24ec55da3cc5fd4b92c6449f9f6a1a5d06f251e3d4b02228f7cc45d3d256462177b760f6760b8165485d66
|
7
|
+
data.tar.gz: 6d20d470aea66409a28500b50a47c180eb391b367b4dcf950362dc3b1019990af859f5867c0b487ed7b7e9e38ae06c47bbc09235b5af29cbbbbae116457a9ecf
|
@@ -57,6 +57,9 @@ module TerraformLandscape
|
|
57
57
|
def process_string(plan_output) # rubocop:disable Metrics/MethodLength
|
58
58
|
scrubbed_output = strip_ansi(plan_output)
|
59
59
|
|
60
|
+
# Our grammar assumes output with Unix line endings
|
61
|
+
scrubbed_output.gsub!("\r\n", "\n")
|
62
|
+
|
60
63
|
# Remove initialization messages like
|
61
64
|
# "- Downloading plugin for provider "aws" (1.1.0)..."
|
62
65
|
# "- module.base_network"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: terraform_landscape
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Coinbase
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2020-02-14 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: colorize
|