aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-02-06 18:33:09 +0100
committerXavier Noria <fxn@hashref.com>2010-02-06 18:33:09 +0100
commit299ab1faa18f88e6f2b9a4724f9009109e86949e (patch)
tree9e089d70d3607d46d2e94da2e50821e69e3ea5e2 /activesupport/lib/active_support/core_ext/kernel/daemonizing.rb
parent6958eac1a00a4ab33e3facc70c80a07492288196 (diff)
downloadrails-299ab1faa18f88e6f2b9a4724f9009109e86949e.tar.gz
rails-299ab1faa18f88e6f2b9a4724f9009109e86949e.tar.bz2
rails-299ab1faa18f88e6f2b9a4724f9009109e86949e.zip
removes Kernel#daemonize, which is no longer used
Diffstat (limited to 'activesupport/lib/active_support/core_ext/kernel/daemonizing.rb')
-rw-r--r--activesupport/lib/active_support/core_ext/kernel/daemonizing.rb7
1 files changed, 0 insertions, 7 deletions
diff --git a/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb b/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb
deleted file mode 100644
index ed9d1f9bf2..0000000000
--- a/activesupport/lib/active_support/core_ext/kernel/daemonizing.rb
+++ /dev/null
@@ -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