Froze rails gems
[depot.git] / vendor / rails / activesupport / lib / active_support / core_ext / kernel / daemonizing.rb
1 module Kernel
2 # Turns the current script into a daemon process that detaches from the console.
3 # It can be shut down with a TERM signal.
4 def daemonize
5 Process.daemon
6 end
7 end