fastlane 2.54.0.beta.20170813010002 → 2.54.0.beta.20170814010003
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
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 543981c9cf01f7ab35d0faca15051221f0fddc3f
|
4
|
+
data.tar.gz: d9126d77e8cb139506fc9d43225b097a25f03630
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2ad68852de41538e06b62ed5dea1a7787dc34a3c39569c3ab224177c689f4e98e7879a7d444fb252337f1f0c3890ac35bc0633395405943f690aef70cdedac14
|
7
|
+
data.tar.gz: 4d25a591d5d86d94863440771cdf89d53938ff0c21ef923f0e8bed97f24ab2235da28fc4cbd0f54f71379a9eafe67e276abc6f44daa9f05531ee4c9ab71c97bf
|
@@ -884,7 +884,13 @@ module Spaceship
|
|
884
884
|
|
885
885
|
handle_itc_response(r.body)
|
886
886
|
|
887
|
-
|
887
|
+
# iTunes Connect still returns a success status code even the submission
|
888
|
+
# was failed because of Ad ID info. This checks for any section error
|
889
|
+
# keys in returned adIdInfo and prints them out.
|
890
|
+
ad_id_error_keys = r.body.fetch('data').fetch('adIdInfo').fetch('sectionErrorKeys')
|
891
|
+
if ad_id_error_keys.any?
|
892
|
+
raise "Something wrong with your Ad ID information: #{ad_id_error_keys}."
|
893
|
+
elsif r.body.fetch('messages').fetch('info').last == "Successful POST"
|
888
894
|
# success
|
889
895
|
else
|
890
896
|
raise "Something went wrong when submitting the app for review. Make sure to pass valid options to submit your app for review"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.54.0.beta.
|
4
|
+
version: 2.54.0.beta.20170814010003
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
@@ -15,7 +15,7 @@ authors:
|
|
15
15
|
autorequire:
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
|
-
date: 2017-08-
|
18
|
+
date: 2017-08-14 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|