git-maintain 0.5.0.pre.8.gc481cd0 → 0.5.0.pre.9.gae87d1a
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/branch.rb +7 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 98fef65e5b0aba3eb78259204ed54966cfc40b26acb168c4878b6eda211c07d3
|
4
|
+
data.tar.gz: 6e640d397cdddcb5880d53d32675f7b00882aa0c272ddacbc90490f607fbaf83
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: adbf931b463b3be53a27175c8d85be6c91ce79b0b7c3e8e890a52be7f50219e8d810fc5a0cde73aeeccc76174a54a669fdf38af8b79a25af22b9bd66df9145dd
|
7
|
+
data.tar.gz: 36e5e9fd423e4a9eab1c729643f48fe91718ad2185516053a4b61dd6856f700f19dfdc10ee65a13e71cd6de4ed74d01bbcbe87287876b46c9dddc93d94c2c68b
|
data/lib/branch.rb
CHANGED
@@ -310,7 +310,13 @@ module GitMaintain
|
|
310
310
|
|
311
311
|
# Monitor the build status of the stable branch on Travis
|
312
312
|
def monitor_stable(opts)
|
313
|
-
|
313
|
+
st = @travis.getStableState(@stable_head)
|
314
|
+
suff=""
|
315
|
+
case st
|
316
|
+
when "started"
|
317
|
+
suff= " started at #{@travis.getStableTS(@stable_head)}"
|
318
|
+
end
|
319
|
+
puts "Status for v#{@version}: " + st + suff
|
314
320
|
end
|
315
321
|
|
316
322
|
# Reset the branch to the upstream stable one
|