watchbuild 0.1.4 → 0.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +6 -6
- data/bin/watchbuild +1 -0
- data/lib/watchbuild.rb +1 -0
- data/lib/watchbuild/runner.rb +2 -2
- data/lib/watchbuild/version.rb +1 -1
- metadata +14 -48
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 47669dd195f5b35c1b7cc0fa6d34e0c99fae5afc
|
4
|
+
data.tar.gz: 390e4af1db3174483173f5551f6f8437d787cf15
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 288deb41e436570d3ba967e95606d6d5509a399cd4c5bcc0fb72af41aa611a7058ab976cc513390cb474384690ac1189004f5c91d20d78d34a7f640ab0bd8d85
|
7
|
+
data.tar.gz: 6d7df75ce827424e265661b6caf612c3d6816891c9b4d26d5b55f70b721232ed7aea898f25277b009460f1add8cf4ad2ee8c3192045a25c6aad7d2ede704294a
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
<h3 align="center">
|
2
2
|
<a href="https://github.com/fastlane/fastlane/tree/master/fastlane">
|
3
|
-
<img src="
|
3
|
+
<img src=".assets/fastlane.png" width="150" />
|
4
4
|
<br />
|
5
5
|
fastlane
|
6
6
|
</a>
|
@@ -26,12 +26,12 @@ WatchBuild
|
|
26
26
|
============
|
27
27
|
|
28
28
|
[![Twitter: @FastlaneTools](https://img.shields.io/badge/contact-@FastlaneTools-blue.svg?style=flat)](https://twitter.com/FastlaneTools)
|
29
|
-
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/
|
29
|
+
[![License](https://img.shields.io/badge/license-MIT-green.svg?style=flat)](https://github.com/fastlane/watchbuild/blob/master/LICENSE)
|
30
30
|
[![Gem](https://img.shields.io/gem/v/watchbuild.svg?style=flat)](http://rubygems.org/gems/watchbuild)
|
31
31
|
|
32
32
|
###### Get a notification once your iTunes Connect build is finished processing
|
33
33
|
|
34
|
-
<img src="assets/screenshot.png" width=350>
|
34
|
+
<img src=".assets/screenshot.png" width=350>
|
35
35
|
|
36
36
|
When you upload a new binary from Xcode to iTunes Connect, you have to wait until it's done processing before you can submit it to the App Store.
|
37
37
|
|
@@ -39,7 +39,7 @@ As the [#iosprocessingtime](https://twitter.com/search?q=%23iosprocessingtime) v
|
|
39
39
|
|
40
40
|
WatchBuild is a simple standalone tool that shows a notification once your newly uploaded build was successfully processed by iTunes Connect.
|
41
41
|
|
42
|
-
Once the build is ready to be pushed to TestFlight or for review, you get a
|
42
|
+
Once the build is ready to be pushed to TestFlight or for review, you get a macOS notification. You can even directly click on the notification to open the build on iTunes Connect.
|
43
43
|
|
44
44
|
### Why use WatchBuild?
|
45
45
|
|
@@ -79,7 +79,7 @@ For a list of available parameters and commands run
|
|
79
79
|
|
80
80
|
watchbuild --help
|
81
81
|
|
82
|
-
<img src="assets/terminal.png">
|
82
|
+
<img src=".assets/terminal.png">
|
83
83
|
|
84
84
|
## How is my password stored?
|
85
85
|
|
@@ -88,7 +88,7 @@ For a list of available parameters and commands run
|
|
88
88
|
# Tips
|
89
89
|
## [`fastlane`](https://fastlane.tools) Toolchain
|
90
90
|
|
91
|
-
- [`fastlane`](https://fastlane.tools): The easiest way to automate
|
91
|
+
- [`fastlane`](https://fastlane.tools): The easiest way to automate beta deployments and releases for your iOS and Android apps
|
92
92
|
- [`deliver`](https://github.com/fastlane/fastlane/tree/master/deliver): Upload screenshots, metadata and your app to the App Store
|
93
93
|
- [`snapshot`](https://github.com/fastlane/fastlane/tree/master/snapshot): Automate taking localized screenshots of your iOS app on every device
|
94
94
|
- [`frameit`](https://github.com/fastlane/fastlane/tree/master/frameit): Quickly put your screenshots into the right device frames
|
data/bin/watchbuild
CHANGED
data/lib/watchbuild.rb
CHANGED
data/lib/watchbuild/runner.rb
CHANGED
@@ -22,7 +22,7 @@ module WatchBuild
|
|
22
22
|
end
|
23
23
|
|
24
24
|
def wait_for_build(start_time)
|
25
|
-
UI.user_error!("Could not find app with app
|
25
|
+
UI.user_error!("Could not find app with app identifier #{WatchBuild.config[:app_identifier]}") unless app
|
26
26
|
|
27
27
|
loop do
|
28
28
|
begin
|
@@ -57,7 +57,7 @@ module WatchBuild
|
|
57
57
|
require 'terminal-notifier'
|
58
58
|
|
59
59
|
if build.nil?
|
60
|
-
|
60
|
+
UI.message "Application build is still processing"
|
61
61
|
return
|
62
62
|
end
|
63
63
|
|
data/lib/watchbuild/version.rb
CHANGED
metadata
CHANGED
@@ -1,55 +1,35 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: watchbuild
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-12-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
|
-
name:
|
15
|
-
requirement: !ruby/object:Gem::Requirement
|
16
|
-
requirements:
|
17
|
-
- - ">="
|
18
|
-
- !ruby/object:Gem::Version
|
19
|
-
version: 0.43.1
|
20
|
-
- - "<"
|
21
|
-
- !ruby/object:Gem::Version
|
22
|
-
version: 1.0.0
|
23
|
-
type: :runtime
|
24
|
-
prerelease: false
|
25
|
-
version_requirements: !ruby/object:Gem::Requirement
|
26
|
-
requirements:
|
27
|
-
- - ">="
|
28
|
-
- !ruby/object:Gem::Version
|
29
|
-
version: 0.43.1
|
30
|
-
- - "<"
|
31
|
-
- !ruby/object:Gem::Version
|
32
|
-
version: 1.0.0
|
33
|
-
- !ruby/object:Gem::Dependency
|
34
|
-
name: spaceship
|
14
|
+
name: fastlane
|
35
15
|
requirement: !ruby/object:Gem::Requirement
|
36
16
|
requirements:
|
37
17
|
- - ">="
|
38
18
|
- !ruby/object:Gem::Version
|
39
|
-
version: 0.
|
19
|
+
version: 2.0.0
|
40
20
|
- - "<"
|
41
21
|
- !ruby/object:Gem::Version
|
42
|
-
version:
|
22
|
+
version: 3.0.0
|
43
23
|
type: :runtime
|
44
24
|
prerelease: false
|
45
25
|
version_requirements: !ruby/object:Gem::Requirement
|
46
26
|
requirements:
|
47
27
|
- - ">="
|
48
28
|
- !ruby/object:Gem::Version
|
49
|
-
version: 0.
|
29
|
+
version: 2.0.0
|
50
30
|
- - "<"
|
51
31
|
- !ruby/object:Gem::Version
|
52
|
-
version:
|
32
|
+
version: 3.0.0
|
53
33
|
- !ruby/object:Gem::Dependency
|
54
34
|
name: terminal-notifier
|
55
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -82,16 +62,16 @@ dependencies:
|
|
82
62
|
name: rake
|
83
63
|
requirement: !ruby/object:Gem::Requirement
|
84
64
|
requirements:
|
85
|
-
- - "
|
65
|
+
- - "<"
|
86
66
|
- !ruby/object:Gem::Version
|
87
|
-
version: '
|
67
|
+
version: '12'
|
88
68
|
type: :development
|
89
69
|
prerelease: false
|
90
70
|
version_requirements: !ruby/object:Gem::Requirement
|
91
71
|
requirements:
|
92
|
-
- - "
|
72
|
+
- - "<"
|
93
73
|
- !ruby/object:Gem::Version
|
94
|
-
version: '
|
74
|
+
version: '12'
|
95
75
|
- !ruby/object:Gem::Dependency
|
96
76
|
name: rspec
|
97
77
|
requirement: !ruby/object:Gem::Requirement
|
@@ -176,34 +156,20 @@ dependencies:
|
|
176
156
|
- - ">="
|
177
157
|
- !ruby/object:Gem::Version
|
178
158
|
version: '0'
|
179
|
-
- !ruby/object:Gem::Dependency
|
180
|
-
name: fastlane
|
181
|
-
requirement: !ruby/object:Gem::Requirement
|
182
|
-
requirements:
|
183
|
-
- - ">="
|
184
|
-
- !ruby/object:Gem::Version
|
185
|
-
version: '0'
|
186
|
-
type: :development
|
187
|
-
prerelease: false
|
188
|
-
version_requirements: !ruby/object:Gem::Requirement
|
189
|
-
requirements:
|
190
|
-
- - ">="
|
191
|
-
- !ruby/object:Gem::Version
|
192
|
-
version: '0'
|
193
159
|
- !ruby/object:Gem::Dependency
|
194
160
|
name: rubocop
|
195
161
|
requirement: !ruby/object:Gem::Requirement
|
196
162
|
requirements:
|
197
163
|
- - "~>"
|
198
164
|
- !ruby/object:Gem::Version
|
199
|
-
version: 0.
|
165
|
+
version: 0.44.0
|
200
166
|
type: :development
|
201
167
|
prerelease: false
|
202
168
|
version_requirements: !ruby/object:Gem::Requirement
|
203
169
|
requirements:
|
204
170
|
- - "~>"
|
205
171
|
- !ruby/object:Gem::Version
|
206
|
-
version: 0.
|
172
|
+
version: 0.44.0
|
207
173
|
description: Get a notification once your iTunes Connect build is finished processing
|
208
174
|
email:
|
209
175
|
- watchbuild@krausefx.com
|
@@ -239,7 +205,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
239
205
|
version: '0'
|
240
206
|
requirements: []
|
241
207
|
rubyforge_project:
|
242
|
-
rubygems_version: 2.
|
208
|
+
rubygems_version: 2.6.8
|
243
209
|
signing_key:
|
244
210
|
specification_version: 4
|
245
211
|
summary: Get a notification once your iTunes Connect build is finished processing
|