pilot 1.1.0 → 1.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: dd292a0ec1a032955f9a7974999e759a4835c8cb
4
- data.tar.gz: 1066d6276afc3baa466cc587e106775f7658afbd
3
+ metadata.gz: 18caa44bc8529b93340392cae3f7b5d853b7ead1
4
+ data.tar.gz: b639c45c9849df3387d2f8dd030bd543a4312e64
5
5
  SHA512:
6
- metadata.gz: 157e27232aa67f9f74b7f99af171cf3da086df4db87089edb48435ac05ba5eeb04ae1e6abefc45290f25eff92ada01173602860555237ad5c7ab7d2522c46922
7
- data.tar.gz: c40148522ddeafaf94ae6d6e60bb639703fa5913c55a6968a5e1e9242432293ba5aa712e2c1796c083eda454c9b452314f8ad6b64fa9f49ae92c52d154c09b84
6
+ metadata.gz: ffa7bbe390ec73d97da358aa298b5b0bc68e74e79f0feb68fa85df4f73ba53e4c6fcc49315ed823d23a1cb483bd8102c96c85804e692bdbd4433b782d06dead3
7
+ data.tar.gz: cdea50624d1d939f119ccff17ac94f097f5f46db2ef0765c6da479226da4d5afcc91ff4df775cf28151b5bb437133bf8a18f7d3ca4d9adb76f140feccf6bbbbe
data/README.md CHANGED
@@ -9,7 +9,7 @@
9
9
  <a href="https://github.com/fastlane/deliver">deliver</a> &bull;
10
10
  <a href="https://github.com/fastlane/snapshot">snapshot</a> &bull;
11
11
  <a href="https://github.com/fastlane/frameit">frameit</a> &bull;
12
- <a href="https://github.com/fastlane/PEM">PEM</a> &bull;
12
+ <a href="https://github.com/fastlane/pem">pem</a> &bull;
13
13
  <a href="https://github.com/fastlane/sigh">sigh</a> &bull;
14
14
  <a href="https://github.com/fastlane/produce">produce</a> &bull;
15
15
  <a href="https://github.com/fastlane/cert">cert</a> &bull;
@@ -17,7 +17,8 @@
17
17
  <b>pilot</b> &bull;
18
18
  <a href="https://github.com/fastlane/boarding">boarding</a> &bull;
19
19
  <a href="https://github.com/fastlane/gym">gym</a> &bull;
20
- <a href="https://github.com/fastlane/scan">scan</a>
20
+ <a href="https://github.com/fastlane/scan">scan</a> &bull;
21
+ <a href="https://github.com/fastlane/match">match</a>
21
22
  </p>
22
23
  -------
23
24
 
@@ -233,13 +234,14 @@ pilot import -c ~/Desktop/testers.csv
233
234
  - [`snapshot`](https://github.com/fastlane/snapshot): Automate taking localized screenshots of your iOS app on every device
234
235
  - [`frameit`](https://github.com/fastlane/frameit): Quickly put your screenshots into the right device frames
235
236
  - [`produce`](https://github.com/fastlane/produce): Create new iOS apps on iTunes Connect and Dev Portal using the command line
236
- - [`PEM`](https://github.com/fastlane/PEM): Automatically generate and renew your push notification profiles
237
+ - [`pem`](https://github.com/fastlane/pem): Automatically generate and renew your push notification profiles
237
238
  - [`sigh`](https://github.com/fastlane/sigh): Because you would rather spend your time building stuff than fighting provisioning
238
239
  - [`cert`](https://github.com/fastlane/cert): Automatically create and maintain iOS code signing certificates
239
240
  - [`spaceship`](https://github.com/fastlane/spaceship): Ruby library to access the Apple Dev Center and iTunes Connect
240
241
  - [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
241
242
  - [`gym`](https://github.com/fastlane/gym): Building your iOS apps has never been easier
242
243
  - [`scan`](https://github.com/fastlane/scan): The easiest way to run tests of your iOS and Mac app
244
+ - [`match`](https://github.com/fastlane/match): Easily sync your certificates and profiles across your team using git
243
245
 
244
246
  ##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
245
247
 
@@ -251,12 +253,19 @@ If you run into any issues you can use the `verbose` mode to get a more detailed
251
253
 
252
254
  ## Firewall Issues
253
255
 
254
- `pilot` uses the iTunes Transporter to upload metadata and binaries. In case you are behind a firewall, you can specify a different transporter protocol using
256
+ `pilot` uses the iTunes Transporter to upload metadata and binaries. In case you are behind a firewall, you can specify a different transporter protocol from the command line using
255
257
 
256
258
  ```
257
259
  DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS="-t DAV" pilot ...
258
260
  ```
259
261
 
262
+ If you are using `pilot` via the [fastlane action](https://github.com/fastlane/fastlane/blob/master/docs/Actions.md#pilot), add the following to your `Fastfile`
263
+
264
+ ```
265
+ ENV["DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS"] = "-t DAV"
266
+ pilot...
267
+ ```
268
+
260
269
  ## How is my password stored?
261
270
 
262
271
  `pilot` uses the [CredentialsManager](https://github.com/fastlane/credentials_manager) from `fastlane`.
@@ -106,7 +106,8 @@ module Pilot
106
106
  uploaded_build.update_build_information!(whats_new: options[:changelog])
107
107
 
108
108
  # Submit for internal beta testing
109
- uploaded_build.build_train.update_testing_status!(true, 'external')
109
+ type = options[:distribute_external] ? 'external' : 'internal'
110
+ uploaded_build.build_train.update_testing_status!(true, type)
110
111
  return true
111
112
  end
112
113
  end
data/lib/pilot/options.rb CHANGED
@@ -46,6 +46,11 @@ module Pilot
46
46
  description: "The unique App ID provided by iTunes Connect",
47
47
  optional: true,
48
48
  default_value: ENV["TESTFLIGHT_APPLE_ID"]),
49
+ FastlaneCore::ConfigItem.new(key: :distribute_external,
50
+ is_string: false,
51
+ env_name: "PILOT_DISTRIBUTE_EXTERNAL",
52
+ description: "Should the build be distributed to external testers?",
53
+ default_value: false),
49
54
  FastlaneCore::ConfigItem.new(key: :first_name,
50
55
  short_option: "-f",
51
56
  env_name: "PILOT_TESTER_FIRST_NAME",
data/lib/pilot/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module Pilot
2
- VERSION = "1.1.0"
2
+ VERSION = "1.2.0"
3
3
  DESCRIPTION = "The best way to manage your TestFlight testers and builds from your terminal"
4
4
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pilot
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.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: 2015-12-03 00:00:00.000000000 Z
11
+ date: 2015-12-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: fastlane_core
@@ -36,7 +36,7 @@ dependencies:
36
36
  requirements:
37
37
  - - ">="
38
38
  - !ruby/object:Gem::Version
39
- version: 0.15.1
39
+ version: 0.16.0
40
40
  - - "<"
41
41
  - !ruby/object:Gem::Version
42
42
  version: 1.0.0
@@ -46,7 +46,7 @@ dependencies:
46
46
  requirements:
47
47
  - - ">="
48
48
  - !ruby/object:Gem::Version
49
- version: 0.15.1
49
+ version: 0.16.0
50
50
  - - "<"
51
51
  - !ruby/object:Gem::Version
52
52
  version: 1.0.0
@@ -247,7 +247,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
247
247
  version: '0'
248
248
  requirements: []
249
249
  rubyforge_project:
250
- rubygems_version: 2.4.0
250
+ rubygems_version: 2.4.6
251
251
  signing_key:
252
252
  specification_version: 4
253
253
  summary: The best way to manage your TestFlight testers and builds from your terminal