class Patron::Session

def copy(url, dest, headers = {})

Sends a WebDAV COPY request to the specified +url+.
def copy(url, dest, headers = {})
  headers['Destination'] = dest
  request(:copy, url, headers)
end