module KayakoClient::HTTPBackend

Public Class Methods

new(options = {}) click to toggle source
# File lib/kayako_client/http/http_backend.rb, line 20
def initialize(options = {})
    raise NotImplementedError, "not implemented"
end

Public Instance Methods

delete(base, params = {}) click to toggle source
# File lib/kayako_client/http/http_backend.rb, line 36
def delete(base, params = {})
    raise NotImplementedError, "not implemented"
end
get(base, params = {}) click to toggle source
# File lib/kayako_client/http/http_backend.rb, line 24
def get(base, params = {})
    raise NotImplementedError, "not implemented"
end
post(base, params = {}) click to toggle source
# File lib/kayako_client/http/http_backend.rb, line 32
def post(base, params = {})
    raise NotImplementedError, "not implemented"
end
put(base, params = {}) click to toggle source
# File lib/kayako_client/http/http_backend.rb, line 28
def put(base, params = {})
    raise NotImplementedError, "not implemented"
end
response(resp) click to toggle source
# File lib/kayako_client/http/http_backend.rb, line 40
def response(resp)
    raise NotImplementedError, "not implemented"
end