mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
aamine
* lib/net/protocol.rb (adding): too few "yield" in case of arg is not String/File. * lib/net/http.rb: add http request object. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1125 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e9c8b36b1e
commit
0c717d6a58
5 changed files with 510 additions and 478 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
Sun Jan 14 04:10:27 2001 Minero Aoki <aamine@dp.u-netsurf.ne.jp>
|
||||||
|
|
||||||
|
* lib/net/protocol.rb (adding): too few "yield" in case of arg is
|
||||||
|
not String/File.
|
||||||
|
|
||||||
|
* lib/net/http.rb: add http request object.
|
||||||
|
|
||||||
Sat Jan 13 19:39:30 2001 WATANABE Hirofumi <eban@ruby-lang.org>
|
Sat Jan 13 19:39:30 2001 WATANABE Hirofumi <eban@ruby-lang.org>
|
||||||
|
|
||||||
* re.c (rb_reg_desc): separate RE_OPTION_MULTILINE
|
* re.c (rb_reg_desc): separate RE_OPTION_MULTILINE
|
||||||
|
|
926
lib/net/http.rb
926
lib/net/http.rb
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
||||||
=begin
|
=begin
|
||||||
|
|
||||||
= net/pop.rb version 1.1.32
|
= net/pop.rb version 1.2.0
|
||||||
|
|
||||||
written by Minero Aoki <aamine@dp.u-netsurf.ne.jp>
|
written by Minero Aoki <aamine@dp.u-netsurf.ne.jp>
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
=begin
|
=begin
|
||||||
|
|
||||||
= net/protocol.rb version 1.1.32
|
= net/protocol.rb version 1.2.0
|
||||||
|
|
||||||
written by Minero Aoki <aamine@dp.u-netsurf.ne.jp>
|
written by Minero Aoki <aamine@dp.u-netsurf.ne.jp>
|
||||||
|
|
||||||
|
@ -65,7 +65,7 @@ module Net
|
||||||
|
|
||||||
class Protocol
|
class Protocol
|
||||||
|
|
||||||
Version = '1.1.32'
|
Version = '1.2.0'
|
||||||
|
|
||||||
|
|
||||||
class << self
|
class << self
|
||||||
|
@ -736,6 +736,7 @@ module Net
|
||||||
yield
|
yield
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
yield unless @wbuf.empty?
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
=begin
|
=begin
|
||||||
|
|
||||||
= net/smtp.rb version 1.1.32
|
= net/smtp.rb version 1.2.0
|
||||||
|
|
||||||
written by Minero Aoki <aamine@dp.u-netsurf.ne.jp>
|
written by Minero Aoki <aamine@dp.u-netsurf.ne.jp>
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue