1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
* lib/net/protocol.rb,smtp.rb,pop.rb,http.rb: wrongly version 1.2 sources
  were checked in.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@1073 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
aamine 2000-12-24 20:01:44 +00:00
parent c8da204306
commit b40f3a89e3
4 changed files with 488 additions and 509 deletions

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
=begin
= net/pop.rb version 1.2.0
= net/pop.rb version 1.1.32
written by Minero Aoki <aamine@dp.u-netsurf.ne.jp>
@ -126,16 +126,14 @@ Object
=== Methods
: all( dest = '' )
: pop
: mail
: pop( dest = '' )
This method fetches a mail and write to 'dest' using '<<' method.
# usage example
mailarr = []
POP3.start( 'localhost', 110 ) do |pop|
pop.each do |popm|
pop.each_mail do |popm|
mailarr.push popm.pop # all() returns 'dest' (this time, string)
# or, you can also
# popm.pop( $stdout ) # write mail to stdout
@ -145,15 +143,16 @@ Object
end
end
: all {|str| .... }
You can call all/pop/mail with block.
argument 'str' is a read string (a part of mail).
: pop {|str| .... }
If pop() is called with block, it gives the block part strings of a mail.
# usage example
POP3.start( 'localhost', 110 ) do |pop|
pop.mails[0].pop do |str| # pop only first mail...
_do_anything_( str )
POP3.start( 'localhost', 110 ) do |pop3|
pop3.each_mail do |m|
m.pop do |str|
# do anything
end
end
end

View file

@ -1,6 +1,6 @@
=begin
= net/protocol.rb version 1.2.0
= net/protocol.rb version 1.1.32
written by Minero Aoki <aamine@dp.u-netsurf.ne.jp>
@ -65,7 +65,7 @@ module Net
class Protocol
Version = '1.2.0'
Version = '1.1.32'
class << self

View file

@ -1,6 +1,6 @@
=begin
= net/smtp.rb version 1.2.0
= net/smtp.rb version 1.1.32
written by Minero Aoki <aamine@dp.u-netsurf.ne.jp>