fastlane/lib/fastlane/actions/badge.rb in fastlane-2.50.0.beta.20170729010003 vs fastlane/lib/fastlane/actions/badge.rb in fastlane-2.50.0.beta.20170730010002

- old
+ new

@@ -80,11 +80,11 @@ verify_block: proc do |value| UI.user_error!("no_badge is only a flag and should always be true") unless value == true end), FastlaneCore::ConfigItem.new(key: :shield, env_name: "FL_BADGE_SHIELD", - description: "Add a shield to your app icon from shield.io", + description: "Add a shield to your app icon from shields.io", optional: true, is_string: true), FastlaneCore::ConfigItem.new(key: :alpha, env_name: "FL_BADGE_ALPHA", description: "Adds and alpha badge instead of the default beta one", @@ -102,10 +102,10 @@ verify_block: proc do |value| UI.user_error!("path needs to be a valid directory") if Dir[value].empty? end), FastlaneCore::ConfigItem.new(key: :shield_io_timeout, env_name: "FL_BADGE_SHIELD_IO_TIMEOUT", - description: "Set custom duration for the timeout of the shield.io request in seconds", + description: "Set custom duration for the timeout of the shields.io request in seconds", optional: true, is_string: false, verify_block: proc do |value| UI.user_error!("shield_io_timeout needs to be an integer > 0") if value.to_i < 1 end),