module HTTParty::ClassMethods

def head(path, options = {}, &block)

Perform a HEAD request to a path
def head(path, options = {}, &block)
  ensure_method_maintained_across_redirects options
  perform_request Net::HTTP::Head, path, options, &block
end