gym/lib/gym/options.rb in fastlane-2.9.0 vs gym/lib/gym/options.rb in fastlane-2.10.0
- old
+ new
@@ -246,10 +246,15 @@
env_name: "XCPRETTY_REPORT_JSON",
description: "Have xcpretty create a JSON compilation database at the provided path",
optional: true,
verify_block: proc do |value|
UI.user_error!("Report output location not found at path '#{File.expand_path(value)}'") unless File.exist?(value)
- end)
+ end),
+ FastlaneCore::ConfigItem.new(key: :xcpretty_utf,
+ env_name: "XCPRETTY_UTF",
+ description: "Have xcpretty use unicode encoding when reporting builds",
+ optional: true,
+ is_string: false)
]
end
end
end