lib/ethon/easies/http/head.rb in ethon-0.0.2 vs lib/ethon/easies/http/head.rb in ethon-0.0.3

- old
+ new

@@ -5,16 +5,17 @@ # This class knows everything about making HEAD requests. class Head include Ethon::Easies::Http::Actionable include Ethon::Easies::Http::Postable - # Setup url with escaped params and nobody. + # Setup easy to make a HEAD request. # # @example Setup. # get.set_params(easy) # # @param [ Easy ] easy The easy to setup. - def set_customs(easy) + def setup(easy) + super easy.nobody = true end end end end