Class: Ethon::Easy::Http::Put
- Inherits:
-
Object
- Object
- Ethon::Easy::Http::Put
- Includes:
- Actionable, Putable
- Defined in:
- lib/ethon/easy/http/put.rb
Overview
This class knows everything about making PUT requests.
Constant Summary
Constants included from Actionable
Instance Method Summary collapse
-
#setup(easy) ⇒ Object
Setup easy to make a PUT request.
Methods included from Putable
Methods included from Actionable
#form, #initialize, #options, #params, #params_encoding, #query_options, #set_form, #set_params, #url
Instance Method Details
#setup(easy) ⇒ Object
Setup easy to make a PUT request.
17 18 19 20 21 22 23 |
# File 'lib/ethon/easy/http/put.rb', line 17 def setup(easy) super if form.empty? easy.upload = true easy.infilesize = 0 end end |