module HTTParty::ClassMethods

def perform_request(http_method, path, options, &block) #:nodoc:

:nodoc:
def perform_request(http_method, path, options, &block) #:nodoc:
  options = ModuleInheritableAttributes.hash_deep_dup(default_options).merge(options)
  HeadersProcessor.new(headers, options).call
  process_cookies(options)
  Request.new(http_method, path, options).perform(&block)
end