watchbuild 0.1.0 → 0.1.1
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/watchbuild/runner.rb +8 -4
- data/lib/watchbuild/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bed9886bd3532a76cd597a04e926d785d7956f3b
|
4
|
+
data.tar.gz: f4b19483d41066efbe86c7c1e82bea7b90581e8f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0c250fd1c5efe485238789983bfd11632089615be1d9ff59cae70cfa280adf1c31c534735f2dbb1859267ccbecf4219ff387e5c67ff3ae800162744a6e4ff636
|
7
|
+
data.tar.gz: bd4d5fac13a2ead9430b1e799e4e149e03cd7000b74593e527f729e5b65229520b53e9709bf502d0e95c167cb904c0aaf47ce3ff7a2e02290a0b2a960c82d3db
|
data/lib/watchbuild/runner.rb
CHANGED
@@ -25,10 +25,14 @@ module WatchBuild
|
|
25
25
|
raise "Could not find app with app identiifer #{WatchBuild.config[:app_identifier]}".red unless app
|
26
26
|
|
27
27
|
loop do
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
28
|
+
begin
|
29
|
+
build = find_build
|
30
|
+
return build if build.processing == false
|
31
|
+
Helper.log.info "Waiting iTunes Connect processing for build #{build.train_version} (#{build.build_version})... this might take a while..."
|
32
|
+
rescue => ex
|
33
|
+
Helper.log.error ex
|
34
|
+
Helper.log.info "Something failed... trying again to recover"
|
35
|
+
end
|
32
36
|
sleep 30
|
33
37
|
end
|
34
38
|
nil
|
data/lib/watchbuild/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: watchbuild
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
@@ -219,7 +219,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
219
219
|
version: '0'
|
220
220
|
requirements: []
|
221
221
|
rubyforge_project:
|
222
|
-
rubygems_version: 2.
|
222
|
+
rubygems_version: 2.5.0
|
223
223
|
signing_key:
|
224
224
|
specification_version: 4
|
225
225
|
summary: Get a notification once your iTunes Connect build is finished processing
|