aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Martinez <sebastian@wyeworks.com>2011-04-13 19:54:31 -0300
committerSebastian Martinez <sebastian@wyeworks.com>2011-04-13 19:54:31 -0300
commitf8ecb46e82154979a548d36183b25375982aca08 (patch)
tree608d6992c56552507f4c0e3a257af58d0b8b3a66
parent04a75e02894e15aa3aaf92e3e856b091a2386f14 (diff)
downloadrails-f8ecb46e82154979a548d36183b25375982aca08.tar.gz
rails-f8ecb46e82154979a548d36183b25375982aca08.tar.bz2
rails-f8ecb46e82154979a548d36183b25375982aca08.zip
Documented +ActiveSupport::Notifications+ module.
-rw-r--r--railties/guides/source/initialization.textile6
1 files changed, 5 insertions, 1 deletions
diff --git a/railties/guides/source/initialization.textile b/railties/guides/source/initialization.textile
index 7c01f01b24..33045954ee 100644
--- a/railties/guides/source/initialization.textile
+++ b/railties/guides/source/initialization.textile
@@ -592,7 +592,11 @@ This file defines the behavior of the +ActiveSupport::Deprecation+ module, setti
h4. +activesupport/lib/active_support/notifications.rb+
-TODO: document +ActiveSupport::Notifications+.
+This file defines the +ActiveSupport::Notifications+ module. Notifications provides an instrumentation API for Ruby, shipping with a queue implementation that consumes and publish events to log subscribers in a thread.
+
+The "API documentation":http://api.rubyonrails.org/classes/ActiveSupport/Notifications.html for +ActiveSupport::Notifications+ explains the usage of this module, including the methods that it defines.
+
+The file required in +active_support/notifications.rb+ is +active_support/core_ext/module/delegation+ which is documented in the "Active Support Core Extensions Guide":http://guides.rubyonrails.org/active_support_core_extensions.html#method-delegation.
h4. +activesupport/core_ext/array/wrap+