cigale 0.4.2 → 0.4.3
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/cigale/property/slack.rb +10 -10
- data/lib/cigale/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: 029b6ece7946dd18163dd5e34e6ce49e3841f641
|
|
4
|
+
data.tar.gz: 3615e7019830f4ceb3fc0f949c24b428a3a0a75b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6a3942411a5720fc5454e65835192106ee28e47f43c98afa103ad1daa9259454bc31640861381b99708e6180c2ad2b09ae31a3918101f8c245da5aeacf69192f
|
|
7
|
+
data.tar.gz: 325bb39027661759f4718f32f3ec6ebc2d3ecd12511ea9f7cccba8a923d14a07ecac69746f6a210ffb25a1c3cf3ace2d0f4292651b802d974fb6c8d6a3f18168
|
|
@@ -8,18 +8,18 @@ module Cigale::Property
|
|
|
8
8
|
notify = toh pdef["notify"]
|
|
9
9
|
|
|
10
10
|
xml.startNotification boolp(notify["start"], false)
|
|
11
|
-
xml.
|
|
12
|
-
xml.
|
|
13
|
-
xml.
|
|
14
|
-
xml.
|
|
15
|
-
xml.
|
|
16
|
-
xml.
|
|
17
|
-
xml.
|
|
11
|
+
xml.notifySuccess boolp(notify["success"], false)
|
|
12
|
+
xml.notifyAborted boolp(notify["aborted"], false)
|
|
13
|
+
xml.notifyNotBuilt boolp(notify["not-built"], false)
|
|
14
|
+
xml.notifyUnstable boolp(notify["unstable"], false)
|
|
15
|
+
xml.notifyFailure boolp(notify["failure"], false)
|
|
16
|
+
xml.notifyBackToNormal boolp(notify["back-to-normal"], false)
|
|
17
|
+
xml.notifyRepeatedFailures boolp(notify["repeated-failure"], false)
|
|
18
18
|
|
|
19
|
-
xml.
|
|
20
|
-
xml.
|
|
19
|
+
xml.includeTestSummary boolp(pdef["include-test-summary"], false)
|
|
20
|
+
xml.showCommitList boolp(notify["show-commit-list"], false)
|
|
21
21
|
|
|
22
|
-
xml.
|
|
22
|
+
xml.includeCustomMessage !!pdef["custom-message"]
|
|
23
23
|
xml.customMessage pdef["custom-message"]
|
|
24
24
|
end
|
|
25
25
|
end
|
data/lib/cigale/version.rb
CHANGED