simplygenius-atmos 0.11.7 → 0.11.8
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/CHANGELOG.md +6 -0
- data/lib/simplygenius/atmos/plugins/plan_summary.rb +4 -1
- data/lib/simplygenius/atmos/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: b36463da6285364bd4cedc5c58fca1dfe1a3be224e7ab5130782cfac077c6b9b
|
|
4
|
+
data.tar.gz: 0303dd6ea2937a4f2d2c301dc817f76845fdaedb164766ed1888e8ec09fb1210
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e8aeef7da3b8bdb24619d57c2ef13426956e064168b86182d3293bff860c6c67d3c4ac744baf6b09c126fa6e51850dbd18360fa007adfc6cbffc305c8f0acc9d
|
|
7
|
+
data.tar.gz: c13e39a367dd9ed322106ee213816552adb1c9387f26eef72d7e96b61453cfab851fd369cda7f67eecb81d89edae07edda786980b35201982bbae3e318420c95
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
0.11.8 (02/04/2020)
|
|
2
|
+
-------------------
|
|
3
|
+
|
|
4
|
+
* newer terraform in docker image [771ab07](https://github.com/simplygenius/atmos/commit/771ab07)
|
|
5
|
+
* fix plan summary to handle newer terraform [f0a5b95](https://github.com/simplygenius/atmos/commit/f0a5b95)
|
|
6
|
+
|
|
1
7
|
0.11.7 (01/30/2020)
|
|
2
8
|
-------------------
|
|
3
9
|
|
|
@@ -34,7 +34,10 @@ module SimplyGenius
|
|
|
34
34
|
|
|
35
35
|
def summarize(data)
|
|
36
36
|
# Looking for +/-/~ at start within 2 spaces, could also look for lines that end with {
|
|
37
|
-
lines = data.lines.select {|l|
|
|
37
|
+
lines = data.lines.select { |l|
|
|
38
|
+
l = l.gsub(/\e\[\d+m/, '')
|
|
39
|
+
l =~ /^\s{0,2}[~+\-<]/
|
|
40
|
+
}.collect(&:chomp)
|
|
38
41
|
lines = lines.reject {|l| l =~ /-----/ }
|
|
39
42
|
"Plan Summary:\n#{lines.join("\n")}"
|
|
40
43
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simplygenius-atmos
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.11.
|
|
4
|
+
version: 0.11.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Conway
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-02-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|