mux_tf 0.4.6 → 0.4.7

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: 72095840d17350f49c8cd49b97dc28db32948d51f17c572b5addaa51e6f01d6f
4
- data.tar.gz: 51a4a8c094983a7d0c09b4fb61ace1c23a387cd24e4f13cd7b55653ec98fbacb
3
+ metadata.gz: 072dd927b3d88e4b33d94af099f40ffd49b7528f3f198aa3e21f363d210d3392
4
+ data.tar.gz: 5462e010c6b185cd55a1884fb92b0652b5c077a045706e8ff4ea01287bdb7b77
5
5
  SHA512:
6
- metadata.gz: 7855009e15efa1a70256b9afc2cfa64452feff27a95aad28e2eb6171a70ad69ceee864b92d4e1cd41ee5cc296e68739c6d64fa86c599c8dde996bed4aef44a08
7
- data.tar.gz: 6a27ffa3d8305525f5e1f7861f448253a3f81d1e5b4c5af82f255abc2232a476e91cd589f747c9a5e8858a9ec880bcf8c4d2911265e81228337fe10f4514a46a
6
+ metadata.gz: c10933b1d5299de7b1c793c12dc3b192fb539d1f0544d9feee18368102493ef12966d48b03847424f005c3d5b1cf9a6f6e492c0deb76b7783355fa270b528ce7
7
+ data.tar.gz: adb0173ccf3b87924c0d9b933f1a1fa29e5363a1994eb95d9fc07d5ef9aabcfa6b9f1c4e6c5547d40a2213611589b8ed447f58923a9062307883c19827fed905
@@ -126,6 +126,10 @@ module MuxTf
126
126
  next
127
127
  end
128
128
  case stripped_line
129
+ when /^Downloading (?<repo>[^ ]+) (?<version>[^ ]+) for (?<module>[^ ]+)\.\.\./
130
+ print "D"
131
+ when /^- (?<module>[^ ]+) in (?<path>.+)$/
132
+ print "."
129
133
  when ""
130
134
  puts
131
135
  else
@@ -182,6 +186,9 @@ module MuxTf
182
186
  next
183
187
  end
184
188
  case stripped_line
189
+ when /^- Reusing previous version of (?<module>.+) from the dependency lock file$/
190
+ info = $LAST_MATCH_INFO.named_captures
191
+ log "- [FROM-LOCK] #{info["module"]}", depth: 2
185
192
  when /^- (?<module>.+) is built in to Terraform$/
186
193
  info = $LAST_MATCH_INFO.named_captures
187
194
  log "- [BUILTIN] #{info["module"]}", depth: 2
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module MuxTf
4
- VERSION = "0.4.6"
4
+ VERSION = "0.4.7"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mux_tf
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.6
4
+ version: 0.4.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Piotr Banasik