summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authordrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-07 18:38:39 +0000
committerdrbrain <drbrain@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-08-07 18:38:39 +0000
commit9dff71ad78bce48d61a5f16a59a9f666ceed6350 (patch)
tree8471468a33aa9d64df734587dd2f4e571d8c490d /NEWS
parentd5ecd17aeedae091ddda0f1a26c67f9902243ab1 (diff)
* lib/webrick/httpresponse.rb: Allow #body to be an IO-like object
that responds to #readpartial and #read. [ruby-trunk - Feature #8155] * NEWS: NEWS for above * test/webrick/test_httpresponse.rb: Tests for above. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42427 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 822b2f8096..61b646d194 100644
--- a/NEWS
+++ b/NEWS
@@ -145,6 +145,10 @@ with all sufficient information, see the ChangeLog file.
* CGI::Util
* All class methods modulized.
+* WEBrick
+ * The body of a response may now be a StringIO or other IO-like that responds
+ to #readpartial and #read.
+
* XMLRPC::Client
* New methods:
* XMLRPC::Client#http. It returns Net::HTTP for the client. Normally,