diff options
| author | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-09-21 06:58:01 +0000 |
|---|---|---|
| committer | aamine <aamine@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2000-09-21 06:58:01 +0000 |
| commit | 6e271da212126b58f586e005e2e50d0292b43e08 (patch) | |
| tree | 39397ba4b5072501b5e178f45637529f07ecade7 /lib/net/pop.rb | |
| parent | 4326f5ebfbae23a4269273b80a01ece6d3c24608 (diff) | |
| download | ruby-6e271da212126b58f586e005e2e50d0292b43e08.tar.gz ruby-6e271da212126b58f586e005e2e50d0292b43e08.tar.xz ruby-6e271da212126b58f586e005e2e50d0292b43e08.zip | |
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: http://svn.ruby-lang.org/repos/ruby/trunk@951 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net/pop.rb')
| -rw-r--r-- | lib/net/pop.rb | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/net/pop.rb b/lib/net/pop.rb index 61f7b52ca..a9d13ccb3 100644 --- a/lib/net/pop.rb +++ b/lib/net/pop.rb @@ -1,6 +1,6 @@ =begin -= net/pop.rb version 1.1.28 += net/pop.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::POP3 @@ -31,7 +35,7 @@ Net::Protocol : start( account, password ) {|pop| .... } starts POP3 session. - When called with a block, give a POP3 object to block and + When called with block, give a POP3 object to block and close session after block call is finished. : each {|popmail| .... } @@ -80,7 +84,7 @@ Object end : all {|str| .... } - You can use all/pop/mail with a block. + You can call all/pop/mail with block. argument 'str' is a read string (a part of mail). # usage example |
