module DEBUGGER__::ForkInterceptor::DaemonInterceptor

Public Instance Methods

daemon() click to toggle source
Calls superclass method
# File debug-1.7.1/lib/debug/session.rb, line 2441
def daemon
  return super unless defined?(SESSION) && SESSION.active?

  _, child_hook = __fork_setup_for_debugger(:child)

  unless SESSION.remote?
    DEBUGGER__.warn "Can't debug the code after Process.daemon locally. Use the remote debugging feature."
  end

  super.tap do
    child_hook.call
  end
end