Class: IRB::Command::DebugCommand

Inherits:
Debug show all
Defined in:
lib/irb/command/debug.rb

Direct Known Subclasses

Backtrace, Break, Catch, Continue, Delete, Finish, Info, Next, Step

Instance Attribute Summary

Attributes inherited from Base

#irb_context

Class Method Summary collapse

Methods inherited from Debug

#execute, #execute_debug_command

Methods inherited from Base

#execute, execute, help_message, #initialize

Constructor Details

This class inherits a constructor from IRB::Command::Base

Class Method Details

.categoryObject



62
63
64
# File 'lib/irb/command/debug.rb', line 62

def category
  "Debugging"
end

.descriptionObject



66
67
68
69
# File 'lib/irb/command/debug.rb', line 66

def description
  command_name = self.name.split("::").last.downcase
  "Start the debugger of debug.gem and run its `#{command_name}` command."
end