class Byebug::InfoCommand


Shows info about different aspects of the debugger.

def self.description

def self.description
  <<-EOD
    info[ subcommand]
    #{short_description}
  EOD
end

def self.regexp

def self.regexp
  /^\s* i(?:nfo)? (?:\s+ (.+))? \s*$/x
end

def self.short_description

def self.short_description
  'Shows several informations about the program being debugged'
end