Methods
R
Constants
FORMAT_HEADER = ActiveResource::Connection::HTTP_FORMAT_HEADER_NAMES
 
Instance Public methods
request(method, path, headers = {}, body = nil)
# File activeresource/test/cases/http_mock_test.rb, line 195
def request(method, path, headers = {}, body = nil)
  if method.in?([:put, :post])
    @http.send(method, path, body, headers)
  else
    @http.send(method, path, headers)
  end
end