Class Debugger::ReloadCommand
In: cli/ruby-debug/commands/reload.rb
Parent: Command

Implements debugger "reload" command.

Methods

execute   regexp  

Public Instance methods

[Source]

    # File cli/ruby-debug/commands/reload.rb, line 17
17:     def execute
18:       Debugger.source_reload
19:       print "Source code is reloaded. Automatic reloading is #{source_reloading}.\n"
20:     end

[Source]

    # File cli/ruby-debug/commands/reload.rb, line 13
13:     def regexp
14:       /^\s*r(?:eload)?$/
15:     end

[Validate]