find_apple_id

in libraries/developer_account.rb [22:34]


    def find_apple_id(data_bag_retrieval, node_credential_attributes)
      if node_credential_attributes
        {
          'apple_id' => node_credential_attributes['user'],
          'password' => node_credential_attributes['password'],
        }
      else
        data_bag_retrieval.call
      end
    rescue Net::HTTPServerException
      raise('Developer credentials not supplied, and a URL was not provided for Xcode!')
    end