File: active_support/core_ext/kernel/daemonizing.rb

Overview
Module Structure
Code

Overview

Module Structure

  module: <Toplevel Module>
  module: <Built-in Module>
  module: Kernel#1
has properties
method: daemonize #4

Code

   1  module Kernel
   2    # Turns the current script into a daemon process that detaches from the console.
   3    # It can be shut down with a TERM signal.
   4    def daemonize
   5      Process.daemon
   6    end
   7  end