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 23
def self.description
  <<-EOD
    info[ subcommand]

    #{short_description}
  EOD
end
regexp() click to toggle source
# File lib/byebug/commands/info.rb, line 19
def self.regexp
  /^\s* i(?:nfo)? (?:\s+ (.+))? \s*$/x
end
short_description() click to toggle source
# File lib/byebug/commands/info.rb, line 31
def self.short_description
  'Shows several informations about the program being debugged'
end