File Manager

Path: /opt/chef/embedded/lib/ruby/gems/2.7.0/gems/multipart-post-2.1.1/lib/net/http/post/

Viewing File: multipart.rb

#--
# Copyright (c) 2007-2012 Nick Sieger.
# See the file README.txt included with the distribution for
# software license details.
#++

require 'net/http'
require 'stringio'
require 'cgi'
require 'composite_io'
require 'multipartable'
require 'parts'

module Net
  class HTTP
    class Put
      class Multipart < Put
        include Multipartable
      end
    end

    class Post
      class Multipart < Post
        include Multipartable
      end
    end
  end
end