class WEBrick::Daemon
A generic module for daemonizing a process
Public Class Methods
Source
# File vendor/bundle/ruby/3.4.0/gems/webrick-1.9.1/lib/webrick/server.rb, line 45 def Daemon.start Process.daemon File.umask(0) yield if block_given? end
Performs the standard operations for daemonizing a process. Runs a block, if given.