class Byebug::Command
def load_commands
def load_commands Dir[File.join(Byebug.const_get(:BYEBUG_DIR), 'commands', '*')].each { |file| require file if file =~ /\.rb$/ } Byebug.constants.grep(/Functions$/).map { |name| Byebug.const_get(name) }.each { |mod| include mod } end