class Byebug::InfoCommand
Shows info about different aspects of the debugger.
Reopens the info
command to define the breakpoints
subcommand
Reopens the info
command to define the display
subcommand
Reopens the info
command to define the file
subcommand
Reopens the info
command to define the line
subcommand
Reopens the info
command to define the args
subcommand
Public Class Methods
description()
click to toggle source
# File lib/byebug/commands/info.rb, line 25 def self.description <<-DESCRIPTION info[ subcommand] #{short_description} DESCRIPTION end
regexp()
click to toggle source
# File lib/byebug/commands/info.rb, line 21 def self.regexp /^\s* i(?:nfo)? (?:\s+ (.+))? \s*$/x end
short_description()
click to toggle source
# File lib/byebug/commands/info.rb, line 33 def self.short_description "Shows several informations about the program being debugged" end