Sha256: 19199a88798ce02edb5a20272e9c131c86c6b91cf9927ff2f4587385a4057e4d

Contents?: true

Size: 556 Bytes

Versions: 17

Compression:

Stored size: 556 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
          easy.infilesize = form.to_s.bytesize
          easy.set_read_callback(form.to_s)
        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/putable.rb
ethon-0.7.2 lib/ethon/easy/http/putable.rb
ethon-0.7.1 lib/ethon/easy/http/putable.rb
ethon-0.7.0 lib/ethon/easy/http/putable.rb
ethon-0.6.3 lib/ethon/easy/http/putable.rb
ethon-0.6.2 lib/ethon/easy/http/putable.rb
ethon-0.6.1 lib/ethon/easy/http/putable.rb
ethon-0.6.0 lib/ethon/easy/http/putable.rb
ethon-0.5.12 lib/ethon/easy/http/putable.rb
ethon-0.5.11 lib/ethon/easy/http/putable.rb
ethon-0.5.10 lib/ethon/easy/http/putable.rb
ethon-0.5.9 lib/ethon/easy/http/putable.rb
ethon-0.5.8 lib/ethon/easy/http/putable.rb
ethon-0.5.7 lib/ethon/easy/http/putable.rb
ethon-0.5.6 lib/ethon/easy/http/putable.rb
ethon-0.5.4 lib/ethon/easy/http/putable.rb
ethon-0.5.3 lib/ethon/easy/http/putable.rb