lib/produce/options.rb in produce-0.5.0 vs lib/produce/options.rb in produce-0.5.1
- old
+ new
@@ -39,9 +39,17 @@
description: "Primary Language (e.g. 'English', 'German')",
default_value: "English",
verify_block: Proc.new do |language|
end),
+ FastlaneCore::ConfigItem.new(key: :company_name,
+ short_option: "-c",
+ env_name: "PRODUCE_COMPANY_NAME",
+ description: "The name of your comapny. Only required if it's the first app you create",
+ optional: true,
+ verify_block: Proc.new do |language|
+
+ end),
FastlaneCore::ConfigItem.new(key: :skip_itc,
short_option: "-i",
env_name: "PRODUCE_SKIP_ITC",
description: "Skip the creation of the app on iTunes Connect",
is_string: false,