class Net::HTTP::Copy
Class for representingWebDAV method COPY:
require'net/http'uri =URI('http://example.com')hostname =uri.hostname# => "example.com"req =Net::HTTP::Copy.new(uri)# => #<Net::HTTP::Copy COPY>res =Net::HTTP.start(hostname)do|http|http.request(req)end
SeeRequest Headers.
Related:
Net::HTTP#copy: sendsCOPYrequest, returns response object.