lib/ethon/easies/http/putable.rb
module Ethon module Easies module Http # This module contains logic about setting up a PUT body. module Putable # Set things up when form is provided. # Deals with multipart forms. # # @example Setup. # put.set_form(easy) # # @param [ Easy ] easy The easy to setup. def set_form(easy) easy.url ||= url easy.upload = true form.escape = true easy.infilesize = form.to_s.bytesize easy.set_read_callback(form.to_s) end end end end end