lib/pilot/options.rb in pilot-0.1.3 vs lib/pilot/options.rb in pilot-0.1.4
- old
+ new
@@ -25,10 +25,11 @@
end),
FastlaneCore::ConfigItem.new(key: :skip_submission,
short_option: "-s",
env_name: "PILOT_SKIP_SUBMISSION",
description: "Skip the distributing action of pilot and only upload the ipa file",
+ is_string: false,
default_value: false),
FastlaneCore::ConfigItem.new(key: :app_identifier,
short_option: "-a",
env_name: "PILOT_APP_IDENTIFIER",
description: "The bundle identifier of the app to upload or manage testers (optional)",
@@ -63,16 +64,9 @@
env_name: "PILOT_TESTER_EMAIL",
description: "The tester's email",
optional: true,
verify_block: proc do |_value|
raise "Please pass a valid email address" unless _value.include?"@"
- end),
- FastlaneCore::ConfigItem.new(key: :group_name,
- short_option: "-g",
- env_name: "PILOT_TESTER_GROUP",
- description: "Group to add the tester to",
- optional: true,
- verify_block: proc do |_value|
end),
FastlaneCore::ConfigItem.new(key: :testers_file_path,
short_option: "-c",
env_name: "PILOT_TESTERS_FILE",
description: "Path to a CSV file of testers",