るりまサーチ

最速Rubyリファレンスマニュアル検索!
36件ヒット [1-36件を表示] (0.183秒)

別のキーワード

  1. open3 popen2e
  2. socket af_e164
  3. matrix det_e
  4. matrix rank_e
  5. open3 capture2e

ライブラリ

クラス

検索結果

Gem::Builder#success -> String (24202.0)

Gem の作成に成功したときに表示するメッセージを返します。

...Gem の作成に成功したときに表示するメッセージを返します。...

Process::Status#success? -> bool (15202.0)

プロセスの終了状態が成功である場合に true を返します。 そうでない場合に false を返します。

...プロセスの終了状態が成功である場合に true を返します。
そうでない場合に false を返します。...

SystemExit#success? -> bool (12214.0)

終了ステータスが正常終了を示す値ならば true を返します。

...値ならば true を返します。

大半のシステムでは、ステータス 0 が正常終了を表します。

例:

begin
e
xit true
rescue SystemExit => err
p err.success? # => true
e
nd

begin
e
xit false
rescue SystemExit => err
p err.success? # => false
e
nd...