termcity 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/termcity/formatters/simple.rb +3 -1
- data/lib/termcity/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6e1c39c41f6dbc54340c207b937d7356de7a1e07
|
4
|
+
data.tar.gz: c5c362e06caad468490f03b7da10ed61d457b37d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1272d632e21ddd22b65e74c1b1a9fca30aeb12dfba7a09d975c62c010ee0f9f5be5df51d077e2fe36a98d9624af6d1eec98c5b8d6f349e5b71be8c1516a7a78
|
7
|
+
data.tar.gz: a0abf764f1fb442eedc087aeb497e3bd2713f357320c60296f1ac748cb0a28e26b6194ba4a4f93e8750cec21d6292095afee33bccfd9173660595d6ae7e898f4
|
@@ -55,10 +55,12 @@ module Termcity
|
|
55
55
|
elsif summary.counts[:queued] == summary.counts[:total]
|
56
56
|
"This revision may still be in the queue (or may be unkown/old)"
|
57
57
|
else
|
58
|
+
|
59
|
+
revision = summary.builds.map {|b| b.dig(:raw, "sha")}.compact.first
|
58
60
|
[
|
59
61
|
rows,
|
60
62
|
"",
|
61
|
-
"Revision: #{
|
63
|
+
"Revision: #{revision}",
|
62
64
|
"Overview: #{summary.overview_link}",
|
63
65
|
counts(summary),
|
64
66
|
].join("\n")
|
data/lib/termcity/version.rb
CHANGED