Sha256: ec09579240789ef50e24bb7d9df87416f026b06bee80be4bd7a22829fe4367b1
Contents?: true
Size: 338 Bytes
Versions: 29
Compression:
Stored size: 338 Bytes
Contents
module Process def self.daemonize File.create Application.pid,'a+' File.create Application.log,'a+' File.create Application.daemon_stderr,'a+' Daemon.start fork, Application.pid, Application.log, Application.daemon_stderr end def self.stop Daemon.stop end end
Version data entries
29 entries across 29 versions & 2 rubygems