lib/gym/options.rb in gym-1.6.3 vs lib/gym/options.rb in gym-1.7.0
- old
+ new
@@ -161,12 +161,13 @@
FastlaneCore::ConfigItem.new(key: :provisioning_profile_path,
short_option: "-e",
env_name: "GYM_PROVISIONING_PROFILE_PATH",
description: "The path to the provisioning profile (optional)",
optional: true,
+ deprecated: 'Use target specific provisioning profiles instead',
verify_block: proc do |value|
- UI.user_error!("Provisioning profile not found at path '#{File.expand_path(value)}'") unless File.exist?(value)
+ UI.user_error!("Provisioning profile not found at path '#{File.expand_path(value)}'") unless File.exist?(File.expand_path(value))
end),
FastlaneCore::ConfigItem.new(key: :destination,
short_option: "-d",
env_name: "GYM_DESTINATION",
description: "Use a custom destination for building the app",
@@ -192,11 +193,10 @@
FastlaneCore::ConfigItem.new(key: :suppress_xcode_output,
short_option: "-r",
env_name: "SUPPRESS_OUTPUT",
description: "Suppress the output of xcodebuild to stdout. Output is still saved in buildlog_path",
optional: true,
- is_string: false
- )
+ is_string: false)
]
end
end
end