pilot 1.10.1 → 1.11.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/lib/pilot/build_manager.rb +4 -4
- data/lib/pilot/options.rb +13 -3
- data/lib/pilot/version.rb +1 -1
- metadata +17 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1a6af2fa30be269d62083f28e10dae80d9608a43
|
|
4
|
+
data.tar.gz: 9c6b985e6a7dcd464c970b36b18dcde2f7428d31
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c85319369c29e57c7f65d166ec925ce8b0b7c0b5e36aac90b23aacec080243c4821446707cfff826f87869e67fe377ed7f16261a7da490b85b1b649fe59bfeec
|
|
7
|
+
data.tar.gz: 3baee78f4beb891474676a1737571686318a7aa4dd1f29641a8cf3d6d22f1076a2d2ae25676c6bd73610f87e896814b398c8c7ebed556f97500a56ab0e3a1ae2
|
data/lib/pilot/build_manager.rb
CHANGED
|
@@ -63,10 +63,10 @@ module Pilot
|
|
|
63
63
|
UI.message("Distributing build #{build.train_version}(#{build.build_version}) from #{build.testing_status} -> External")
|
|
64
64
|
end
|
|
65
65
|
|
|
66
|
-
# First, set the changelog
|
|
67
|
-
if options[:changelog].to_s.length > 0
|
|
68
|
-
build.update_build_information!(whats_new: options[:changelog])
|
|
69
|
-
UI.success "Successfully set the changelog for build"
|
|
66
|
+
# First, set the changelog and/or description if necessary
|
|
67
|
+
if options[:changelog].to_s.length > 0 or options[:beta_app_description].to_s.length > 0 or options[:beta_app_feedback_email].to_s.length > 0
|
|
68
|
+
build.update_build_information!(whats_new: options[:changelog], description: options[:beta_app_description], feedback_email: options[:beta_app_feedback_email])
|
|
69
|
+
UI.success "Successfully set the changelog and/or description for build"
|
|
70
70
|
end
|
|
71
71
|
|
|
72
72
|
return if config[:skip_submission]
|
data/lib/pilot/options.rb
CHANGED
|
@@ -34,6 +34,16 @@ module Pilot
|
|
|
34
34
|
optional: true,
|
|
35
35
|
env_name: "PILOT_CHANGELOG",
|
|
36
36
|
description: "Provide the what's new text when uploading a new build"),
|
|
37
|
+
FastlaneCore::ConfigItem.new(key: :beta_app_description,
|
|
38
|
+
short_option: "-d",
|
|
39
|
+
optional: true,
|
|
40
|
+
env_name: "PILOT_BETA_APP_DESCRIPTION",
|
|
41
|
+
description: "Provide the beta app description when uploading a new build"),
|
|
42
|
+
FastlaneCore::ConfigItem.new(key: :beta_app_feedback_email,
|
|
43
|
+
short_option: "-n",
|
|
44
|
+
optional: true,
|
|
45
|
+
env_name: "PILOT_BETA_APP_FEEDBACK",
|
|
46
|
+
description: "Provide the beta app email when uploading a new build"),
|
|
37
47
|
FastlaneCore::ConfigItem.new(key: :skip_submission,
|
|
38
48
|
short_option: "-s",
|
|
39
49
|
env_name: "PILOT_SKIP_SUBMISSION",
|
|
@@ -93,7 +103,7 @@ module Pilot
|
|
|
93
103
|
FastlaneCore::ConfigItem.new(key: :team_id,
|
|
94
104
|
short_option: "-q",
|
|
95
105
|
env_name: "PILOT_TEAM_ID",
|
|
96
|
-
description: "The ID of your team if you're in multiple teams",
|
|
106
|
+
description: "The ID of your iTunes Connect team if you're in multiple teams",
|
|
97
107
|
optional: true,
|
|
98
108
|
is_string: false, # as we also allow integers, which we convert to strings anyway
|
|
99
109
|
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_id),
|
|
@@ -103,11 +113,11 @@ module Pilot
|
|
|
103
113
|
FastlaneCore::ConfigItem.new(key: :team_name,
|
|
104
114
|
short_option: "-r",
|
|
105
115
|
env_name: "PILOT_TEAM_NAME",
|
|
106
|
-
description: "The name of your team if you're in multiple teams",
|
|
116
|
+
description: "The name of your iTunes Connect team if you're in multiple teams",
|
|
107
117
|
optional: true,
|
|
108
118
|
default_value: CredentialsManager::AppfileConfig.try_fetch_value(:itc_team_name),
|
|
109
119
|
verify_block: proc do |value|
|
|
110
|
-
ENV["FASTLANE_ITC_TEAM_NAME"] = value
|
|
120
|
+
ENV["FASTLANE_ITC_TEAM_NAME"] = value.to_s
|
|
111
121
|
end),
|
|
112
122
|
FastlaneCore::ConfigItem.new(key: :dev_portal_team_id,
|
|
113
123
|
env_name: "PILOT_DEV_PORTAL_TEAM_ID",
|
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: 1.
|
|
4
|
+
version: 1.11.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-10-
|
|
11
|
+
date: 2016-10-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: fastlane_core
|
|
@@ -16,7 +16,7 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - ">="
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: 0.52.
|
|
19
|
+
version: 0.52.3
|
|
20
20
|
- - "<"
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
22
|
version: 1.0.0
|
|
@@ -26,7 +26,7 @@ dependencies:
|
|
|
26
26
|
requirements:
|
|
27
27
|
- - ">="
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: 0.52.
|
|
29
|
+
version: 0.52.3
|
|
30
30
|
- - "<"
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
32
|
version: 1.0.0
|
|
@@ -36,7 +36,7 @@ dependencies:
|
|
|
36
36
|
requirements:
|
|
37
37
|
- - ">="
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: 0.
|
|
39
|
+
version: 0.36.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.
|
|
49
|
+
version: 0.36.0
|
|
50
50
|
- - "<"
|
|
51
51
|
- !ruby/object:Gem::Version
|
|
52
52
|
version: 1.0.0
|
|
@@ -68,16 +68,22 @@ dependencies:
|
|
|
68
68
|
name: terminal-table
|
|
69
69
|
requirement: !ruby/object:Gem::Requirement
|
|
70
70
|
requirements:
|
|
71
|
-
- - "
|
|
71
|
+
- - ">="
|
|
72
72
|
- !ruby/object:Gem::Version
|
|
73
73
|
version: 1.4.5
|
|
74
|
+
- - "<"
|
|
75
|
+
- !ruby/object:Gem::Version
|
|
76
|
+
version: 2.0.0
|
|
74
77
|
type: :runtime
|
|
75
78
|
prerelease: false
|
|
76
79
|
version_requirements: !ruby/object:Gem::Requirement
|
|
77
80
|
requirements:
|
|
78
|
-
- - "
|
|
81
|
+
- - ">="
|
|
79
82
|
- !ruby/object:Gem::Version
|
|
80
83
|
version: 1.4.5
|
|
84
|
+
- - "<"
|
|
85
|
+
- !ruby/object:Gem::Version
|
|
86
|
+
version: 2.0.0
|
|
81
87
|
- !ruby/object:Gem::Dependency
|
|
82
88
|
name: bundler
|
|
83
89
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -210,14 +216,14 @@ dependencies:
|
|
|
210
216
|
requirements:
|
|
211
217
|
- - "~>"
|
|
212
218
|
- !ruby/object:Gem::Version
|
|
213
|
-
version: 0.
|
|
219
|
+
version: 0.44.0
|
|
214
220
|
type: :development
|
|
215
221
|
prerelease: false
|
|
216
222
|
version_requirements: !ruby/object:Gem::Requirement
|
|
217
223
|
requirements:
|
|
218
224
|
- - "~>"
|
|
219
225
|
- !ruby/object:Gem::Version
|
|
220
|
-
version: 0.
|
|
226
|
+
version: 0.44.0
|
|
221
227
|
description: The best way to manage your TestFlight testers and builds from your terminal
|
|
222
228
|
email:
|
|
223
229
|
- pilot@krausefx.com
|
|
@@ -260,7 +266,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
260
266
|
version: '0'
|
|
261
267
|
requirements: []
|
|
262
268
|
rubyforge_project:
|
|
263
|
-
rubygems_version: 2.
|
|
269
|
+
rubygems_version: 2.6.7
|
|
264
270
|
signing_key:
|
|
265
271
|
specification_version: 4
|
|
266
272
|
summary: The best way to manage your TestFlight testers and builds from your terminal
|