Class: Net::HTTP
- Inherits:
-
Object
- Object
- Net::HTTP
- Defined in:
- lib/restclient/net_http_ext.rb
Defined Under Namespace
Instance Method Summary collapse
-
#__request__ ⇒ Object
Replace the request method in Net::HTTP to sniff the body type and set the stream if appropriate.
- #request(req, body = nil, &block) ⇒ Object
Instance Method Details
#__request__ ⇒ Object
Replace the request method in Net::HTTP to sniff the body type and set the stream if appropriate
Taken from: www.missiondata.com/blog/ruby/29/streaming-data-to-s3-with-ruby/
44 |
# File 'lib/restclient/net_http_ext.rb', line 44 alias __request__ request |
#request(req, body = nil, &block) ⇒ Object
46 47 48 49 50 51 52 53 |
# File 'lib/restclient/net_http_ext.rb', line 46 def request(req, body=nil, &block) if body != nil && body.respond_to?(:read) req.body_stream = body return __request__(req, nil, &block) else return __request__(req, body, &block) end end |