るりまサーチ (Ruby 2.6.0)

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

別のキーワード

  1. _builtin success?
  2. status success?
  3. builder success
  4. systemexit success?
  5. httpstatus success?

ライブラリ

クラス

検索結果

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

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

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

SystemExit#success? -> bool (18343.0)

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

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

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

例:

begin
exit true
rescue SystemExit => err
p err.success? # => true
end

begin
exit false
rescue SystemExit => err
p err.success? # => false
end

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

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

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