Skip to content

Commit

Permalink
Merge pull request #2463 from ima1zumi/add-backtrace-option
Browse files Browse the repository at this point in the history
Add --backtrace-limit=num
  • Loading branch information
pocke authored Feb 28, 2021
2 parents c53f530 + c4e94fd commit 55755dd
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions refm/doc/spec/rubycmd.rd
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,32 @@ Rubyインタプリタは以下のコマンドラインオプションを受け
が実行されます。`-n'か`-p'オプションが同時に指定されない限り,
このオプションは意味を持ちません。

#@since 3.0.0
: --backtrace-limit=num

バックトレースの最大行数を指定します。

//emlist{
# test.rb
def f6 = raise
def f5 = f6
def f4 = f5
def f3 = f4
def f2 = f3
def f1 = f2
f1
//}

//emlist{
% ruby --backtrace-limit=3 test.rb
test.rb:1:in `f6': unhandled exception
from test.rb:2:in `f5'
from test.rb:3:in `f4'
from test.rb:4:in `f3'
... 3 levels...
//}
#@end

: -C directory

スクリプト実行前に指定されたディレクトリに移動します。
Expand Down

0 comments on commit 55755dd

Please sign in to comment.