watchbuild 0.0.1 → 0.1.0
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/README.md +13 -4
- data/lib/watchbuild/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f2a75ca431d1d17407a3855d434f394277e900cd
|
|
4
|
+
data.tar.gz: fab63c404e920fcb70c9d31dd60a8c4f8092ef9d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fddbc0a964a6516fea90ed55f619d089efd3a541a942fdca91f2f13b5b1f486aee425c84c7a9729c3b8339368eb2f238e6fc44f4920fb832e6e47dc3a8e9e501
|
|
7
|
+
data.tar.gz: 7e1b59a8999a5de4d1ab0dd8df1d606680665920eb700ad4b4d62dea3c35916337f4862a651d550c49d1d2a53b3d0979d0b75d3547ed6327559d34766ecd1f6c
|
data/README.md
CHANGED
|
@@ -32,11 +32,19 @@ WatchBuild
|
|
|
32
32
|
|
|
33
33
|
<img src="assets/screenshot.png" width=350>
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
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.
|
|
36
36
|
|
|
37
|
-
As the [#iosprocessingtime](https://twitter.com/search?q=%23iosprocessingtime) varies from a few minutes to multiple hours,
|
|
37
|
+
As the [#iosprocessingtime](https://twitter.com/search?q=%23iosprocessingtime) varies from a few minutes to multiple hours, it's easy to forget to check iTunes Connect to see if the build is ready. WatchBuild lets you know as soon as it is done.
|
|
38
38
|
|
|
39
|
-
|
|
39
|
+
WatchBuild is a simple standalone tool that shows a notification once your newly uploaded build was successfully processed by iTunes Connect.
|
|
40
|
+
|
|
41
|
+
Once the build is ready to be pushed to TestFlight or for review, you get a OS X notification. You can even directly click on the notification to open the build on iTunes Connect.
|
|
42
|
+
|
|
43
|
+
### Why use WatchBuild?
|
|
44
|
+
|
|
45
|
+
WatchBuild is a standalone tool and can be used without any of the other [fastlane tools](https://fastlane.tools). This is *big*, since you can use WatchBuild also if you use Xcode to upload your app.
|
|
46
|
+
|
|
47
|
+
This tool is not a replacement for [deliver](https://github.com/fastlane/deliver) (Upload metadata and builds to iTunes Connect) or [pilot](https://github.com/fastlane/pilot) (Upload and distribute new builds to TestFlight), but is meant as a small helpful utility with the main purpose to wait for the binary processing to be finished.
|
|
40
48
|
|
|
41
49
|
Get in contact with the developer on Twitter: [@KrauseFx](https://twitter.com/KrauseFx)
|
|
42
50
|
|
|
@@ -73,7 +81,8 @@ For a list of available parameters and commands run
|
|
|
73
81
|
<img src="assets/terminal.png">
|
|
74
82
|
|
|
75
83
|
## How is my password stored?
|
|
76
|
-
|
|
84
|
+
|
|
85
|
+
`WatchBuild` uses the secure [CredentialsManager](https://github.com/fastlane/credentials_manager) from [fastlane](https://fastlane.tools) that stores credentials in your local keychain.
|
|
77
86
|
|
|
78
87
|
# Tips
|
|
79
88
|
## [`fastlane`](https://fastlane.tools) Toolchain
|
data/lib/watchbuild/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: watchbuild
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0
|
|
4
|
+
version: 0.1.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: 2015-11-
|
|
11
|
+
date: 2015-11-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane_core
|
|
@@ -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.4.6
|
|
223
223
|
signing_key:
|
|
224
224
|
specification_version: 4
|
|
225
225
|
summary: Get a notification once your iTunes Connect build is finished processing
|