Class: Wrest::Http::Delete

Inherits:
Request
  • Object
show all
Defined in:
lib/wrest/http/delete.rb

Instance Attribute Summary

Attributes inherited from Request

#body, #headers, #http_request, #password, #uri, #username

Instance Method Summary collapse

Methods inherited from Request

#invoke

Constructor Details

#initialize(wrest_uri, parameters = {}, headers = {}, options = {}) ⇒ Delete

Returns a new instance of Delete.



12
13
14
15
16
17
18
19
20
21
# File 'lib/wrest/http/delete.rb', line 12

def initialize(wrest_uri, parameters = {}, headers = {}, options = {})
  super(
        wrest_uri, 
        Net::HTTP::Delete, 
        parameters,
        nil,
        headers,
        options
      )
end