321件ヒット
[1-100件を表示]
(0.155秒)
ライブラリ
- ビルトイン (56)
- getoptlong (12)
- logger (12)
-
minitest
/ unit (1) -
net
/ http (24) -
net
/ imap (120) -
net
/ smtp (36) - optparse (24)
-
rubygems
/ specification (12) -
shell
/ system-command (12) -
syslog
/ logger (12)
クラス
- Exception (44)
-
Gem
:: Specification (12) - GetoptLong (12)
- Logger (12)
-
Net
:: HTTPResponse (24) -
Net
:: IMAP :: BodyTypeMessage (108) -
Net
:: IMAP :: Envelope (12) -
Net
:: SMTP (36) -
OptionParser
:: ParseError (24) -
Shell
:: SystemCommand (12) - SignalException (12)
-
Syslog
:: Logger :: Formatter (12)
モジュール
キーワード
- call (12)
-
content
_ id (12) - description (12)
- encoding (12)
-
exception
_ details (1) - formatter (12)
- inspect (12)
- language (12)
- md5 (12)
-
media
_ subtype (12) -
media
_ type (12) - msg (12)
- notify (12)
- param (12)
-
send
_ mail (12) - sendmail (12)
- signm (12)
- subtype (12)
-
to
_ s (24)
検索結果
先頭5件
-
Exception
# message -> String (18210.0) -
エラーメッセージをあらわす文字列を返します。
...エラーメッセージをあらわす文字列を返します。
//emlist[例][ruby]{
begin
1 + nil
rescue => e
p e.message #=> "nil can't be coerced into Fixnum"
end
//}... -
Net
:: HTTPResponse # message -> String (18210.0) -
HTTP サーバがリザルトコードに付加して返すメッセージです。 例えば 'Not Found' などです。
...して返すメッセージです。
例えば 'Not Found' などです。
msg は obsolete です。使わないでください。
//emlist[例][ruby]{
require 'net/http'
uri = "http://www.example.com/index.html"
response = Net::HTTP.get_response(URI.parse(uri))
response.message # => "OK"
//}... -
OptionParser
:: ParseError # message -> String (18204.0) -
標準エラーに出力するメッセージを返します。
標準エラーに出力するメッセージを返します。
@return 文字列を返します。 -
Exception
# full _ message(highlight: true , order: :bottom) -> String (6221.0) -
例外の整形された文字列を返します。
...ue => e
p e.full_message # => "\e[1mTraceback \e[m(most recent call last):\ntest.rb:2:in `<main>': \e[1mtest (\e[4;1mRuntimeError\e[m\e[1m)\n\e[m"
$stderr = $stdout
p e.full_message # => "test.rb:2:in `<main>': test (RuntimeError)\n"
$stderr = STDERR
p e.full_message # => "\e[1mTrace... -
Net
:: IMAP :: Envelope # message _ id -> String | nil (6219.0) -
message_id を文字列で返します。
...message_id を文字列で返します。
エンベロープに存在しないときは nil を返します。... -
Gem
:: Specification # post _ install _ message -> String (6203.0) -
インストール完了後に表示するメッセージを返します。
インストール完了後に表示するメッセージを返します。 -
GetoptLong
# error _ message -> String | nil (6203.0) -
現在のエラーのエラーメッセージを返します。エラーが発生していな ければ、nil を返します。
現在のエラーのエラーメッセージを返します。エラーが発生していな
ければ、nil を返します。 -
Net
:: IMAP :: BodyTypeMessage # language -> String | [String] | nil (3203.0) -
1766 で定義されているボディ言語を表わす 文字列もしくは文字列の配列を返します。
1766 で定義されているボディ言語を表わす
文字列もしくは文字列の配列を返します。 -
Net
:: IMAP :: BodyTypeMessage # param -> { String => String } | nil (3203.0) -
MIME のボディパラメータをハッシュテーブルで返します。
MIME のボディパラメータをハッシュテーブルで返します。
ハッシュテーブルのキーがパラメータ名となります。
@see 2045