クラス
- Exception (8)
-
Net
:: IMAP (36) -
Net
:: IMAP :: StatusData (12) - Thread (36)
モジュール
- Kernel (12)
キーワード
-
NEWS for Ruby 2
. 7 . 0 (6) - RECENT (12)
- abort (12)
- attr (12)
-
net
/ imap (12) -
report
_ on _ exception (18) -
report
_ on _ exception= (18) -
rubygems
/ commands / lock _ command (12) - select (12)
- status (12)
検索結果
先頭4件
-
Thread
. report _ on _ exception -> bool (6.0) -
真の時は、いずれかのスレッドが例外によって終了した時に、その内容を $stderr に報告します。
...} }
は $stderr に以下のように出力します:
#<Thread:...> terminated with exception (report_on_exception is true):
Traceback (most recent call last):
2: from -e:1:in `block in <main>'
1: from -e:1:in `times'
これによってスレッドのエラーを早期に... -
Thread
. report _ on _ exception=(newstate) (6.0) -
真の時は、いずれかのスレッドが例外によって終了した時に、その内容を $stderr に報告します。
...} }
は $stderr に以下のように出力します:
#<Thread:...> terminated with exception (report_on_exception is true):
Traceback (most recent call last):
2: from -e:1:in `block in <main>'
1: from -e:1:in `times'
これによってスレッドのエラーを早期に... -
net
/ imap (6.0) -
このライブラリは Internet Message Access Protocol (IMAP) の クライアントライブラリです。2060 を元に 実装されています。
...map'
imap = Net::IMAP.new('mail.example.com')
imap.authenticate('LOGIN', 'joe_user', 'joes_password')
imap.examine('INBOX')
imap.search(["RECENT"]).each do |message_id|
envelope = imap.fetch(message_id, "ENVELOPE")[0].attr["ENVELOPE"]
puts "#{envelope.from[0].name}: \t#{envelope.sub... -
rubygems
/ commands / lock _ command (6.0) -
指定された特定のバージョンの Gem パッケージに依存する Gem を使用するために 必要な Kernel#gem メソッドの呼び出し方法を文字列で出力します。
...rb is loaded *before* any
other require statements.
Notice that rails 1.0.0 only requires that rake 0.6.2 or better be used.
Rake-0.7.0.1 is the most recent version installed that satisfies that, so we
lock it down to the exact version.
Defaults:
--no-strict...