Sha256: fcc1e84c1ead775b0fa41e7b7083977d57ecf67d3491c6740ae92b525804ecdc
Contents?: true
Size: 562 Bytes
Versions: 64
Compression:
Stored size: 562 Bytes
Contents
module Ethon class Easy module Http # This class knows everything about making PUT requests. class Put include Ethon::Easy::Http::Actionable include Ethon::Easy::Http::Putable # Setup easy to make a PUT request. # # @example Setup. # put.setup(easy) # # @param [ Easy ] easy The easy to setup. def setup(easy) super if form.empty? easy.upload = true easy.infilesize = 0 end end end end end end
Version data entries
64 entries across 63 versions & 8 rubygems
Version | Path |
---|---|
ethon-0.5.1 | lib/ethon/easy/http/put.rb |
ethon-0.5.0 | lib/ethon/easy/http/put.rb |
ethon-0.4.4 | lib/ethon/easy/http/put.rb |
ethon-0.4.3 | lib/ethon/easy/http/put.rb |