Module: Ethon::Easy::Http::Postable
Overview
This module contains logic for setting up a [multipart] POST body.
Instance Method Summary collapse
-
#set_form(easy) ⇒ Object
Set things up when form is provided.
Instance Method Details
#set_form(easy) ⇒ Object
Set things up when form is provided. Deals with multipart forms.
14 15 16 17 18 19 20 21 22 23 24 25 |
# File 'lib/ethon/easy/http/postable.rb', line 14 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.copypostfields = form.to_s easy.postfieldsize = easy.copypostfields.bytesize end end |