別のキーワード
種類
- インスタンスメソッド (60)
- 特異メソッド (36)
- モジュール関数 (24)
- クラス (13)
ライブラリ
- ビルトイン (72)
- logger (1)
- rake (12)
-
rubygems
/ user _ interaction (12) -
webrick
/ httpresponse (36)
クラス
-
Gem
:: StreamUI (12) - SystemExit (12)
-
WEBrick
:: HTTPResponse (36)
キーワード
- Application (1)
- Status (12)
- exit (24)
- exit! (24)
- new (12)
-
reason
_ phrase= (12) - sh (12)
-
status
_ line (12) -
terminate
_ interaction (12)
検索結果
先頭3件
-
Process
. exit!(status = false) -> () (1.0) -
関数 Kernel.#exit! と同じです。
関数 Kernel.#exit! と同じです。
@param status 終了ステータスを boolean か整数で指定します。true の場合は成功を、false は失敗を意味します。
@see _exit(2) -
Process
. exit(status = true) -> () (1.0) -
プロセスを終了します。関数 Kernel.#exit と同じです。
プロセスを終了します。関数 Kernel.#exit と同じです。
@param status 終了ステータスを boolean か整数で指定します。true の場合は成功を、false は失敗を意味します。
@see exit(3) -
SystemExit
. new(status = 0 , error _ message = "") -> SystemExit (1.0) -
SystemExit オブジェクトを生成して返します。
SystemExit オブジェクトを生成して返します。
@param status 終了ステータスを整数で指定します。
@param error_message エラーメッセージを文字列で指定します。
例:
ex = SystemExit.new(1)
p ex.status # => 1