Method: CouchObject::Server#delete
- Defined in:
- lib/couch_object/server.rb
#delete(path) ⇒ Object
Send a DELETE request to path
42 43 44 45 |
# File 'lib/couch_object/server.rb', line 42 def delete(path) req = Net::HTTP::Delete.new(path) request(req) end |