aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-08-10 01:53:53 +0200
committerXavier Noria <fxn@hashref.com>2010-08-10 01:55:09 +0200
commit41328815c06b6fb5e0747604389f7f4c8bd60483 (patch)
tree66f15ebd5bebd657895b87ed0ec7af19071a96ea /railties
parent898bd38d7a89c39a5e89f0e6be208e6622b07e3d (diff)
downloadrails-41328815c06b6fb5e0747604389f7f4c8bd60483.tar.gz
rails-41328815c06b6fb5e0747604389f7f4c8bd60483.tar.bz2
rails-41328815c06b6fb5e0747604389f7f4c8bd60483.zip
AS guide: documents Process.daemon
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/active_support_core_extensions.textile4
1 files changed, 3 insertions, 1 deletions
diff --git a/railties/guides/source/active_support_core_extensions.textile b/railties/guides/source/active_support_core_extensions.textile
index fbb617715f..01eb09f3d3 100644
--- a/railties/guides/source/active_support_core_extensions.textile
+++ b/railties/guides/source/active_support_core_extensions.textile
@@ -3350,7 +3350,9 @@ Time.utc_time(1582, 10, 3) + 5.days
h3. Extensions to +Process+
-...
+h4. +daemon+
+
+Ruby 1.9 provides +Process.daemon+, and Active Support defines it for previous versions. It accepts the same two arguments, whether it should chdir to the root directory (default, true), and whether it should inherit the standard file descriptors from the parent (default, false).
h3. Extensions to +File+