aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorOscar Del Ben <info@oscardelben.com>2012-05-25 09:15:31 -0700
committerOscar Del Ben <info@oscardelben.com>2012-05-25 09:15:47 -0700
commit4ce51e3d76f1d976d235d6be1c9252ef969ba423 (patch)
tree389994b996819f2170acb9903f90473863a9c479 /guides/source
parent26149260bfe5aaee162586e6d1fa54365f8a773e (diff)
downloadrails-4ce51e3d76f1d976d235d6be1c9252ef969ba423.tar.gz
rails-4ce51e3d76f1d976d235d6be1c9252ef969ba423.tar.bz2
rails-4ce51e3d76f1d976d235d6be1c9252ef969ba423.zip
[Guides] Add missing file descriptions
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/initialization.textile18
1 files changed, 17 insertions, 1 deletions
diff --git a/guides/source/initialization.textile b/guides/source/initialization.textile
index 89bb0bba84..ebeed52160 100644
--- a/guides/source/initialization.textile
+++ b/guides/source/initialization.textile
@@ -758,7 +758,23 @@ inflect.irregular('zombie', 'zombies')
h4. +activesupport/lib/active_support/inflector/transliterate.rb+
-In this file is where the "+transliterate+":http://api.rubyonrails.org/classes/ActiveSupport/Inflector.html#method-i-transliterate and +parameterize+:http://api.rubyonrails.org/classes/ActiveSupport/Inflector.html#method-i-parameterize methods are defined. The documentation for both of these methods is very much worth reading.
+In this file is where the
+"+transliterate+":http://api.rubyonrails.org/classes/ActiveSupport/Inflector.html#method-i-transliterate
+and "+parameterize+":http://api.rubyonrails.org/classes/ActiveSupport/Inflector.html#method-i-parameterize methods are defined. The documentation for both of these methods is very much worth reading.
+
+
+h4. +active_support/core_ext/module/introspection+
+
+The next file loaded by +rails/railtie+ is the introspection core
+extension, which extends +Module+ with methods like +parent_name+, +parent+ and
++parents+.
+
+h4. +active_support/core_ext/module/delegation+
+
+The final file loaded by +rails/railtie+ is the delegation core
+extension, which defines the
+"+delegate+":http://api.rubyonrails.org/classes/Module.html#method-i-delegate
+method.
h4. Back to +railties/lib/rails/railtie.rb+