summaryrefslogtreecommitdiff
path: root/lib/net/protocol.rb
diff options
context:
space:
mode:
authoraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-09-21 06:58:01 +0000
committeraamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2000-09-21 06:58:01 +0000
commit616c1cd971695ed74df6e3a98fa9d584f3783e8b (patch)
tree39397ba4b5072501b5e178f45637529f07ecade7 /lib/net/protocol.rb
parent13243e5ad15f5d0d259b4850199183fdf9572f46 (diff)
aamine
* lib/net/protocol.rb, smtp.rb, pop.rb, http.rb: 1.1.28. * lib/net/http.rb: HTTPReadAdapter -> HTTPResponseReceiver * lib/net/http.rb (connecting): response is got in receive() git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@951 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net/protocol.rb')
-rw-r--r--lib/net/protocol.rb10
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/net/protocol.rb b/lib/net/protocol.rb
index 3eced45d3a..3cf20f8e44 100644
--- a/lib/net/protocol.rb
+++ b/lib/net/protocol.rb
@@ -1,6 +1,6 @@
=begin
-= net/protocol.rb version 1.1.28
+= net/protocol.rb version 1.1.29
written by Minero Aoki <aamine@dp.u-netsurf.ne.jp>
@@ -8,6 +8,10 @@ This program is free software.
You can distribute/modify this program under
the terms of the Ruby Distribute License.
+Japanese version of this document is in "net" full package.
+You can get it from RAA
+(Ruby Application Archive: http://www.ruby-lang.org/en/raa.html).
+
== Net::Protocol
@@ -46,7 +50,7 @@ Object
'*args' are specified in subclasses.
- When is called with a block, gives Protocol object to block and
+ When is called with block, gives Protocol object to block and
close session when block finished.
: finish
@@ -65,7 +69,7 @@ module Net
class Protocol
- Version = '1.1.28'
+ Version = '1.1.29'
class << self