Sha256: 32b6209579637b98187487690f6c07177444a87a90f4dd8bccf1f86e1f3ec45a
Contents?: true
Size: 605 Bytes
Versions: 42
Compression:
Stored size: 605 Bytes
Contents
module Ethon class Easy 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.upload = true form.escape = true form.params_encoding = params_encoding easy.infilesize = form.to_s.bytesize easy.set_read_callback(form.to_s) end end end end end
Version data entries
42 entries across 41 versions & 8 rubygems