fastlane 2.185.0 → 2.185.1

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.
Files changed (52) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +82 -82
  3. data/fastlane/lib/fastlane/actions/appetize.rb +0 -7
  4. data/fastlane/lib/fastlane/actions/appium.rb +40 -65
  5. data/fastlane/lib/fastlane/actions/apteligent.rb +3 -2
  6. data/fastlane/lib/fastlane/actions/artifactory.rb +5 -6
  7. data/fastlane/lib/fastlane/actions/automatic_code_signing.rb +6 -11
  8. data/fastlane/lib/fastlane/actions/backup_xcarchive.rb +2 -2
  9. data/fastlane/lib/fastlane/actions/badge.rb +9 -13
  10. data/fastlane/lib/fastlane/actions/build_and_upload_to_appetize.rb +1 -3
  11. data/fastlane/lib/fastlane/actions/bundle_install.rb +8 -10
  12. data/fastlane/lib/fastlane/actions/carthage.rb +1 -15
  13. data/fastlane/lib/fastlane/actions/changelog_from_git_commits.rb +8 -17
  14. data/fastlane/lib/fastlane/actions/chatwork.rb +3 -2
  15. data/fastlane/lib/fastlane/actions/clean_build_artifacts.rb +0 -1
  16. data/fastlane/lib/fastlane/actions/clean_cocoapods_cache.rb +0 -1
  17. data/fastlane/lib/fastlane/actions/cloc.rb +9 -13
  18. data/fastlane/lib/fastlane/actions/cocoapods.rb +9 -15
  19. data/fastlane/lib/fastlane/actions/commit_github_file.rb +1 -3
  20. data/fastlane/lib/fastlane/actions/commit_version_bump.rb +6 -7
  21. data/fastlane/lib/fastlane/actions/copy_artifacts.rb +3 -4
  22. data/fastlane/lib/fastlane/actions/crashlytics.rb +7 -11
  23. data/fastlane/lib/fastlane/actions/create_app_on_managed_play_store.rb +70 -76
  24. data/fastlane/lib/fastlane/actions/create_keychain.rb +9 -10
  25. data/fastlane/lib/fastlane/actions/create_pull_request.rb +0 -9
  26. data/fastlane/lib/fastlane/actions/danger.rb +6 -11
  27. data/fastlane/lib/fastlane/actions/docs/capture_android_screenshots.md +1 -1
  28. data/fastlane/lib/fastlane/helper/crashlytics_helper.rb +4 -4
  29. data/fastlane/lib/fastlane/setup/setup_ios.rb +3 -3
  30. data/fastlane/lib/fastlane/swift_fastlane_function.rb +3 -3
  31. data/fastlane/lib/fastlane/version.rb +1 -1
  32. data/fastlane/swift/Deliverfile.swift +1 -1
  33. data/fastlane/swift/DeliverfileProtocol.swift +1 -1
  34. data/fastlane/swift/Fastlane.swift +1099 -1099
  35. data/fastlane/swift/Gymfile.swift +1 -1
  36. data/fastlane/swift/GymfileProtocol.swift +1 -1
  37. data/fastlane/swift/Matchfile.swift +1 -1
  38. data/fastlane/swift/MatchfileProtocol.swift +1 -1
  39. data/fastlane/swift/Precheckfile.swift +1 -1
  40. data/fastlane/swift/PrecheckfileProtocol.swift +1 -1
  41. data/fastlane/swift/Scanfile.swift +1 -1
  42. data/fastlane/swift/ScanfileProtocol.swift +1 -1
  43. data/fastlane/swift/Screengrabfile.swift +1 -1
  44. data/fastlane/swift/ScreengrabfileProtocol.swift +1 -1
  45. data/fastlane/swift/Snapshotfile.swift +1 -1
  46. data/fastlane/swift/SnapshotfileProtocol.swift +1 -1
  47. data/fastlane/swift/formatting/Brewfile.lock.json +2 -2
  48. data/fastlane_core/lib/fastlane_core/print_table.rb +5 -3
  49. data/fastlane_core/lib/fastlane_core/project.rb +7 -3
  50. data/snapshot/lib/snapshot/test_command_generator.rb +1 -1
  51. data/spaceship/lib/spaceship/spaceauth_runner.rb +19 -6
  52. metadata +20 -20
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b6e7c985939b0ad640d941e70d29b2a64adcdfda30bd7af3300769433992ec1d
4
- data.tar.gz: beea0dd643df12e2aee3a8878a1dc5798cc7a06b27dbbb18efdab8b02f4a935e
3
+ metadata.gz: f8b6571964abef2b2e8b1cd869a08570a55204c8eaacceb7fdc6e06a74c4b620
4
+ data.tar.gz: 7f174988315794be70e4ed8b33b4ed433c0f66c3425d9acfa2cfffd876725950
5
5
  SHA512:
6
- metadata.gz: 788d3eb2bc42521a3864c2d9e61dc3e2c85753930f1f0f960ac27bb314a536b03c41224e52aaedc53b92447d617bff4879a516cfbc02641f06646662f00195ca
7
- data.tar.gz: 5fa2058d1ffc22640fb181ae5bb632ea17825efd0ca77a66e68129568b0ff46cfcbca22c150d55a759a470d291979247b46ed316b08968ffe61de3a0680e3c7f
6
+ metadata.gz: 78fa9680797fc18ebe5c0961aa54bbcc2fec38c02230590ddb6809c91b7ece1f877118b3d8777161760f22262cfb90f6bb9ec5a3e8b113de725ece4055a367dc
7
+ data.tar.gz: 178e47828500a152080f0aa048d9954a46db7fab5c8039fe8f125029a9987cb4c3a85579503fb9982ced69dcde4c9e04a1550d559ea2b9909b0ea792d3ab1003
data/README.md CHANGED
@@ -35,43 +35,43 @@ If the above doesn't help, please [submit an issue](https://github.com/fastlane/
35
35
  <!-- This table is regenerated and resorted on each release -->
36
36
  <table id='team'>
37
37
  <tr>
38
- <td id='kohki-miki'>
39
- <a href='https://github.com/giginet'>
40
- <img src='https://github.com/giginet.png' width='140px;'>
38
+ <td id='josh-holtz'>
39
+ <a href='https://github.com/joshdholtz'>
40
+ <img src='https://github.com/joshdholtz.png' width='140px;'>
41
41
  </a>
42
- <h4 align='center'><a href='https://twitter.com/giginet'>Kohki Miki</a></h4>
42
+ <h4 align='center'><a href='https://twitter.com/joshdholtz'>Josh Holtz</a></h4>
43
43
  </td>
44
- <td id='jorge-revuelta-h'>
45
- <a href='https://github.com/minuscorp'>
46
- <img src='https://github.com/minuscorp.png' width='140px;'>
44
+ <td id='jimmy-dee'>
45
+ <a href='https://github.com/jdee'>
46
+ <img src='https://github.com/jdee.png' width='140px;'>
47
47
  </a>
48
- <h4 align='center'><a href='https://twitter.com/minuscorp'>Jorge Revuelta H</a></h4>
48
+ <h4 align='center'>Jimmy Dee</h4>
49
49
  </td>
50
- <td id='max-ott'>
51
- <a href='https://github.com/max-ott'>
52
- <img src='https://github.com/max-ott.png' width='140px;'>
50
+ <td id='olivier-halligon'>
51
+ <a href='https://github.com/AliSoftware'>
52
+ <img src='https://github.com/AliSoftware.png' width='140px;'>
53
53
  </a>
54
- <h4 align='center'><a href='https://twitter.com/ott_max'>Max Ott</a></h4>
54
+ <h4 align='center'><a href='https://twitter.com/aligatr'>Olivier Halligon</a></h4>
55
55
  </td>
56
- <td id='helmut-januschka'>
57
- <a href='https://github.com/hjanuschka'>
58
- <img src='https://github.com/hjanuschka.png' width='140px;'>
56
+ <td id='maksym-grebenets'>
57
+ <a href='https://github.com/mgrebenets'>
58
+ <img src='https://github.com/mgrebenets.png' width='140px;'>
59
59
  </a>
60
- <h4 align='center'><a href='https://twitter.com/hjanuschka'>Helmut Januschka</a></h4>
60
+ <h4 align='center'><a href='https://twitter.com/mgrebenets'>Maksym Grebenets</a></h4>
61
61
  </td>
62
- <td id='manu-wallner'>
63
- <a href='https://github.com/milch'>
64
- <img src='https://github.com/milch.png' width='140px;'>
62
+ <td id='kohki-miki'>
63
+ <a href='https://github.com/giginet'>
64
+ <img src='https://github.com/giginet.png' width='140px;'>
65
65
  </a>
66
- <h4 align='center'><a href='https://twitter.com/acrooow'>Manu Wallner</a></h4>
66
+ <h4 align='center'><a href='https://twitter.com/giginet'>Kohki Miki</a></h4>
67
67
  </td>
68
68
  </tr>
69
69
  <tr>
70
- <td id='luka-mirosevic'>
71
- <a href='https://github.com/lmirosevic'>
72
- <img src='https://github.com/lmirosevic.png' width='140px;'>
70
+ <td id='manu-wallner'>
71
+ <a href='https://github.com/milch'>
72
+ <img src='https://github.com/milch.png' width='140px;'>
73
73
  </a>
74
- <h4 align='center'><a href='https://twitter.com/lmirosevic'>Luka Mirosevic</a></h4>
74
+ <h4 align='center'><a href='https://twitter.com/acrooow'>Manu Wallner</a></h4>
75
75
  </td>
76
76
  <td id='aaron-brager'>
77
77
  <a href='https://github.com/getaaron'>
@@ -85,63 +85,63 @@ If the above doesn't help, please [submit an issue](https://github.com/fastlane/
85
85
  </a>
86
86
  <h4 align='center'><a href='https://twitter.com/KrauseFx'>Felix Krause</a></h4>
87
87
  </td>
88
- <td id='roger-oba'>
89
- <a href='https://github.com/rogerluan'>
90
- <img src='https://github.com/rogerluan.png' width='140px;'>
91
- </a>
92
- <h4 align='center'><a href='https://twitter.com/rogerluan_'>Roger Oba</a></h4>
93
- </td>
94
88
  <td id='stefan-natchev'>
95
89
  <a href='https://github.com/snatchev'>
96
90
  <img src='https://github.com/snatchev.png' width='140px;'>
97
91
  </a>
98
92
  <h4 align='center'><a href='https://twitter.com/snatchev'>Stefan Natchev</a></h4>
99
93
  </td>
94
+ <td id='roger-oba'>
95
+ <a href='https://github.com/rogerluan'>
96
+ <img src='https://github.com/rogerluan.png' width='140px;'>
97
+ </a>
98
+ <h4 align='center'><a href='https://twitter.com/rogerluan_'>Roger Oba</a></h4>
99
+ </td>
100
100
  </tr>
101
101
  <tr>
102
- <td id='fumiya-nakamura'>
103
- <a href='https://github.com/nafu'>
104
- <img src='https://github.com/nafu.png' width='140px;'>
102
+ <td id='manish-rathi'>
103
+ <a href='https://github.com/crazymanish'>
104
+ <img src='https://github.com/crazymanish.png' width='140px;'>
105
105
  </a>
106
- <h4 align='center'><a href='https://twitter.com/nafu003'>Fumiya Nakamura</a></h4>
106
+ <h4 align='center'><a href='https://twitter.com/iammanishrathi'>Manish Rathi</a></h4>
107
107
  </td>
108
- <td id='matthew-ellis'>
109
- <a href='https://github.com/matthewellis'>
110
- <img src='https://github.com/matthewellis.png' width='140px;'>
108
+ <td id='iulian-onofrei'>
109
+ <a href='https://github.com/revolter'>
110
+ <img src='https://github.com/revolter.png' width='140px;'>
111
111
  </a>
112
- <h4 align='center'><a href='https://twitter.com/mellis1995'>Matthew Ellis</a></h4>
112
+ <h4 align='center'><a href='https://twitter.com/Revolt666'>Iulian Onofrei</a></h4>
113
113
  </td>
114
- <td id='andrew-mcburney'>
115
- <a href='https://github.com/armcburney'>
116
- <img src='https://github.com/armcburney.png' width='140px;'>
114
+ <td id='jérôme-lacoste'>
115
+ <a href='https://github.com/lacostej'>
116
+ <img src='https://github.com/lacostej.png' width='140px;'>
117
117
  </a>
118
- <h4 align='center'><a href='https://twitter.com/armcburney'>Andrew McBurney</a></h4>
118
+ <h4 align='center'><a href='https://twitter.com/lacostej'>Jérôme Lacoste</a></h4>
119
119
  </td>
120
- <td id='daniel-jankowski'>
121
- <a href='https://github.com/mollyIV'>
122
- <img src='https://github.com/mollyIV.png' width='140px;'>
120
+ <td id='satoshi-namai'>
121
+ <a href='https://github.com/ainame'>
122
+ <img src='https://github.com/ainame.png' width='140px;'>
123
123
  </a>
124
- <h4 align='center'><a href='https://twitter.com/mollyIV'>Daniel Jankowski</a></h4>
124
+ <h4 align='center'><a href='https://twitter.com/ainame'>Satoshi Namai</a></h4>
125
125
  </td>
126
- <td id='jimmy-dee'>
127
- <a href='https://github.com/jdee'>
128
- <img src='https://github.com/jdee.png' width='140px;'>
126
+ <td id='helmut-januschka'>
127
+ <a href='https://github.com/hjanuschka'>
128
+ <img src='https://github.com/hjanuschka.png' width='140px;'>
129
129
  </a>
130
- <h4 align='center'>Jimmy Dee</h4>
130
+ <h4 align='center'><a href='https://twitter.com/hjanuschka'>Helmut Januschka</a></h4>
131
131
  </td>
132
132
  </tr>
133
133
  <tr>
134
- <td id='iulian-onofrei'>
135
- <a href='https://github.com/revolter'>
136
- <img src='https://github.com/revolter.png' width='140px;'>
134
+ <td id='max-ott'>
135
+ <a href='https://github.com/max-ott'>
136
+ <img src='https://github.com/max-ott.png' width='140px;'>
137
137
  </a>
138
- <h4 align='center'><a href='https://twitter.com/Revolt666'>Iulian Onofrei</a></h4>
138
+ <h4 align='center'><a href='https://twitter.com/ott_max'>Max Ott</a></h4>
139
139
  </td>
140
- <td id='joshua-liebowitz'>
141
- <a href='https://github.com/taquitos'>
142
- <img src='https://github.com/taquitos.png' width='140px;'>
140
+ <td id='luka-mirosevic'>
141
+ <a href='https://github.com/lmirosevic'>
142
+ <img src='https://github.com/lmirosevic.png' width='140px;'>
143
143
  </a>
144
- <h4 align='center'><a href='https://twitter.com/taquitos'>Joshua Liebowitz</a></h4>
144
+ <h4 align='center'><a href='https://twitter.com/lmirosevic'>Luka Mirosevic</a></h4>
145
145
  </td>
146
146
  <td id='jan-piotrowski'>
147
147
  <a href='https://github.com/janpio'>
@@ -149,17 +149,17 @@ If the above doesn't help, please [submit an issue](https://github.com/fastlane/
149
149
  </a>
150
150
  <h4 align='center'><a href='https://twitter.com/Sujan'>Jan Piotrowski</a></h4>
151
151
  </td>
152
- <td id='josh-holtz'>
153
- <a href='https://github.com/joshdholtz'>
154
- <img src='https://github.com/joshdholtz.png' width='140px;'>
152
+ <td id='matthew-ellis'>
153
+ <a href='https://github.com/matthewellis'>
154
+ <img src='https://github.com/matthewellis.png' width='140px;'>
155
155
  </a>
156
- <h4 align='center'><a href='https://twitter.com/joshdholtz'>Josh Holtz</a></h4>
156
+ <h4 align='center'><a href='https://twitter.com/mellis1995'>Matthew Ellis</a></h4>
157
157
  </td>
158
- <td id='satoshi-namai'>
159
- <a href='https://github.com/ainame'>
160
- <img src='https://github.com/ainame.png' width='140px;'>
158
+ <td id='daniel-jankowski'>
159
+ <a href='https://github.com/mollyIV'>
160
+ <img src='https://github.com/mollyIV.png' width='140px;'>
161
161
  </a>
162
- <h4 align='center'><a href='https://twitter.com/ainame'>Satoshi Namai</a></h4>
162
+ <h4 align='center'><a href='https://twitter.com/mollyIV'>Daniel Jankowski</a></h4>
163
163
  </td>
164
164
  </tr>
165
165
  <tr>
@@ -169,29 +169,29 @@ If the above doesn't help, please [submit an issue](https://github.com/fastlane/
169
169
  </a>
170
170
  <h4 align='center'><a href='https://twitter.com/endocrimes'>Danielle Tomlinson</a></h4>
171
171
  </td>
172
- <td id='manish-rathi'>
173
- <a href='https://github.com/crazymanish'>
174
- <img src='https://github.com/crazymanish.png' width='140px;'>
172
+ <td id='joshua-liebowitz'>
173
+ <a href='https://github.com/taquitos'>
174
+ <img src='https://github.com/taquitos.png' width='140px;'>
175
175
  </a>
176
- <h4 align='center'><a href='https://twitter.com/iammanishrathi'>Manish Rathi</a></h4>
176
+ <h4 align='center'><a href='https://twitter.com/taquitos'>Joshua Liebowitz</a></h4>
177
177
  </td>
178
- <td id='olivier-halligon'>
179
- <a href='https://github.com/AliSoftware'>
180
- <img src='https://github.com/AliSoftware.png' width='140px;'>
178
+ <td id='andrew-mcburney'>
179
+ <a href='https://github.com/armcburney'>
180
+ <img src='https://github.com/armcburney.png' width='140px;'>
181
181
  </a>
182
- <h4 align='center'><a href='https://twitter.com/aligatr'>Olivier Halligon</a></h4>
182
+ <h4 align='center'><a href='https://twitter.com/armcburney'>Andrew McBurney</a></h4>
183
183
  </td>
184
- <td id='jérôme-lacoste'>
185
- <a href='https://github.com/lacostej'>
186
- <img src='https://github.com/lacostej.png' width='140px;'>
184
+ <td id='jorge-revuelta-h'>
185
+ <a href='https://github.com/minuscorp'>
186
+ <img src='https://github.com/minuscorp.png' width='140px;'>
187
187
  </a>
188
- <h4 align='center'><a href='https://twitter.com/lacostej'>Jérôme Lacoste</a></h4>
188
+ <h4 align='center'><a href='https://twitter.com/minuscorp'>Jorge Revuelta H</a></h4>
189
189
  </td>
190
- <td id='maksym-grebenets'>
191
- <a href='https://github.com/mgrebenets'>
192
- <img src='https://github.com/mgrebenets.png' width='140px;'>
190
+ <td id='fumiya-nakamura'>
191
+ <a href='https://github.com/nafu'>
192
+ <img src='https://github.com/nafu.png' width='140px;'>
193
193
  </a>
194
- <h4 align='center'><a href='https://twitter.com/mgrebenets'>Maksym Grebenets</a></h4>
194
+ <h4 align='center'><a href='https://twitter.com/nafu003'>Fumiya Nakamura</a></h4>
195
195
  </td>
196
196
  </tr>
197
197
  </table>
@@ -109,7 +109,6 @@ module Fastlane
109
109
  FastlaneCore::ConfigItem.new(key: :api_host,
110
110
  env_name: "APPETIZE_API_HOST",
111
111
  description: "Appetize API host",
112
- is_string: true,
113
112
  default_value: 'api.appetize.io',
114
113
  verify_block: proc do |value|
115
114
  UI.user_error!("API host should not contain the scheme e.g. `https`") if value.start_with?('https')
@@ -118,29 +117,24 @@ module Fastlane
118
117
  env_name: "APPETIZE_API_TOKEN",
119
118
  sensitive: true,
120
119
  description: "Appetize.io API Token",
121
- is_string: true,
122
120
  verify_block: proc do |value|
123
121
  UI.user_error!("No API Token for Appetize.io given, pass using `api_token: 'token'`") unless value.to_s.length > 0
124
122
  end),
125
123
  FastlaneCore::ConfigItem.new(key: :url,
126
124
  env_name: "APPETIZE_URL",
127
125
  description: "URL from which the ipa file can be fetched. Alternative to :path",
128
- is_string: true,
129
126
  optional: true),
130
127
  FastlaneCore::ConfigItem.new(key: :platform,
131
128
  env_name: "APPETIZE_PLATFORM",
132
129
  description: "Platform. Either `ios` or `android`",
133
- is_string: true,
134
130
  default_value: 'ios'),
135
131
  FastlaneCore::ConfigItem.new(key: :path,
136
132
  env_name: "APPETIZE_FILE_PATH",
137
133
  description: "Path to zipped build on the local filesystem. Either this or `url` must be specified",
138
- is_string: true,
139
134
  optional: true),
140
135
  FastlaneCore::ConfigItem.new(key: :public_key,
141
136
  env_name: "APPETIZE_PUBLICKEY",
142
137
  description: "If not provided, a new app will be created. If provided, the existing build will be overwritten",
143
- is_string: true,
144
138
  optional: true,
145
139
  verify_block: proc do |value|
146
140
  if value.start_with?("private_")
@@ -150,7 +144,6 @@ module Fastlane
150
144
  FastlaneCore::ConfigItem.new(key: :note,
151
145
  env_name: "APPETIZE_NOTE",
152
146
  description: "Notes you wish to add to the uploaded app",
153
- is_string: true,
154
147
  optional: true),
155
148
  FastlaneCore::ConfigItem.new(key: :timeout,
156
149
  env_name: "APPETIZE_TIMEOUT",
@@ -105,71 +105,46 @@ module Fastlane
105
105
 
106
106
  def self.available_options
107
107
  [
108
- FastlaneCore::ConfigItem.new(
109
- key: :platform,
110
- env_name: 'FL_APPIUM_PLATFORM',
111
- description: 'Appium platform name',
112
- is_string: true
113
- ),
114
- FastlaneCore::ConfigItem.new(
115
- key: :spec_path,
116
- env_name: 'FL_APPIUM_SPEC_PATH',
117
- description: 'Path to Appium spec directory',
118
- is_string: true
119
- ),
120
- FastlaneCore::ConfigItem.new(
121
- key: :app_path,
122
- env_name: 'FL_APPIUM_APP_FILE_PATH',
123
- description: 'Path to Appium target app file',
124
- is_string: true
125
- ),
126
- FastlaneCore::ConfigItem.new(
127
- key: :invoke_appium_server,
128
- env_name: 'FL_APPIUM_INVOKE_APPIUM_SERVER',
129
- description: 'Use local Appium server with invoke automatically',
130
- is_string: false,
131
- default_value: true,
132
- optional: true
133
- ),
134
- FastlaneCore::ConfigItem.new(
135
- key: :host,
136
- env_name: 'FL_APPIUM_HOST',
137
- description: 'Hostname of Appium server',
138
- is_string: true,
139
- default_value: '0.0.0.0',
140
- optional: true
141
- ),
142
- FastlaneCore::ConfigItem.new(
143
- key: :port,
144
- env_name: 'FL_APPIUM_PORT',
145
- description: 'HTTP port of Appium server',
146
- is_string: false,
147
- default_value: 4723,
148
- optional: true
149
- ),
150
- FastlaneCore::ConfigItem.new(
151
- key: :appium_path,
152
- env_name: 'FL_APPIUM_EXECUTABLE_PATH',
153
- description: 'Path to Appium executable',
154
- is_string: true,
155
- optional: true
156
- ),
157
- FastlaneCore::ConfigItem.new(
158
- key: :caps,
159
- env_name: 'FL_APPIUM_CAPS',
160
- description: 'Hash of caps for Appium::Driver',
161
- is_string: false,
162
- type: Hash,
163
- optional: true
164
- ),
165
- FastlaneCore::ConfigItem.new(
166
- key: :appium_lib,
167
- env_name: 'FL_APPIUM_LIB',
168
- description: 'Hash of appium_lib for Appium::Driver',
169
- is_string: false,
170
- type: Hash,
171
- optional: true
172
- )
108
+ FastlaneCore::ConfigItem.new(key: :platform,
109
+ env_name: 'FL_APPIUM_PLATFORM',
110
+ description: 'Appium platform name'),
111
+ FastlaneCore::ConfigItem.new(key: :spec_path,
112
+ env_name: 'FL_APPIUM_SPEC_PATH',
113
+ description: 'Path to Appium spec directory'),
114
+ FastlaneCore::ConfigItem.new(key: :app_path,
115
+ env_name: 'FL_APPIUM_APP_FILE_PATH',
116
+ description: 'Path to Appium target app file'),
117
+ FastlaneCore::ConfigItem.new(key: :invoke_appium_server,
118
+ env_name: 'FL_APPIUM_INVOKE_APPIUM_SERVER',
119
+ description: 'Use local Appium server with invoke automatically',
120
+ type: Boolean,
121
+ default_value: true,
122
+ optional: true),
123
+ FastlaneCore::ConfigItem.new(key: :host,
124
+ env_name: 'FL_APPIUM_HOST',
125
+ description: 'Hostname of Appium server',
126
+ default_value: '0.0.0.0',
127
+ optional: true),
128
+ FastlaneCore::ConfigItem.new(key: :port,
129
+ env_name: 'FL_APPIUM_PORT',
130
+ description: 'HTTP port of Appium server',
131
+ type: Integer,
132
+ default_value: 4723,
133
+ optional: true),
134
+ FastlaneCore::ConfigItem.new(key: :appium_path,
135
+ env_name: 'FL_APPIUM_EXECUTABLE_PATH',
136
+ description: 'Path to Appium executable',
137
+ optional: true),
138
+ FastlaneCore::ConfigItem.new(key: :caps,
139
+ env_name: 'FL_APPIUM_CAPS',
140
+ description: 'Hash of caps for Appium::Driver',
141
+ type: Hash,
142
+ optional: true),
143
+ FastlaneCore::ConfigItem.new(key: :appium_lib,
144
+ env_name: 'FL_APPIUM_LIB',
145
+ description: 'Hash of appium_lib for Appium::Driver',
146
+ type: Hash,
147
+ optional: true)
173
148
  ]
174
149
  end
175
150
 
@@ -70,11 +70,12 @@ module Fastlane
70
70
  optional: true),
71
71
  FastlaneCore::ConfigItem.new(key: :app_id,
72
72
  env_name: "FL_APTELIGENT_APP_ID",
73
- description: "Apteligent App ID key e.g. 569f5c87cb99e10e00c7xxxx",
74
- optional: false),
73
+ description: "Apteligent App ID key e.g. 569f5c87cb99e10e00c7xxxx",
74
+ optional: false),
75
75
  FastlaneCore::ConfigItem.new(key: :api_key,
76
76
  env_name: "FL_APTELIGENT_API_KEY",
77
77
  sensitive: true,
78
+ code_gen_sensitive: true,
78
79
  description: "Apteligent App API key e.g. IXPQIi8yCbHaLliqzRoo065tH0lxxxxx",
79
80
  optional: false)
80
81
  ]
@@ -126,6 +126,7 @@ module Fastlane
126
126
  env_name: "FL_ARTIFACTORY_PASSWORD",
127
127
  description: "Artifactory password",
128
128
  sensitive: true,
129
+ code_gen_sensitive: true,
129
130
  optional: true,
130
131
  conflicting_options: [:api_key],
131
132
  conflict_block: proc do |value|
@@ -135,6 +136,7 @@ module Fastlane
135
136
  env_name: "FL_ARTIFACTORY_API_KEY",
136
137
  description: "Artifactory API key",
137
138
  sensitive: true,
139
+ code_gen_sensitive: true,
138
140
  optional: true,
139
141
  conflicting_options: [:username, :password],
140
142
  conflict_block: proc do |value|
@@ -143,7 +145,7 @@ module Fastlane
143
145
  FastlaneCore::ConfigItem.new(key: :properties,
144
146
  env_name: "FL_ARTIFACTORY_PROPERTIES",
145
147
  description: "Artifact properties hash",
146
- is_string: false,
148
+ type: Hash,
147
149
  default_value: {},
148
150
  optional: true),
149
151
  FastlaneCore::ConfigItem.new(key: :ssl_pem_file,
@@ -154,7 +156,7 @@ module Fastlane
154
156
  FastlaneCore::ConfigItem.new(key: :ssl_verify,
155
157
  env_name: "FL_ARTIFACTORY_SSL_VERIFY",
156
158
  description: "Verify SSL",
157
- is_string: false,
159
+ type: Boolean,
158
160
  default_value: true,
159
161
  optional: true),
160
162
  FastlaneCore::ConfigItem.new(key: :proxy_username,
@@ -166,22 +168,19 @@ module Fastlane
166
168
  env_name: "FL_ARTIFACTORY_PROXY_PASSWORD",
167
169
  description: "Proxy password",
168
170
  sensitive: true,
169
- default_value: nil,
171
+ code_gen_sensitive: true,
170
172
  optional: true),
171
173
  FastlaneCore::ConfigItem.new(key: :proxy_address,
172
174
  env_name: "FL_ARTIFACTORY_PROXY_ADDRESS",
173
175
  description: "Proxy address",
174
- default_value: nil,
175
176
  optional: true),
176
177
  FastlaneCore::ConfigItem.new(key: :proxy_port,
177
178
  env_name: "FL_ARTIFACTORY_PROXY_PORT",
178
179
  description: "Proxy port",
179
- default_value: nil,
180
180
  optional: true),
181
181
  FastlaneCore::ConfigItem.new(key: :read_timeout,
182
182
  env_name: "FL_ARTIFACTORY_READ_TIMEOUT",
183
183
  description: "Read timeout",
184
- default_value: nil,
185
184
  optional: true)
186
185
  ]
187
186
  end