lib/match/options.rb in match-0.8.1 vs lib/match/options.rb in match-0.9.0

- old
+ new

@@ -29,11 +29,12 @@ end end), FastlaneCore::ConfigItem.new(key: :app_identifier, short_option: "-a", env_name: "MATCH_APP_IDENTIFIER", - description: "The bundle identifier of your app", + description: "The bundle identifier(s) of your app (comma-separated)", + is_string: false, default_value: CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier)), FastlaneCore::ConfigItem.new(key: :username, short_option: "-u", env_name: "MATCH_USERNAME", description: "Your Apple ID Username", @@ -49,23 +50,23 @@ is_string: false, default_value: false), FastlaneCore::ConfigItem.new(key: :team_id, short_option: "-b", env_name: "FASTLANE_TEAM_ID", - description: "The ID of your team if you're in multiple teams", + description: "The ID of your Developer Portal team if you're in multiple teams", optional: true, default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_id), verify_block: proc do |value| - ENV["FASTLANE_TEAM_ID"] = value + ENV["FASTLANE_TEAM_ID"] = value.to_s end), FastlaneCore::ConfigItem.new(key: :team_name, short_option: "-l", env_name: "FASTLANE_TEAM_NAME", - description: "The name of your team if you're in multiple teams", + description: "The name of your Developer Portal team if you're in multiple teams", optional: true, default_value: CredentialsManager::AppfileConfig.try_fetch_value(:team_name), verify_block: proc do |value| - ENV["FASTLANE_TEAM_NAME"] = value + ENV["FASTLANE_TEAM_NAME"] = value.to_s end), FastlaneCore::ConfigItem.new(key: :verbose, env_name: "MATCH_VERBOSE", description: "Print out extra information and all commands", is_string: false,