Class: WEBrick::Daemon
- Inherits:
-
Object
- Object
- WEBrick::Daemon
- Defined in:
- lib/webrick/server.rb
Overview
A generic module for daemonizing a process
Class Method Summary collapse
-
.start ⇒ Object
Performs the standard operations for daemonizing a process.
Class Method Details
.start ⇒ Object
Performs the standard operations for daemonizing a process. Runs a block, if given.
45 46 47 48 49 |
# File 'lib/webrick/server.rb', line 45 def Daemon.start Process.daemon File.umask(0) yield if block_given? end |