gym/lib/gym/options.rb in fastlane-2.37.0.beta.20170602010027 vs gym/lib/gym/options.rb in fastlane-2.37.0.beta.20170603010102
- old
+ new
@@ -257,27 +257,18 @@
UI.user_error!("Formatter file not found at path '#{File.expand_path(value)}'") unless File.exist?(value)
end),
FastlaneCore::ConfigItem.new(key: :xcpretty_report_junit,
env_name: "XCPRETTY_REPORT_JUNIT",
description: "Have xcpretty create a JUnit-style XML report 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),
+ optional: true),
FastlaneCore::ConfigItem.new(key: :xcpretty_report_html,
env_name: "XCPRETTY_REPORT_HTML",
description: "Have xcpretty create a simple HTML report 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),
+ optional: true),
FastlaneCore::ConfigItem.new(key: :xcpretty_report_json,
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),
+ optional: true),
FastlaneCore::ConfigItem.new(key: :analyze_build_time,
env_name: "GYM_ANALYZE_BUILD_TIME",
description: "Analyze the project build time and store the output in culprits.txt file",
optional: true,
is_string: false),