318件ヒット
[101-200件を表示]
(0.143秒)
ライブラリ
- ビルトイン (12)
- logger (12)
-
net
/ pop (108) - openssl (12)
-
rubygems
/ installer (72) -
rubygems
/ remote _ fetcher (12) -
rubygems
/ specification (24) -
rubygems
/ uninstaller (24) - shell (6)
-
shell
/ command-processor (6) -
shell
/ filter (6) -
syslog
/ logger (12)
クラス
-
Gem
:: Installer (72) -
Gem
:: RemoteFetcher (12) -
Gem
:: Specification (24) -
Gem
:: Uninstaller (24) -
Logger
:: Formatter (12) - Module (12)
-
Net
:: POPMail (108) -
OpenSSL
:: Netscape :: SPKI (12) - Shell (6)
-
Shell
:: CommandProcessor (6) -
Shell
:: Filter (6) -
Syslog
:: Logger :: Formatter (12)
モジュール
キーワード
-
app
_ script _ text (12) -
bin
_ dir (24) - call (24)
- challenge (12)
- download (12)
- echo (18)
-
formatted
_ program _ filename (12) -
gem
_ home (24) -
install
_ update _ defaults _ str (12) -
installation
_ path (12) - mail (36)
- pop (36)
- public (12)
- shebang (12)
-
windows
_ stub _ script (12)
検索結果
先頭5件
-
Syslog
:: Logger :: Formatter # call(severity , time , progname , message) -> String (9403.0) -
引数を元にフォーマットした文字列を返します。
引数を元にフォーマットした文字列を返します。
ライブラリ内部で使用します。 -
Gem
:: Installer # app _ script _ text -> String (9303.0) -
アプリケーションのための実行ファイルの雛形のテキストを返します。
アプリケーションのための実行ファイルの雛形のテキストを返します。 -
Gem
:: Installer # formatted _ program _ filename(filename) -> String (9303.0) -
Ruby のコマンドと同じプレフィックスとサフィックスを付けたファイル名を返します。
Ruby のコマンドと同じプレフィックスとサフィックスを付けたファイル名を返します。
@param filename 実行ファイルのファイル名を指定します。 -
Gem
:: Installer # windows _ stub _ script -> String (9303.0) -
コマンドを起動するために使用する Windows 用のバッチファイルの内容を 文字列として返します。
コマンドを起動するために使用する Windows 用のバッチファイルの内容を
文字列として返します。 -
Net
:: POPMail # mail -> String (6322.0) -
メールを受信します。
...を返します。
pop, all, mail はすべて同じ効果ですが、
all と mail は obsolete です。
使用例:
require 'net/pop'
Net::POP3.start('pop.example.com', 110,
'YourAccount', 'YourPassword') {|pop|
pop.mails.each do |m|
puts m.pop
end
}......'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 通信がタイムアウトした場合に発生します
@raise Net::P......OPError サーバが認証失敗以外のエラーを報告した場合に発生します
@raise Net::POPBadResponse サーバからの応答がプロトコル上不正であった場合に発生します... -
Net
:: POPMail # pop -> String (6322.0) -
メールを受信します。
...を返します。
pop, all, mail はすべて同じ効果ですが、
all と mail は obsolete です。
使用例:
require 'net/pop'
Net::POP3.start('pop.example.com', 110,
'YourAccount', 'YourPassword') {|pop|
pop.mails.each do |m|
puts m.pop
end
}......'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 通信がタイムアウトした場合に発生します
@raise Net::P......OPError サーバが認証失敗以外のエラーを報告した場合に発生します
@raise Net::POPBadResponse サーバからの応答がプロトコル上不正であった場合に発生します... -
Gem
:: Installer # bin _ dir -> String (6303.0) -
実行ファイルをインストールするディレクトリを返します。
実行ファイルをインストールするディレクトリを返します。 -
Gem
:: Installer # gem _ home -> String (6303.0) -
Gem のインストール先を返します。
Gem のインストール先を返します。 -
Gem
:: Installer # shebang(bin _ file _ name) -> String (6303.0) -
実行ファイル内で使用する shebang line (#! line) を表す文字列を返します。
実行ファイル内で使用する shebang line (#! line) を表す文字列を返します。
@param bin_file_name 実行ファイルの名前を指定します。