module Ethon::Easy::Http::Putable
This module contains logic about setting up a PUT body.
Public Instance Methods
set_form(easy)
click to toggle source
Set things up when form is provided. Deals with multipart forms.
@example Setup.
put.set_form(easy)
@param [ Easy ] easy The easy to setup.
# File lib/ethon/easy/http/putable.rb, line 14 def set_form(easy) easy.upload = true form.escape = true easy.infilesize = form.to_s.bytesize easy.set_read_callback(form.to_s) end