deliver/lib/deliver/options.rb in fastlane-2.38.0.beta.20170609010035 vs deliver/lib/deliver/options.rb in fastlane-2.38.0.beta.20170610010032
- old
+ new
@@ -243,9 +243,16 @@
is_string: false),
FastlaneCore::ConfigItem.new(key: :name,
description: "Metadata: The localised app name",
optional: true,
is_string: false),
+ FastlaneCore::ConfigItem.new(key: :subtitle,
+ description: "Metadata: The localised app subtitle",
+ optional: true,
+ is_string: false,
+ verify_block: proc do |value|
+ UI.user_error!(":subtitle must be a Hash, with the language being the key") unless value.kind_of?(Hash)
+ end),
FastlaneCore::ConfigItem.new(key: :keywords,
description: "Metadata: An array of localised keywords",
optional: true,
is_string: false,
verify_block: proc do |value|