lib/gym/options.rb in gym-1.12.0 vs lib/gym/options.rb in gym-1.12.1
- old
+ new
@@ -105,10 +105,10 @@
end
end),
FastlaneCore::ConfigItem.new(key: :export_method,
short_option: "-j",
env_name: "GYM_EXPORT_METHOD",
- description: "How should gym export the archive?",
+ description: "Method used to export the archive. Valid values are: app-store, ad-hoc, package, enterprise, development, developer-id",
is_string: true,
optional: true,
verify_block: proc do |value|
av = %w(app-store ad-hoc package enterprise development developer-id)
UI.user_error!("Unsupported export_method, must be: #{av}") unless av.include?(value)