1019件ヒット
[1001-1019件を表示]
(0.027秒)
ライブラリ
- English (24)
- ビルトイン (252)
-
cgi
/ core (24) -
cgi
/ util (60) - csv (84)
-
irb
/ context (24) - json (12)
-
net
/ pop (108) -
net
/ telnet (6) - openssl (72)
- pp (24)
- prettyprint (12)
- readline (12)
-
rexml
/ document (12) -
rubygems
/ commands / dependency _ command (12) -
rubygems
/ requirement (12) - socket (12)
- stringio (36)
- uri (24)
-
webrick
/ httpresponse (36)
クラス
-
ARGF
. class (12) - CGI (84)
- CSV (84)
-
Gem
:: Commands :: DependencyCommand (12) -
Gem
:: Requirement (12) -
IRB
:: Context (24) -
JSON
:: Parser (12) - Module (12)
-
Net
:: POPMail (108) -
Net
:: Telnet (6) - Object (36)
-
OpenSSL
:: ASN1 :: PrintableString (24) - PrettyPrint (12)
- Socket (12)
- String (24)
- StringIO (36)
-
URI
:: MailTo (24) -
WEBrick
:: HTTPResponse (36)
モジュール
- Kernel (216)
-
OpenSSL
:: ASN1 (36) - Readline (12)
キーワード
-
$ , (12) -
$ 1 (12) -
$ 10 (12) -
$ 11 (12) -
$ 2 (12) -
$ 3 (12) -
$ 4 (12) -
$ 5 (12) -
$ 6 (12) -
$ 7 (12) -
$ 8 (12) -
$ 9 (12) -
$ ORS (12) -
$ OUTPUT _ RECORD _ SEPARATOR (12) -
$ \ (12) -
$ _ (12) -
1
. 6 . 8から1 . 8 . 0への変更点(まとめ) (12) -
NEWS for Ruby 3
. 0 . 0 (5) -
NOPRINTING
_ IVARS (12) - PRINTABLESTRING (12)
- PrintableString (36)
- Rubyで使われる記号の意味(正規表現の複雑な記号は除く) (12)
- Rubyの起動 (12)
- Transitive (12)
- all (36)
- bigdecimal (12)
- connect (12)
-
content
_ length (12) -
content
_ length= (12) -
each
_ char (24) - escapeHTML (12)
-
escape
_ html (12) - generate (12)
- header (12)
-
inplace
_ mode (12) - instance (24)
-
instance
_ method (12) - irb (12)
- mail (36)
- new (24)
- newline (12)
- open (48)
- pop (36)
- pp (12)
- pretty (12)
-
pretty
_ print (12) -
pretty
_ print _ inspect (12) -
pretty
_ print _ instance _ variables (12) -
print
_ dependencies (12) - printf (12)
- puts (2)
- readline (12)
-
return
_ format (12) - rss (12)
-
ruby 1
. 6 feature (12) -
ruby 1
. 8 . 3 feature (12) - source (12)
- sprintf (12)
- sprintf フォーマット (12)
-
to
_ mailtext (12) -
to
_ rfc822text (12) -
to
_ s (24) - unescapeElement (12)
-
unescape
_ element (12) -
untrace
_ var (12) - write (2)
- クラス/メソッドの定義 (12)
- リテラル (12)
- 正規表現 (12)
検索結果
-
Net
:: POPMail # pop {|str| . . . . } -> nil (9.0) -
メールを受信します。
...ックを利用する例:
require 'net/pop'
Net::POP3.start('pop.example.com', 110) {|pop|
pop.each_mail do |m|
m.pop do |str|
print str
end
end
}
@param io メールの内容を書きこむオブジェクト
@raise TimeoutError 通信がタイムアウトした... -
Net
:: POPMail # pop(io) -> object (9.0) -
メールを受信します。
...ックを利用する例:
require 'net/pop'
Net::POP3.start('pop.example.com', 110) {|pop|
pop.each_mail do |m|
m.pop do |str|
print str
end
end
}
@param io メールの内容を書きこむオブジェクト
@raise TimeoutError 通信がタイムアウトした...
