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