patch(path, data, initheader = nil, dest = nil)
Sends a PATCH request to the path and gets a response, as an HTTPResponse object.
# File lib/net/http.rb, line 1274 def patch(path, data, initheader = nil, dest = nil, &block) # :yield: +body_segment+ send_entity(path, data, initheader, dest, Patch, &block) end