class SporkDebugger

Experimental!

Constants

DEFAULT_PORT
HOST

Attributes

instance[R]
state[R]

Public Class Methods

new() click to toggle source
# File lib/spork/ext/ruby-debug.rb, line 24
def initialize
  @state = SporkDebugger::PreloadState.new
  Spork.send(:each_run_procs).unshift(lambda do
    @state = @state.transition_to_each_run_state
  end)
end
run() click to toggle source
# File lib/spork/ext/ruby-debug.rb, line 19
def run
  @instance ||= new
end