Class: IRB::ExtendCommand::DebugCommand

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

Direct Known Subclasses

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

Constant Summary

Constants inherited from Debug

IRB::ExtendCommand::Debug::BINDING_IRB_FRAME_REGEXPS

Instance Attribute Summary

Attributes inherited from Nop

#irb_context

Class Method Summary collapse

Methods inherited from Debug

#execute

Methods inherited from Nop

execute, #execute, #initialize

Constructor Details

This class inherits a constructor from IRB::ExtendCommand::Nop

Class Method Details

.categoryObject



70
71
72
# File 'lib/irb/cmd/debug.rb', line 70

def self.category
  "Debugging"
end

.descriptionObject



74
75
76
77
# File 'lib/irb/cmd/debug.rb', line 74

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