Class: Byebug::VarGlobalCommand

Inherits:
Command
  • Object
show all
Defined in:
lib/byebug/commands/variables.rb

Constant Summary

Constants inherited from Command

Command::DEF_OPTIONS

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Command

commands, #find, inherited, #initialize, load_commands, #match, method_missing, options, #print_subcmds, register_setting_get, register_setting_set, register_setting_var, settings, settings_map

Constructor Details

This class inherits a constructor from Byebug::Command

Class Method Details

.help(cmd) ⇒ Object



103
104
105
106
107
# File 'lib/byebug/commands/variables.rb', line 103

def help(cmd)
  %{
    v[ar] g[lobal]\t\t\tshow global variables
  }
end

.help_commandObject



99
100
101
# File 'lib/byebug/commands/variables.rb', line 99

def help_command
  'var'
end

Instance Method Details

#executeObject



94
95
96
# File 'lib/byebug/commands/variables.rb', line 94

def execute
  var_global
end

#regexpObject



90
91
92
# File 'lib/byebug/commands/variables.rb', line 90

def regexp
  /^\s*v(?:ar)?\s+g(?:lobal)?\s*$/
end