mux_tf 0.8.0 → 0.8.1
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/lib/mux_tf/plan_formatter.rb +5 -5
- data/lib/mux_tf/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: 5225c16c4d7cdd1f5ab6867f0d17d210116ed52a9ccd381033dd19f8af5f4035
|
|
4
|
+
data.tar.gz: e7667d77bb6b830f735bba44977af03b5e9b53e06fddd18750f8aefcf9b9dd62
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: beb488f3bb641ef9244cc16ba28e32ca193195bd5dad22d045d43e5490c3216b34af0f5e5069fa61dd9a1f14d1e32f801a80e50d7d31d91133f2a131becb8a9c
|
|
7
|
+
data.tar.gz: da7ac3d1316b2a76ece6d6bcf54e608ce4adde7caab6637732f3459b7fd4830f5f906149d36f9fc8669b986a2a467e342c58ad1a99e9504c8bab7c3ee95be530
|
|
@@ -16,7 +16,7 @@ module MuxTf
|
|
|
16
16
|
parser = StatefulParser.new(normalizer: pastel.method(:strip))
|
|
17
17
|
parser.state(:info, /^Acquiring state lock/)
|
|
18
18
|
parser.state(:error, /(╷|Error locking state|Error:)/, %i[none blank info reading])
|
|
19
|
-
parser.state(:reading, /: (Reading...|Read complete after)/, %i[none info])
|
|
19
|
+
parser.state(:reading, /: (Reading...|Read complete after)/, %i[none info reading])
|
|
20
20
|
parser.state(:refreshing, /^.+: Refreshing state... \[id=/, %i[none info reading])
|
|
21
21
|
parser.state(:refreshing, /Refreshing Terraform state in-memory prior to plan.../, %i[none blank info reading])
|
|
22
22
|
parser.state(:refresh_done, /^----------+$/, [:refreshing])
|
|
@@ -40,9 +40,9 @@ module MuxTf
|
|
|
40
40
|
end
|
|
41
41
|
when :reading
|
|
42
42
|
clean_line = pastel.strip(line)
|
|
43
|
-
if clean_line.match
|
|
43
|
+
if clean_line.match(/^(.+): Reading...$/)
|
|
44
44
|
log "Reading: #{$LAST_MATCH_INFO[1]} ...", depth: 2
|
|
45
|
-
elsif clean_line.match
|
|
45
|
+
elsif clean_line.match(/^(.+): Read complete after ([^\[]+)(?: \[(.+)\])?$/)
|
|
46
46
|
if $LAST_MATCH_INFO[3]
|
|
47
47
|
log "Reading Complete: #{$LAST_MATCH_INFO[1]} after #{$LAST_MATCH_INFO[2]} [#{$LAST_MATCH_INFO[3]}]", depth: 3
|
|
48
48
|
else
|
|
@@ -120,10 +120,10 @@ module MuxTf
|
|
|
120
120
|
|
|
121
121
|
parser = StatefulParser.new(normalizer: pastel.method(:strip))
|
|
122
122
|
|
|
123
|
-
parser.state(:modules_init, /^Initializing modules
|
|
123
|
+
parser.state(:modules_init, /^Initializing modules\.\.\./, [:none, :backend])
|
|
124
124
|
parser.state(:modules_upgrade, /^Upgrading modules\.\.\./)
|
|
125
125
|
parser.state(:backend, /^Initializing the backend\.\.\./, [:none, :modules_init, :modules_upgrade])
|
|
126
|
-
parser.state(:plugins, /^Initializing provider plugins\.\.\./, [:backend])
|
|
126
|
+
parser.state(:plugins, /^Initializing provider plugins\.\.\./, [:backend, :modules_init])
|
|
127
127
|
|
|
128
128
|
parser.state(:plugin_warnings, /^$/, [:plugins])
|
|
129
129
|
parser.state(:backend_error, /Error:/, [:backend])
|
data/lib/mux_tf/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: mux_tf
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Piotr Banasik
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-05-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: activesupport
|
|
@@ -171,7 +171,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
171
171
|
- !ruby/object:Gem::Version
|
|
172
172
|
version: '0'
|
|
173
173
|
requirements: []
|
|
174
|
-
rubygems_version: 3.
|
|
174
|
+
rubygems_version: 3.4.10
|
|
175
175
|
signing_key:
|
|
176
176
|
specification_version: 4
|
|
177
177
|
summary: Terraform Multiplexing Scripts
|