deliver 1.10.1 → 1.10.2
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/deliver/submit_for_review.rb +4 -4
- data/lib/deliver/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6882be5a147bd9ff07a20994c06e85526ff9998c
|
|
4
|
+
data.tar.gz: 76e61ff854160c9a1f0880ee2fde93a385ac7d80
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 46c8abdf42198abc197e60c93f8694c45763a6fcc17516d71fd210b130bf54cd56f80cab631b4e3e3ec62976e89d19d9f8e73515ff9343187ce37676f1c9ab4c
|
|
7
|
+
data.tar.gz: 21baa62dc0269bf44414f487b41127f7d1a2dd573a6c4dbf76ef1d0a902d4b2200cefd2700f0c6abdc5bc12e0d66fb8de89d97cb6921da117e761fbb6aa43152
|
|
@@ -55,7 +55,7 @@ module Deliver
|
|
|
55
55
|
start = Time.now
|
|
56
56
|
|
|
57
57
|
loop do
|
|
58
|
-
build = find_build(app)
|
|
58
|
+
build = find_build(app.latest_version.candidate_builds)
|
|
59
59
|
return build if build.processing == false
|
|
60
60
|
|
|
61
61
|
UI.message("Waiting iTunes Connect processing for build #{build.train_version} (#{build.build_version})... this might take a while...")
|
|
@@ -68,16 +68,16 @@ module Deliver
|
|
|
68
68
|
nil
|
|
69
69
|
end
|
|
70
70
|
|
|
71
|
-
def find_build(
|
|
71
|
+
def find_build(candidate_builds)
|
|
72
72
|
build = nil
|
|
73
|
-
|
|
73
|
+
candidate_builds.each do |b|
|
|
74
74
|
if !build or b.upload_date > build.upload_date
|
|
75
75
|
build = b
|
|
76
76
|
end
|
|
77
77
|
end
|
|
78
78
|
|
|
79
79
|
unless build
|
|
80
|
-
UI.error(
|
|
80
|
+
UI.error(candidate_builds)
|
|
81
81
|
UI.crash!("Could not find build")
|
|
82
82
|
end
|
|
83
83
|
|
data/lib/deliver/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: deliver
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.10.
|
|
4
|
+
version: 1.10.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Felix Krause
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.36.
|
|
19
|
+
version: 0.36.4
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 1.0.0
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.36.
|
|
29
|
+
version: 0.36.4
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 1.0.0
|
|
@@ -290,7 +290,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
290
290
|
version: '0'
|
|
291
291
|
requirements: []
|
|
292
292
|
rubyforge_project:
|
|
293
|
-
rubygems_version: 2.4.
|
|
293
|
+
rubygems_version: 2.4.6
|
|
294
294
|
signing_key:
|
|
295
295
|
specification_version: 4
|
|
296
296
|
summary: Upload screenshots, metadata and your app to the App Store using a single
|