Module: KayakoClient::HTTPBackend

Included in:
HTTPClient, NetHTTP
Defined in:
lib/kayako_client/http/http_backend.rb

Instance Method Summary collapse

Instance Method Details

#delete(base, params = {}) ⇒ Object

Raises:



36
37
38
# File 'lib/kayako_client/http/http_backend.rb', line 36

def delete(base, params = {})
    raise NotImplementedError, "not implemented"
end

#get(base, params = {}) ⇒ Object

Raises:



24
25
26
# File 'lib/kayako_client/http/http_backend.rb', line 24

def get(base, params = {})
    raise NotImplementedError, "not implemented"
end

#initialize(options = {}) ⇒ Object

Raises:



20
21
22
# File 'lib/kayako_client/http/http_backend.rb', line 20

def initialize(options = {})
    raise NotImplementedError, "not implemented"
end

#post(base, params = {}) ⇒ Object

Raises:



32
33
34
# File 'lib/kayako_client/http/http_backend.rb', line 32

def post(base, params = {})
    raise NotImplementedError, "not implemented"
end

#put(base, params = {}) ⇒ Object

Raises:



28
29
30
# File 'lib/kayako_client/http/http_backend.rb', line 28

def put(base, params = {})
    raise NotImplementedError, "not implemented"
end

#response(resp) ⇒ Object

Raises:



40
41
42
# File 'lib/kayako_client/http/http_backend.rb', line 40

def response(resp)
    raise NotImplementedError, "not implemented"
end