lib/produce/options.rb in produce-0.5.1 vs lib/produce/options.rb in produce-0.6.0

- old
+ new

@@ -37,19 +37,19 @@ short_option: "-m", env_name: "PRODUCE_LANGUAGE", 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", @@ -76,11 +76,10 @@ description: "The name of your team if you're in multiple teams", optional: true, default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_name), verify_block: Proc.new do |value| ENV["FASTLANE_TEAM_NAME"] = value - end), - + end) ] end end end