129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
# File 'fastlane/lib/fastlane/actions/slather.rb', line 129
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :build_directory,
env_name: "FL_SLATHER_BUILD_DIRECTORY", description: "The location of the build output", optional: true),
FastlaneCore::ConfigItem.new(key: :proj,
env_name: "FL_SLATHER_PROJ", description: "The project file that slather looks at", verify_block: proc do |value|
UI.user_error!("No project file specified, pass using `proj: 'Project.xcodeproj'`") unless value && !value.empty?
end,
optional: true),
FastlaneCore::ConfigItem.new(key: :workspace,
env_name: "FL_SLATHER_WORKSPACE",
description: "The workspace that slather looks at",
optional: true),
FastlaneCore::ConfigItem.new(key: :scheme,
env_name: "FL_SLATHER_SCHEME", description: "Scheme to use when calling slather",
optional: true),
FastlaneCore::ConfigItem.new(key: :configuration,
env_name: "FL_SLATHER_CONFIGURATION", description: "Configuration to use when calling slather (since slather-2.4.1)",
optional: true),
FastlaneCore::ConfigItem.new(key: :input_format,
env_name: "FL_SLATHER_INPUT_FORMAT", description: "The input format that slather should look for",
optional: true),
FastlaneCore::ConfigItem.new(key: :buildkite,
env_name: "FL_SLATHER_BUILDKITE_ENABLED", description: "Tell slather that it is running on Buildkite",
is_string: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :teamcity,
env_name: "FL_SLATHER_TEAMCITY_ENABLED", description: "Tell slather that it is running on TeamCity",
is_string: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :jenkins,
env_name: "FL_SLATHER_JENKINS_ENABLED", description: "Tell slather that it is running on Jenkins",
is_string: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :travis,
env_name: "FL_SLATHER_TRAVIS_ENABLED", description: "Tell slather that it is running on TravisCI",
is_string: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :travis_pro,
env_name: "FL_SLATHER_TRAVIS_PRO_ENABLED", description: "Tell slather that it is running on TravisCI Pro",
is_string: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :circleci,
env_name: "FL_SLATHER_CIRCLECI_ENABLED",
description: "Tell slather that it is running on CircleCI",
is_string: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :coveralls,
env_name: "FL_SLATHER_COVERALLS_ENABLED",
description: "Tell slather that it should post data to Coveralls",
is_string: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :simple_output,
env_name: "FL_SLATHER_SIMPLE_OUTPUT_ENABLED",
description: "Tell slather that it should output results to the terminal",
is_string: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :gutter_json,
env_name: "FL_SLATHER_GUTTER_JSON_ENABLED",
description: "Tell slather that it should output results as Gutter JSON format",
is_string: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :cobertura_xml,
env_name: "FL_SLATHER_COBERTURA_XML_ENABLED",
description: "Tell slather that it should output results as Cobertura XML format",
is_string: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :sonarqube_xml,
env_name: "FL_SLATHER_SONARQUBE_XML_ENABLED",
description: "Tell slather that it should output results as SonarQube Generic XML format",
is_string: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :llvm_cov,
env_name: "FL_SLATHER_LLVM_COV_ENABLED",
description: "Tell slather that it should output results as llvm-cov show format",
is_string: false,
optional: true),
FastlaneCore::ConfigItem.new(key: :json,
env_name: "FL_SLATHER_JSON_ENABLED",
description: "Tell slather that it should output results as static JSON report",
is_string: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :html,
env_name: "FL_SLATHER_HTML_ENABLED",
description: "Tell slather that it should output results as static HTML pages",
is_string: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :show,
env_name: "FL_SLATHER_SHOW_ENABLED",
description: "Tell slather that it should open static html pages automatically",
is_string: false,
type: Boolean,
default_value: false),
FastlaneCore::ConfigItem.new(key: :source_directory,
env_name: "FL_SLATHER_SOURCE_DIRECTORY",
description: "Tell slather the location of your source files",
optional: true),
FastlaneCore::ConfigItem.new(key: :output_directory,
env_name: "FL_SLATHER_OUTPUT_DIRECTORY",
description: "Tell slather the location of for your output files",
optional: true),
FastlaneCore::ConfigItem.new(key: :ignore,
env_name: "FL_SLATHER_IGNORE",
description: "Tell slather to ignore files matching a path or any path from an array of paths",
type: Array,
optional: true),
FastlaneCore::ConfigItem.new(key: :verbose,
env_name: "FL_SLATHER_VERBOSE",
description: "Tell slather to enable verbose mode",
is_string: false,
type: Boolean,
optional: true),
FastlaneCore::ConfigItem.new(key: :use_bundle_exec,
env_name: "FL_SLATHER_USE_BUNDLE_EXEC",
description: "Use bundle exec to execute slather. Make sure it is in the Gemfile",
is_string: false,
type: Boolean,
default_value: false),
FastlaneCore::ConfigItem.new(key: :binary_basename,
env_name: "FL_SLATHER_BINARY_BASENAME",
description: "Basename of the binary file, this should match the name of your bundle excluding its extension (i.e. YourApp [for YourApp.app bundle])",
type: Array,
optional: true),
FastlaneCore::ConfigItem.new(key: :binary_file,
env_name: "FL_SLATHER_BINARY_FILE",
description: "Binary file name to be used for code coverage",
type: Array,
skip_type_validation: true, optional: true),
FastlaneCore::ConfigItem.new(key: :arch,
env_name: "FL_SLATHER_ARCH",
description: "Specify which architecture the binary file is in. Needed for universal binaries",
optional: true),
FastlaneCore::ConfigItem.new(key: :source_files,
env_name: "FL_SLATHER_SOURCE_FILES",
description: "A Dir.glob compatible pattern used to limit the lookup to specific source files. Ignored in gcov mode",
is_string: false,
default_value: false,
optional: true),
FastlaneCore::ConfigItem.new(key: :decimals,
env_name: "FL_SLATHER_DECIMALS",
description: "The amount of decimals to use for % coverage reporting",
is_string: false,
default_value: false,
optional: true)
]
end
|