Class: Byebug::InterruptCommand
- Defined in:
- lib/byebug/commands/interrupt.rb
Overview
Interrupting execution of current thread.
Instance Attribute Summary
Attributes inherited from Command
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from Command
#arguments, columnize, #context, #frame, help, #initialize, match, to_s
Methods included from Helpers::StringHelper
#camelize, #deindent, #prettify
Constructor Details
This class inherits a constructor from Byebug::Command
Class Method Details
.description ⇒ Object
16 17 18 19 20 21 22 |
# File 'lib/byebug/commands/interrupt.rb', line 16 def self.description <<-DESCRIPTION int[errupt] #{short_description} DESCRIPTION end |
.regexp ⇒ Object
12 13 14 |
# File 'lib/byebug/commands/interrupt.rb', line 12 def self.regexp /^\s*int(?:errupt)?\s*$/ end |
.short_description ⇒ Object
24 25 26 |
# File 'lib/byebug/commands/interrupt.rb', line 24 def self.short_description "Interrupts the program" end |
Instance Method Details
#execute ⇒ Object
28 29 30 31 32 |
# File 'lib/byebug/commands/interrupt.rb', line 28 def execute Byebug.start Byebug.thread_context(Thread.main).interrupt end |