Method: Net::HTTP#patch
- Defined in:
- lib/net/http.rb
#patch(path, data, initheader = nil, dest = nil, &block) ⇒ Object
Sends a PATCH request to the path and gets a response, as an HTTPResponse object.
1328 1329 1330 |
# File 'lib/net/http.rb', line 1328 def patch(path, data, initheader = nil, dest = nil, &block) # :yield: +body_segment+ send_entity(path, data, initheader, dest, Patch, &block) end |