deliver/lib/deliver/options.rb in fastlane-2.44.1 vs deliver/lib/deliver/options.rb in fastlane-2.45.0.beta.20170706010014
- old
+ new
@@ -88,11 +88,11 @@
FastlaneCore::ConfigItem.new(key: :app_version,
short_option: '-z',
description: "The version that should be edited or created",
optional: true),
FastlaneCore::ConfigItem.new(key: :skip_metadata,
- description: "Don't upload the metadata (e.g. title, description), this will still upload screenshots",
+ description: "Don't upload the metadata (e.g. title, description). This will still upload screenshots",
is_string: false,
default_value: false),
FastlaneCore::ConfigItem.new(key: :skip_app_version_update,
description: "Don't update app version for submission",
is_string: false,
@@ -224,31 +224,31 @@
FastlaneCore::ConfigItem.new(key: :copyright,
description: "Metadata: The copyright notice",
optional: true,
is_string: true),
FastlaneCore::ConfigItem.new(key: :primary_category,
- description: "Metadata: The english name of the primary category(e.g. `Business`, `Books`)",
+ description: "Metadata: The english name of the primary category (e.g. `Business`, `Books`)",
optional: true,
is_string: true),
FastlaneCore::ConfigItem.new(key: :secondary_category,
- description: "Metadata: The english name of the secondary category(e.g. `Business`, `Books`)",
+ description: "Metadata: The english name of the secondary category (e.g. `Business`, `Books`)",
optional: true,
is_string: true),
FastlaneCore::ConfigItem.new(key: :primary_first_sub_category,
- description: "Metadata: The english name of the primary first sub category(e.g. `Educational`, `Puzzle`)",
+ description: "Metadata: The english name of the primary first sub category (e.g. `Educational`, `Puzzle`)",
optional: true,
is_string: true),
FastlaneCore::ConfigItem.new(key: :primary_second_sub_category,
- description: "Metadata: The english name of the primary second sub category(e.g. `Educational`, `Puzzle`)",
+ description: "Metadata: The english name of the primary second sub category (e.g. `Educational`, `Puzzle`)",
optional: true,
is_string: true),
FastlaneCore::ConfigItem.new(key: :secondary_first_sub_category,
- description: "Metadata: The english name of the secondary first sub category(e.g. `Educational`, `Puzzle`)",
+ description: "Metadata: The english name of the secondary first sub category (e.g. `Educational`, `Puzzle`)",
optional: true,
is_string: true),
FastlaneCore::ConfigItem.new(key: :secondary_second_sub_category,
- description: "Metadata: The english name of the secondary second sub category(e.g. `Educational`, `Puzzle`)",
+ description: "Metadata: The english name of the secondary second sub category (e.g. `Educational`, `Puzzle`)",
optional: true,
is_string: true),
FastlaneCore::ConfigItem.new(key: :trade_representative_contact_information,
description: "Metadata: A hash containing the trade representative contact information",
optional: true,
@@ -269,18 +269,18 @@
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)
+ 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|
- UI.user_error!(":keywords must be a Hash, with the language being the key") unless value.kind_of?(Hash)
+ UI.user_error!(":keywords must be a hash, with the language being the key") unless value.kind_of?(Hash)
value.each do |language, keywords|
# Auto-convert array to string
keywords = keywords.join(", ") if keywords.kind_of?(Array)
value[language] = keywords
@@ -290,10 +290,10 @@
FastlaneCore::ConfigItem.new(key: :promotional_text,
description: "Metadata: An array of localised promotional texts",
optional: true,
is_string: false,
verify_block: proc do |value|
- UI.user_error!(":keywords must be a Hash, with the language being the key") unless value.kind_of?(Hash)
+ UI.user_error!(":keywords must be a hash, with the language being the key") unless value.kind_of?(Hash)
end),
FastlaneCore::ConfigItem.new(key: :release_notes,
description: "Metadata: Localised release notes for this version",
optional: true,
is_string: false),