This class knows everything about making requests for custom HTTP verbs.
# File lib/ethon/easy/http/custom.rb, line 10 def initialize(verb, url, options) @verb = verb super(url, options) end
Setup easy to make a request.
@example Setup.
custom.set_params(easy)
@param [ Easy ] easy The easy to setup.
# File lib/ethon/easy/http/custom.rb, line 21 def setup(easy) super easy.customrequest = @verb end