watchbuild 0.1.4 → 0.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 17678285bf3e93c8ca64a66cf551e4847c1413a2
4
- data.tar.gz: 5cc363ec3f85c5c00a06869eaf62e78ac497339e
3
+ metadata.gz: 47669dd195f5b35c1b7cc0fa6d34e0c99fae5afc
4
+ data.tar.gz: 390e4af1db3174483173f5551f6f8437d787cf15
5
5
  SHA512:
6
- metadata.gz: 56185ea87a9c32a028b25c35b2f55f2dbd9b6b8a7853e545ae3e851d968dc42f2a300da698834235a9e21ce24af02159ec311cca43647981d0a320e08c5ea980
7
- data.tar.gz: 15ee18f38b247e5aef2869af8d6cfb842597c0e9ed549fbc8e80026d629078d4bf254ce9f886762674b88363dd40d746cee2bd7dee8fbad2e9f8dc4ec4685dba
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="../fastlane/assets/fastlane.png" width="150" />
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/fastlane/blob/master/watchbuild/LICENSE)
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 OS X notification. You can even directly click on the notification to open the build on iTunes Connect.
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 building and releasing your iOS and Android apps
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
@@ -13,6 +13,7 @@ class WatchBuildApplication
13
13
  include Commander::Methods
14
14
 
15
15
  def run
16
+ program :name, 'watchbuild'
16
17
  program :version, WatchBuild::VERSION
17
18
  program :description, WatchBuild::DESCRIPTION
18
19
  program :help, 'Author', 'Felix Krause <watchbuild@krausefx.com>'
@@ -12,4 +12,5 @@ module WatchBuild
12
12
 
13
13
  Helper = FastlaneCore::Helper # you gotta love Ruby: Helper.* should use the Helper class contained in FastlaneCore
14
14
  UI = FastlaneCore::UI
15
+ ROOT = Pathname.new(File.expand_path('../..', __FILE__))
15
16
  end
@@ -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 identiifer #{WatchBuild.config[:app_identifier]}") unless 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
- Helper.log.info "Application build is still processing"
60
+ UI.message "Application build is still processing"
61
61
  return
62
62
  end
63
63
 
@@ -1,4 +1,4 @@
1
1
  module WatchBuild
2
- VERSION = "0.1.4"
2
+ VERSION = "0.2.0"
3
3
  DESCRIPTION = "Get a notification once your iTunes Connect build is finished processing"
4
4
  end
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.1.4
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-05-07 00:00:00.000000000 Z
11
+ date: 2016-12-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
- name: fastlane_core
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.26.2
19
+ version: 2.0.0
40
20
  - - "<"
41
21
  - !ruby/object:Gem::Version
42
- version: 1.0.0
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.26.2
29
+ version: 2.0.0
50
30
  - - "<"
51
31
  - !ruby/object:Gem::Version
52
- version: 1.0.0
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: '0'
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: '0'
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.38.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.38.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.4.0
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