mvn2 2.7.0 → 2.7.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/mvn2/plugin/live_print.plugin.rb +1 -1
- data/lib/mvn2/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: bc491a5c910004099888c3ebfe1d705e0bbaad42
|
|
4
|
+
data.tar.gz: 3af7adb19213ec266590c375e265e5366df31aeb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 59ca390bbc257fccab28f27cd0e9533d557eff12dfe9b796288b2da4a8224e8dd0a3749b34699f7ac2085c5eb6a3b00b2694715c0ec7a9fb093d72cf8b967146
|
|
7
|
+
data.tar.gz: ec9813b238e014d7cac0d450b51413f3020ec80b7ab00a99c09f412581d8f339afa37b520a9404e54ea729286ba98af390ef95224b0d339c3d4d734758431606
|
|
@@ -27,7 +27,7 @@ class LivePrintPlugin
|
|
|
27
27
|
log_file << l.gsub(/\e\[.*?m/, '') unless log_file.nil?
|
|
28
28
|
output = Plugins.get :line_filter, l
|
|
29
29
|
puts "\r\e[2K#{output}" unless output.nil?
|
|
30
|
-
result = true if l.chomp.gsub(/\e\[
|
|
30
|
+
result = true if l.chomp.gsub(/\e\[.*?m/, '').start_with?('[INFO] BUILD SUCCESS')
|
|
31
31
|
}
|
|
32
32
|
}
|
|
33
33
|
ensure
|
data/lib/mvn2/version.rb
CHANGED