Sha256: 5754f51c706c7979d35e43dba2c285cf0c2e5727f74f250de95d8f08dc08b0e9
Contents?: true
Size: 746 Bytes
Versions: 17
Compression:
Stored size: 746 Bytes
Contents
module Ethon class Easy module Http # This module contains logic for setting up a [multipart] POST body. module Postable # Set things up when form is provided. # Deals with multipart forms. # # @example Setup. # post.set_form(easy) # # @param [ Easy ] easy The easy to setup. def set_form(easy) easy.url ||= url if form.multipart? form.escape = false form.materialize easy.httppost = form.first.read_pointer else form.escape = true easy.postfieldsize = form.to_s.bytesize easy.copypostfields = form.to_s end end end end end end
Version data entries
17 entries across 17 versions & 1 rubygems