removes Kernel#daemonize, which is no longer used

This commit is contained in:
Xavier Noria 2010-02-06 18:33:09 +01:00
parent 6958eac1a0
commit 299ab1faa1
2 changed files with 0 additions and 8 deletions

@ -1,4 +1,3 @@
require 'active_support/core_ext/kernel/daemonizing'
require 'active_support/core_ext/kernel/reporting'
require 'active_support/core_ext/kernel/agnostics'
require 'active_support/core_ext/kernel/requires'

@ -1,7 +0,0 @@
module Kernel
# Turns the current script into a daemon process that detaches from the console.
# It can be shut down with a TERM signal.
def daemonize
Process.daemon
end
end