Method: Curl::Easy#http_delete

Defined in:
lib/curl/easy.rb

#http_deleteObject

call-seq:

easy.http_delete

DELETE the currently configured URL using the current options set for this Curl::Easy instance. This method always returns true, or raises an exception (defined under Curl::Err) on error.



366
367
368
# File 'lib/curl/easy.rb', line 366

def http_delete
  self.http :DELETE
end