1136件ヒット
[1-100件を表示]
(0.076秒)
ライブラリ
- ビルトイン (72)
- debug (24)
- fileutils (19)
- forwardable (24)
- getoptlong (12)
-
irb
/ context (36) - logger (177)
- mkmf (48)
-
net
/ ftp (24) -
net
/ http (12) -
net
/ imap (24) -
net
/ pop (12) -
net
/ smtp (24) - openssl (24)
- rake (12)
-
rdoc
/ markdown (12) - ripper (24)
- shell (69)
- socket (48)
- syslog (24)
-
syslog
/ logger (24) -
webrick
/ log (36)
クラス
- GetoptLong (12)
-
IRB
:: Context (36) - Logger (165)
-
Net
:: FTP (24) -
Net
:: HTTP (12) -
Net
:: IMAP (24) -
Net
:: POP3 (12) -
Net
:: SMTP (24) -
RDoc
:: Markdown (12) -
Rake
:: Application (12) - Ripper (24)
-
RubyVM
:: InstructionSequence (24) - Shell (69)
- Socket (24)
-
Syslog
:: Logger (24) - Thread (24)
- Tracer (12)
-
WEBrick
:: BasicLog (36)
モジュール
- FileUtils (19)
- Forwardable (24)
- Kernel (72)
-
Logger
:: Severity (12) - OpenSSL (24)
-
Socket
:: Constants (24) - Syslog (12)
-
Syslog
:: Level (12)
キーワード
-
$ DEBUG (12) - DEBUG (36)
- DEBUG= (12)
-
DEBUGGER
_ _ (12) -
IFF
_ DEBUG (24) -
LOG
_ DEBUG (12) -
NEWS for Ruby 2
. 3 . 0 (10) -
NEWS for Ruby 3
. 0 . 0 (5) -
NEWS for Ruby 3
. 1 . 0 (4) - Rubyの起動 (12)
-
SO
_ DEBUG (24) -
compile
_ option (12) -
compile
_ option= (12) -
cp
_ lr (7) -
cp
_ r (12) - debug= (48)
- debug? (60)
-
debug
_ level (12) -
debug
_ level= (12) -
debug
_ mode (12) -
debug
_ mode= (12) -
debug
_ output= (12) -
debug
_ output _ exclusive _ unlock (3) -
debug
_ output _ lock (6) -
debug
_ output _ locked? (6) -
debug
_ output _ synchronize (6) -
debug
_ output _ try _ lock (6) -
debug
_ output _ unlock (6) -
enable
_ config (24) - error (24)
- fatal (24)
- info (24)
- irb (12)
- new (21)
-
rb
_ ary _ to _ s (12) -
rubygems
/ commands / build _ command (12) -
rubygems
/ commands / cert _ command (12) -
rubygems
/ commands / check _ command (12) -
rubygems
/ commands / cleanup _ command (12) -
rubygems
/ commands / contents _ command (12) -
rubygems
/ commands / dependency _ command (12) -
rubygems
/ commands / environment _ command (12) -
rubygems
/ commands / fetch _ command (12) -
rubygems
/ commands / generate _ index _ command (12) -
rubygems
/ commands / help _ command (12) -
rubygems
/ commands / install _ command (12) -
rubygems
/ commands / list _ command (12) -
rubygems
/ commands / lock _ command (12) -
rubygems
/ commands / mirror _ command (12) -
rubygems
/ commands / outdated _ command (12) -
rubygems
/ commands / pristine _ command (12) -
rubygems
/ commands / query _ command (12) -
rubygems
/ commands / rdoc _ command (12) -
rubygems
/ commands / search _ command (12) -
rubygems
/ commands / server _ command (12) -
rubygems
/ commands / sources _ command (12) -
rubygems
/ commands / specification _ command (12) -
rubygems
/ commands / uninstall _ command (12) -
rubygems
/ commands / unpack _ command (12) -
set
_ debug _ output (36) -
set
_ trace _ func (12) -
trace
_ func (12) -
tty
_ output= (12) - unknown (24)
- warn (24)
-
with
_ config (24) - yydebug (12)
- yydebug= (12)
検索結果
先頭5件
-
debug (44000.0)
-
Ruby デバッガです。Ruby スクリプトのソースコードデバッグに使用します。
...Ruby デバッガです。Ruby スクリプトのソースコードデバッグに使用します。
また、Emacs を使用したインタフェース rubydb3x.el が
https://github.com/ruby/elisp にあるので、活用してください。
=== 使い方
$ ruby -rdebug foo.rb
または、E......load-library rubydb3x.el
M-x rubydb
=== デバッグコマンド
以下は、デバッガで使用できるコマンド名とその用法の一覧です。
各コマンド名には省略形があります。
ここに挙げたもの以外を入力した場合、その入力を ruby の式と......コマンドの省略形は disp です。
: undisplay <nnn>
指定したディスプレイ式を取り除きます。引数を省略した場合すべての
ディスプレイ式を取り除きます。
このコマンドの省略形は undisp です。
: cont
スクリプトが... -
Logger
# debug(progname = nil) -> true (24242.0) -
ログレベルが DEBUG のメッセージを出力します。
...ログレベルが DEBUG のメッセージを出力します。
現在の Logger のログレベルが DEBUG よりも高い場合、メッセージは出力されません。
ブロックを与えなかった場合は、progname をメッセージとしてログを出力します。
ブロッ......定します。
ブロックを与えた場合は、プログラム名を文字列として与えます。
//emlist[例][ruby]{
logger.debug "Waiting for input from user"
# ...
logger.debug { "User typed #{input}" }
logger.debug("MainApp") { "Received connection from #{ip}" }
//}... -
Logger
# debug(progname = nil) { . . . } -> true (24242.0) -
ログレベルが DEBUG のメッセージを出力します。
...ログレベルが DEBUG のメッセージを出力します。
現在の Logger のログレベルが DEBUG よりも高い場合、メッセージは出力されません。
ブロックを与えなかった場合は、progname をメッセージとしてログを出力します。
ブロッ......定します。
ブロックを与えた場合は、プログラム名を文字列として与えます。
//emlist[例][ruby]{
logger.debug "Waiting for input from user"
# ...
logger.debug { "User typed #{input}" }
logger.debug("MainApp") { "Received connection from #{ip}" }
//}... -
Syslog
:: Logger # debug(message = nil , &block) -> true (24239.0) -
DEBUG 情報を出力します。syslog の DEBUG の情報として記録されます。
...
DEBUG 情報を出力します。syslog の DEBUG の情報として記録されます。
ブロックを与えなかった場合は、message をメッセージとしてログを出力します。
ブロックを与えた場合は、ブロックを評価した結果をメッセージとして......ログを出力します。
引数とブロックを同時に与えた場合は、message をメッセージとしてログを出
力します(ブロックは評価されません)。
@see Syslog::Logger::LEVEL_MAP, Logger#debug... -
WEBrick
:: BasicLog # debug(msg) -> () (24233.0) -
ログレベル DEBUG で文字列 msg をログに記録します。 自身の level が DEBUG より重要度が高い場合には記録しません。
...ログレベル DEBUG で文字列 msg をログに記録します。
自身の level が DEBUG より重要度が高い場合には記録しません。
行頭に level を表す文字列が追加されます。
msg の終端が "\n" でない場合には "\n" を追加します。
@param msg... -
Net
:: IMAP . debug -> bool (24207.0) -
デバッグモードが on になっていれば真を返します。
...デバッグモードが on になっていれば真を返します。
@see Net::IMAP#debug=... -
OpenSSL
. # debug -> bool (24207.0) -
デバッグモードが on ならば true を返します。
...デバッグモードが on ならば true を返します。
@see OpenSSL.#debug=... -
Shell
# debug -> bool | Integer (24202.0) -
@todo
@todo -
Shell
. debug -> bool | Integer (24202.0) -
@todo
@todo
デバッグ用フラグを参照します。 -
Forwardable
. debug -> bool (24201.0) -
委譲部分をバックトレースに含めるかどうかの状態を返します。
委譲部分をバックトレースに含めるかどうかの状態を返します。
バックトレースを含める設定となっている時、真を返します。
デフォルトは含めない設定となっています。