fastlane 2.54.0.beta.20170813010002 → 2.54.0.beta.20170814010003

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
  SHA1:
3
- metadata.gz: 961f7a35f49b4608defbc532d9f645be7192ba1c
4
- data.tar.gz: 5d3bb64b991a0d9e6b9c105ca889d0718c4459bf
3
+ metadata.gz: 543981c9cf01f7ab35d0faca15051221f0fddc3f
4
+ data.tar.gz: d9126d77e8cb139506fc9d43225b097a25f03630
5
5
  SHA512:
6
- metadata.gz: 2d44f82a4582cd2806de3a009a2a185b78db5c5f83605988ac04aa78f16d7f6a2158aca6db495fdd64c68bb95c671d59e5ebfa62c33afa2eb818b88206293c63
7
- data.tar.gz: 225f5354d96a212352cb362648de7c6381ca6aec6fdad0249ab61ba54cf469fbc703787acc1bfbe2555366468afe33e7a6f39d741b2541d203732bfa7063cd2a
6
+ metadata.gz: 2ad68852de41538e06b62ed5dea1a7787dc34a3c39569c3ab224177c689f4e98e7879a7d444fb252337f1f0c3890ac35bc0633395405943f690aef70cdedac14
7
+ data.tar.gz: 4d25a591d5d86d94863440771cdf89d53938ff0c21ef923f0e8bed97f24ab2235da28fc4cbd0f54f71379a9eafe67e276abc6f44daa9f05531ee4c9ab71c97bf
@@ -1,5 +1,5 @@
1
1
  module Fastlane
2
- VERSION = '2.54.0.beta.20170813010002'.freeze
2
+ VERSION = '2.54.0.beta.20170814010003'.freeze
3
3
  DESCRIPTION = "The easiest way to automate beta deployments and releases for your iOS and Android apps".freeze
4
4
  MINIMUM_XCODE_RELEASE = "7.0".freeze
5
5
  end
@@ -884,7 +884,13 @@ module Spaceship
884
884
 
885
885
  handle_itc_response(r.body)
886
886
 
887
- if r.body.fetch('messages').fetch('info').last == "Successful POST"
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.20170813010002
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-13 00:00:00.000000000 Z
18
+ date: 2017-08-14 00:00:00.000000000 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: slack-notifier