fastlane/lib/fastlane/actions/slather.rb in fastlane-2.107.0 vs fastlane/lib/fastlane/actions/slather.rb in fastlane-2.108.0

- old
+ new

@@ -32,10 +32,11 @@ scheme: '--scheme', configuration: '--configuration', workspace: '--workspace', binary_file: '--binary-file', binary_basename: '--binary-basename', + arch: '--arch', source_files: '--source-files', decimals: '--decimals' }.freeze def self.run(params) @@ -255,9 +256,13 @@ FastlaneCore::ConfigItem.new(key: :binary_file, env_name: "FL_SLATHER_BINARY_FILE", description: "Binary file name to be used for code coverage", is_string: false, default_value: false), + 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,