initialize

in libraries/developer_account.rb [7:17]


    def initialize(data_bag_retrieval, node_credential_attributes, download_url)
      if download_url.empty?
        developer_id = find_apple_id(data_bag_retrieval, node_credential_attributes)
        @credentials = {
          XCODE_INSTALL_USER: developer_id['apple_id'],
          XCODE_INSTALL_PASSWORD: developer_id['password'],
        }
        authenticate_with_apple(@credentials)
      end
    end