lib/scan/options.rb in scan-0.12.1 vs lib/scan/options.rb in scan-0.13.0

- old
+ new

@@ -80,13 +80,13 @@ description: "The directory in which all reports will be stored", default_value: File.join(containing, "test_output")), FastlaneCore::ConfigItem.new(key: :output_style, short_option: "-b", env_name: "SCAN_OUTPUT_STYLE", - description: "Define how the output should look like (standard, basic or rspec)", + description: "Define how the output should look like (standard, basic, rspec or raw)", optional: true, verify_block: proc do |value| - UI.user_error!("Invalid output_style #{value}") unless ['standard', 'basic', "rspec"].include?(value) + UI.user_error!("Invalid output_style #{value}") unless ['standard', 'basic', 'rspec', 'raw'].include?(value) end), FastlaneCore::ConfigItem.new(key: :output_types, short_option: "-f", env_name: "SCAN_OUTPUT_TYPES", description: "Comma separated list of the output types (e.g. html, junit)",