fastlane-plugin-testbm 0.1.15 → 0.1.16
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: db9746f941149335d720d7d106e38a3bbcf534f86d5dbd8683352f07f90c8122
|
|
4
|
+
data.tar.gz: 1d0ad2a7a1209b82c38fd2e405f4f0dcb589f96367f214ee23f74eab823588d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c1ff7d907e1b2bed479d5e309111446d507d3b44e04e700f16f84a0167fdff4029d4d85089f826267e22665d639eb37f3fb4df0ce701d25ce89f76d392423293
|
|
7
|
+
data.tar.gz: 299d573260bfdaa081250a44ecd4c54b00aed962bd2f0380ea7e19c5c74c42e010c118355a1d19416af2a306b7568c099f69e1430aad93f2476e09669c693a49
|
|
@@ -7,9 +7,9 @@ module Fastlane
|
|
|
7
7
|
message_text = params[:message_text]
|
|
8
8
|
is_exception = params[:is_exception]
|
|
9
9
|
if is_exception
|
|
10
|
-
self.slack_func_notify(message_text)
|
|
11
|
-
else
|
|
12
10
|
self.slack_func_notify_error_in_lane(message_text)
|
|
11
|
+
else
|
|
12
|
+
self.slack_func_notify(message_text)
|
|
13
13
|
end
|
|
14
14
|
UI.message("Message sent to Slack!")
|
|
15
15
|
end
|
|
@@ -64,7 +64,7 @@ module Fastlane
|
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
#Notify an error of the lane and show the error that fastlane has
|
|
67
|
-
def slack_func_notify_error_in_lane(message_text)
|
|
67
|
+
def self.slack_func_notify_error_in_lane(message_text)
|
|
68
68
|
payload = {
|
|
69
69
|
"Build Date" => Time.new.to_s,
|
|
70
70
|
"Error Message" => message_text
|