pilot 0.1.3 → 0.1.4
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 +1 -2
- data/lib/pilot/build_manager.rb +1 -1
- data/lib/pilot/options.rb +1 -7
- data/lib/pilot/tester_manager.rb +1 -2
- data/lib/pilot/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: cbc69e8a9b450d56fd3ad1ab170e5a2ece2df255
|
4
|
+
data.tar.gz: eb1a72d42b7762eb8dc672f64232416839f8ae7e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b2c50302b4eacaaf1bcdd38125488b1d7095ee6dfd845467826eccc9ccd335d947f6ddc90774698f9a20c6d74614ee0940b37d802f311cccc46382ac01655cb7
|
7
|
+
data.tar.gz: beb8ebeb55f930674307c88112eaeba08b24bc75bb9d0a06bd5bb29f0a9bc5e7827f6914351eb1c8875ec1bced69e25b73fbff234a247d1737d9462e000ffc08
|
data/README.md
CHANGED
@@ -99,7 +99,7 @@ pilot upload --skip_submission
|
|
99
99
|
To list all builds for specific application use
|
100
100
|
|
101
101
|
```
|
102
|
-
pilot
|
102
|
+
pilot builds
|
103
103
|
```
|
104
104
|
|
105
105
|
The result lists all active builds and processing builds:
|
@@ -229,7 +229,6 @@ pilot import -c ~/Desktop/testers.csv
|
|
229
229
|
- [`produce`](https://github.com/KrauseFx/produce): Create new iOS apps on iTunes Connect and Dev Portal using the command line
|
230
230
|
- [`cert`](https://github.com/KrauseFx/cert): Automatically create and maintain iOS code signing certificates
|
231
231
|
- [`spaceship`](https://github.com/fastlane/spaceship): Ruby library to access the Apple Dev Center and iTunes Connect
|
232
|
-
- [`pilot`](https://github.com/fastlane/pilot): The best way to manage your TestFlight testers and builds from your terminal
|
233
232
|
- [`boarding`](https://github.com/fastlane/boarding): The easiest way to invite your TestFlight beta testers
|
234
233
|
|
235
234
|
##### [Like this tool? Be the first to know about updates and new fastlane tools](https://tinyletter.com/krausefx)
|
data/lib/pilot/build_manager.rb
CHANGED
@@ -7,7 +7,7 @@ module Pilot
|
|
7
7
|
|
8
8
|
package_path = PackageBuilder.new.generate(apple_id: app.apple_id,
|
9
9
|
ipa_path: config[:ipa],
|
10
|
-
package_path: "/tmp")
|
10
|
+
package_path: "/tmp")
|
11
11
|
|
12
12
|
result = FastlaneCore::ItunesTransporter.new.upload(config[:apple_id], package_path)
|
13
13
|
if result
|
data/lib/pilot/options.rb
CHANGED
@@ -27,6 +27,7 @@ module Pilot
|
|
27
27
|
short_option: "-s",
|
28
28
|
env_name: "PILOT_SKIP_SUBMISSION",
|
29
29
|
description: "Skip the distributing action of pilot and only upload the ipa file",
|
30
|
+
is_string: false,
|
30
31
|
default_value: false),
|
31
32
|
FastlaneCore::ConfigItem.new(key: :app_identifier,
|
32
33
|
short_option: "-a",
|
@@ -66,13 +67,6 @@ module Pilot
|
|
66
67
|
verify_block: proc do |_value|
|
67
68
|
raise "Please pass a valid email address" unless _value.include?"@"
|
68
69
|
end),
|
69
|
-
FastlaneCore::ConfigItem.new(key: :group_name,
|
70
|
-
short_option: "-g",
|
71
|
-
env_name: "PILOT_TESTER_GROUP",
|
72
|
-
description: "Group to add the tester to",
|
73
|
-
optional: true,
|
74
|
-
verify_block: proc do |_value|
|
75
|
-
end),
|
76
70
|
FastlaneCore::ConfigItem.new(key: :testers_file_path,
|
77
71
|
short_option: "-c",
|
78
72
|
env_name: "PILOT_TESTERS_FILE",
|
data/lib/pilot/tester_manager.rb
CHANGED
@@ -14,8 +14,7 @@ module Pilot
|
|
14
14
|
else
|
15
15
|
tester = Spaceship::Tunes::Tester::External.create!(email: config[:email],
|
16
16
|
first_name: config[:first_name],
|
17
|
-
last_name: config[:last_name]
|
18
|
-
group: config[:group_name])
|
17
|
+
last_name: config[:last_name])
|
19
18
|
Helper.log.info "Successfully invited tester: #{tester.email}".green
|
20
19
|
end
|
21
20
|
|
data/lib/pilot/version.rb
CHANGED
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: 0.1.
|
4
|
+
version: 0.1.4
|
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-08-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: fastlane_core
|
@@ -30,14 +30,14 @@ dependencies:
|
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.3.
|
33
|
+
version: 0.3.1
|
34
34
|
type: :runtime
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: 0.3.
|
40
|
+
version: 0.3.1
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: credentials_manager
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
@@ -206,7 +206,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
206
206
|
version: '0'
|
207
207
|
requirements: []
|
208
208
|
rubyforge_project:
|
209
|
-
rubygems_version: 2.4.
|
209
|
+
rubygems_version: 2.4.8
|
210
210
|
signing_key:
|
211
211
|
specification_version: 4
|
212
212
|
summary: The best way to manage your TestFlight testers and builds from your terminal
|