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

Version Path
ethon-0.7.3 lib/ethon/easy/http/postable.rb
ethon-0.7.2 lib/ethon/easy/http/postable.rb
ethon-0.7.1 lib/ethon/easy/http/postable.rb
ethon-0.7.0 lib/ethon/easy/http/postable.rb
ethon-0.6.3 lib/ethon/easy/http/postable.rb
ethon-0.6.2 lib/ethon/easy/http/postable.rb
ethon-0.6.1 lib/ethon/easy/http/postable.rb
ethon-0.6.0 lib/ethon/easy/http/postable.rb
ethon-0.5.12 lib/ethon/easy/http/postable.rb
ethon-0.5.11 lib/ethon/easy/http/postable.rb
ethon-0.5.10 lib/ethon/easy/http/postable.rb
ethon-0.5.9 lib/ethon/easy/http/postable.rb
ethon-0.5.8 lib/ethon/easy/http/postable.rb
ethon-0.5.7 lib/ethon/easy/http/postable.rb
ethon-0.5.6 lib/ethon/easy/http/postable.rb
ethon-0.5.4 lib/ethon/easy/http/postable.rb
ethon-0.5.3 lib/ethon/easy/http/postable.rb