watchbuild 0.1.1 → 0.1.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/README.md +3 -1
- data/bin/watchbuild +0 -1
- data/lib/watchbuild/options.rb +4 -1
- data/lib/watchbuild/runner.rb +4 -2
- data/lib/watchbuild/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a70fb090a363d488ca73f0d46bf3ea86c7ae9fa5
|
|
4
|
+
data.tar.gz: 5d392588cd8e0a250945918e70075df17794229d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: edbc7ea593aedc25adcafc6299c845076113e2b1a3ec1f466dbc255105b589471939b96187ff09a6d39ff7e863d854710ab7c70a95cfee49570af339585ac0ed
|
|
7
|
+
data.tar.gz: 148ede759478bbc49c0ac2c592f8a7aac20f5bca6a585d67d5404e5cc84cc3996a5b2bff306a2291b6560d8e33fb9196d0a360f4ed87c595123a0315e8402a47
|
data/README.md
CHANGED
|
@@ -17,7 +17,8 @@
|
|
|
17
17
|
<a href="https://github.com/fastlane/pilot">pilot</a> •
|
|
18
18
|
<a href="https://github.com/fastlane/boarding">boarding</a> •
|
|
19
19
|
<a href="https://github.com/fastlane/gym">gym</a> •
|
|
20
|
-
<a href="https://github.com/fastlane/scan">scan</a>
|
|
20
|
+
<a href="https://github.com/fastlane/scan">scan</a> •
|
|
21
|
+
<a href="https://github.com/fastlane/match">match</a>
|
|
21
22
|
</p>
|
|
22
23
|
-------
|
|
23
24
|
|
|
@@ -100,6 +101,7 @@ For a list of available parameters and commands run
|
|
|
100
101
|
- [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
|
|
101
102
|
- [`gym`](https://github.com/fastlane/gym): Building your iOS apps has never been easier
|
|
102
103
|
- [`scan`](https://github.com/fastlane/scan): The easiest way to run tests of your iOS and Mac app
|
|
104
|
+
- [`match`](https://github.com/fastlane/match): Easily sync your certificates and profiles across your team using git
|
|
103
105
|
|
|
104
106
|
##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
|
|
105
107
|
|
data/bin/watchbuild
CHANGED
data/lib/watchbuild/options.rb
CHANGED
|
@@ -4,6 +4,9 @@ require 'credentials_manager'
|
|
|
4
4
|
module WatchBuild
|
|
5
5
|
class Options
|
|
6
6
|
def self.available_options
|
|
7
|
+
user = CredentialsManager::AppfileConfig.try_fetch_value(:itunes_connect_id)
|
|
8
|
+
user ||= CredentialsManager::AppfileConfig.try_fetch_value(:apple_id)
|
|
9
|
+
|
|
7
10
|
[
|
|
8
11
|
FastlaneCore::ConfigItem.new(key: :app_identifier,
|
|
9
12
|
short_option: "-a",
|
|
@@ -14,7 +17,7 @@ module WatchBuild
|
|
|
14
17
|
short_option: "-u",
|
|
15
18
|
env_name: "FASTLANE_USER",
|
|
16
19
|
description: "Your Apple ID Username",
|
|
17
|
-
default_value:
|
|
20
|
+
default_value: user)
|
|
18
21
|
]
|
|
19
22
|
end
|
|
20
23
|
end
|
data/lib/watchbuild/runner.rb
CHANGED
|
@@ -48,8 +48,10 @@ module WatchBuild
|
|
|
48
48
|
execute: "open '#{url}'")
|
|
49
49
|
|
|
50
50
|
Helper.log.info "Successfully finished processing the build".green
|
|
51
|
-
|
|
52
|
-
|
|
51
|
+
if minutes > 0 # it's 0 minutes if there was no new build uploaded
|
|
52
|
+
Helper.log.info "You can now tweet: "
|
|
53
|
+
Helper.log.info "iTunes Connect #iosprocessingtime #{minutes} minutes".yellow
|
|
54
|
+
end
|
|
53
55
|
Helper.log.info url
|
|
54
56
|
end
|
|
55
57
|
|
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.1.
|
|
4
|
+
version: 0.1.2
|
|
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
|
+
date: 2015-12-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane_core
|
|
@@ -36,14 +36,14 @@ dependencies:
|
|
|
36
36
|
requirements:
|
|
37
37
|
- - ">="
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: 0.
|
|
39
|
+
version: 0.18.0
|
|
40
40
|
type: :runtime
|
|
41
41
|
prerelease: false
|
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
|
43
43
|
requirements:
|
|
44
44
|
- - ">="
|
|
45
45
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: 0.
|
|
46
|
+
version: 0.18.0
|
|
47
47
|
- !ruby/object:Gem::Dependency
|
|
48
48
|
name: terminal-notifier
|
|
49
49
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -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.0
|
|
223
223
|
signing_key:
|
|
224
224
|
specification_version: 4
|
|
225
225
|
summary: Get a notification once your iTunes Connect build is finished processing
|