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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 596a3c8437815a0c1dde31674a0144059e1d2ab4
4
- data.tar.gz: 7d8b44292c85e4ad4c98c7d40f35b17eeca47265
3
+ metadata.gz: 1a6af2fa30be269d62083f28e10dae80d9608a43
4
+ data.tar.gz: 9c6b985e6a7dcd464c970b36b18dcde2f7428d31
5
5
  SHA512:
6
- metadata.gz: 7ce40bab2d4973262590f848fca0b5df1e1bdd23aec80d3b7704ba8fe174e46abce818de989bedf53fe4be080d7b7c653138796631b03bde7c07cd8a3159cd0f
7
- data.tar.gz: c5bde173f87d2ece409d1159f6429822aa7f58cd349310c95019a6c4e25c621de95f585c0e04676441a89a3c15f1131348e077f7de264ceb2b2d46f9788fdb15
6
+ metadata.gz: c85319369c29e57c7f65d166ec925ce8b0b7c0b5e36aac90b23aacec080243c4821446707cfff826f87869e67fe377ed7f16261a7da490b85b1b649fe59bfeec
7
+ data.tar.gz: 3baee78f4beb891474676a1737571686318a7aa4dd1f29641a8cf3d6d22f1076a2d2ae25676c6bd73610f87e896814b398c8c7ebed556f97500a56ab0e3a1ae2
@@ -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 (if necessary)
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
@@ -1,4 +1,4 @@
1
1
  module Pilot
2
- VERSION = "1.10.1"
2
+ VERSION = "1.11.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.10.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-05 00:00:00.000000000 Z
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.1
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.1
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.34.2
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.34.2
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.38.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.38.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.4.5.1
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