Class: Command::Trace
- Inherits:
-
CommandBase
- Object
- CommandBase
- Command::Trace
- Defined in:
- lib/command/trace.rb
Instance Attribute Summary
Attributes inherited from CommandBase
Class Method Summary collapse
Instance Method Summary collapse
- #execute(argv) ⇒ Object
-
#initialize ⇒ Trace
constructor
A new instance of Trace.
Methods inherited from CommandBase
#disable_logging, #display_help!, execute!, #execute!, #force_change_settings_function, help, #hook_call, #load_local_settings, #tagname_to_ids
Constructor Details
#initialize ⇒ Trace
Returns a new instance of Trace.
13 14 15 16 17 18 19 20 |
# File 'lib/command/trace.rb', line 13 def initialize super() @opt.separator <<-MSG ・エラーが発生した際に保存されたバックトレースログを表示します。 ・ログテキスト自体は #{Narou::Backtracer.log_path} に保存されています。 MSG end |
Class Method Details
.oneline_help ⇒ Object
9 10 11 |
# File 'lib/command/trace.rb', line 9 def self.oneline_help "直前のバックトレースを表示します" end |
Instance Method Details
#execute(argv) ⇒ Object
22 23 24 25 26 |
# File 'lib/command/trace.rb', line 22 def execute(argv) super return unless File.exist?(Narou::Backtracer.log_path) puts File.read(Narou::Backtracer.log_path) end |