aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-12-21 22:10:32 -0800
committerJosé Valim <jose.valim@gmail.com>2011-12-21 22:10:32 -0800
commit667d7aa61d0c50be23ab24a4c16b8c9c9c0daff8 (patch)
tree6ed040d81478b837b43286c386637fe95b4a0618 /railties
parent401b266f5fc1e6c5f13feb36122a1983989d8f58 (diff)
parent7bfaa979e4e48dea68023e1aa67eabd160c3a7d3 (diff)
downloadrails-667d7aa61d0c50be23ab24a4c16b8c9c9c0daff8.tar.gz
rails-667d7aa61d0c50be23ab24a4c16b8c9c9c0daff8.tar.bz2
rails-667d7aa61d0c50be23ab24a4c16b8c9c9c0daff8.zip
Merge pull request #4125 from nashby/remove-process-daemon
remove Proces.daemon from core_ext
Diffstat (limited to 'railties')
-rw-r--r--railties/guides/source/active_support_core_extensions.textile6
1 files changed, 0 insertions, 6 deletions
diff --git a/railties/guides/source/active_support_core_extensions.textile b/railties/guides/source/active_support_core_extensions.textile
index 25d8f50a7b..1b467e1efd 100644
--- a/railties/guides/source/active_support_core_extensions.textile
+++ b/railties/guides/source/active_support_core_extensions.textile
@@ -3479,12 +3479,6 @@ Time.utc_time(1582, 10, 3) + 5.days
# => Mon Oct 18 00:00:00 UTC 1582
</ruby>
-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+
h4. +atomic_write+