282件ヒット
[1-100件を表示]
(0.184秒)
ライブラリ
- ビルトイン (12)
- logger (12)
-
net
/ pop (72) - 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 (72) -
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 (24)
- pop (24)
- public (12)
- shebang (12)
-
windows
_ stub _ script (12)
検索結果
先頭5件
-
Gem
:: InstallUpdateOptions # install _ update _ defaults _ str -> String (24402.0) -
Gem コマンドの install サブコマンドに渡されるデフォルトのオプションを返します。
...Gem コマンドの install サブコマンドに渡されるデフォルトのオプションを返します。
デフォルトのオプションは以下の通りです。
--rdoc --no-force --no-test --wrappers... -
Net
:: POPMail # all -> String (21419.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
}......
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 通信がタイムアウトした場合に発生します
@r......aise Net::POPError サーバが認証失敗以外のエラーを報告した場合に発生します
@raise Net::POPBadResponse サーバからの応答がプロトコル上不正であった場合に発生します... -
Net
:: POPMail # all {|str| . . . . } -> nil (21319.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
}......
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 通信がタイムアウトした場合に発生します
@r......aise Net::POPError サーバが認証失敗以外のエラーを報告した場合に発生します
@raise Net::POPBadResponse サーバからの応答がプロトコル上不正であった場合に発生します... -
Gem
:: Installer # app _ script _ text -> String (15402.0) -
アプリケーションのための実行ファイルの雛形のテキストを返します。
アプリケーションのための実行ファイルの雛形のテキストを返します。 -
Gem
:: Installer # windows _ stub _ script -> String (15402.0) -
コマンドを起動するために使用する Windows 用のバッチファイルの内容を 文字列として返します。
コマンドを起動するために使用する Windows 用のバッチファイルの内容を
文字列として返します。 -
Gem
:: Specification # installation _ path -> String (15402.0) -
この Gem パッケージのインストール先のパスを返します。
この Gem パッケージのインストール先のパスを返します。 -
Gem
:: Installer # formatted _ program _ filename(filename) -> String (15302.0) -
Ruby のコマンドと同じプレフィックスとサフィックスを付けたファイル名を返します。
...
Ruby のコマンドと同じプレフィックスとサフィックスを付けたファイル名を返します。
@param filename 実行ファイルのファイル名を指定します。... -
Logger
:: Formatter # call(severity , time , progname , msg) -> String (12502.0) -
ログ情報をフォーマットして返します。
...ログ情報をフォーマットして返します。
@param severity ログレベル。
@param time 時間。Time クラスのオブジェクト。
@param progname プログラム名
@param msg メッセージ。... -
Syslog
:: Logger :: Formatter # call(severity , time , progname , message) -> String (12502.0) -
引数を元にフォーマットした文字列を返します。
引数を元にフォーマットした文字列を返します。
ライブラリ内部で使用します。