class Ethon::Easy::Http::Head

This class knows everything about making HEAD requests.

Public Instance Methods

setup(easy) click to toggle source

Setup easy to make a HEAD request.

@example Setup.

get.set_params(easy)

@param [ Easy ] easy The easy to setup.

Calls superclass method Ethon::Easy::Http::Actionable#setup
# File lib/ethon/easy/http/head.rb, line 17
def setup(easy)
  super
  easy.nobody = true
end