fastlane-plugin-taiwan_number_one 0.2.3 → 0.2.4
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3f6eb09f64dd7bf6465761f674f378f6ea3d4a912976cd38f600a29a6a4752f1
|
4
|
+
data.tar.gz: b033ac75e5eb986c6902c857c9ea9fcfd125bb8513616f3a39100d1b8f5188ad
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe2c9f523df133975f0bcca2b00a8f099b984add55edade12febf3dffd0227ee54fb080b46e50b0708f1b378f34561c99b93b8334d76d84752882797ea15cd7f
|
7
|
+
data.tar.gz: 15e3641963bb2568d9b0853dc24704450d04c797e405c2ff0137135e7501a97867a485c2446cb5e96752a7530ea15bb3dc5a66cdb760af38f7423a7df60370d3
|
@@ -65,8 +65,7 @@ module Fastlane
|
|
65
65
|
UI.message("🇹🇼 Taiwan helps you do nothing!")
|
66
66
|
return
|
67
67
|
end
|
68
|
-
decision
|
69
|
-
decision ||= fetch_decision
|
68
|
+
decision ||= fetch_decision(param)
|
70
69
|
|
71
70
|
result = ActionResult::DO_NOTHING
|
72
71
|
case decision
|
@@ -97,10 +96,10 @@ module Fastlane
|
|
97
96
|
end
|
98
97
|
end
|
99
98
|
|
100
|
-
def self.fetch_decision
|
101
|
-
decision =
|
99
|
+
def self.fetch_decision(param)
|
100
|
+
decision = params[:app_decision]
|
102
101
|
until ["release", "reject"].include?(decision)
|
103
|
-
UI.user_error!("App's decision must be release or reject")
|
102
|
+
UI.user_error!("App's decision must be release or reject.")
|
104
103
|
return
|
105
104
|
end
|
106
105
|
# return decision
|