diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-05-26 18:07:17 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-05-26 18:07:17 +0530 |
commit | 2114e2187dd8cbdcc0ab304ec0adf1a1bf5cc09a (patch) | |
tree | 8d10255e86cca30ce2308ed967391ec654bafbb5 /guides/source/initialization.textile | |
parent | 575e77ba167844c0ef492897240d9568cdc9b5f5 (diff) | |
download | rails-2114e2187dd8cbdcc0ab304ec0adf1a1bf5cc09a.tar.gz rails-2114e2187dd8cbdcc0ab304ec0adf1a1bf5cc09a.tar.bz2 rails-2114e2187dd8cbdcc0ab304ec0adf1a1bf5cc09a.zip |
some small corrections & wrapping changes in the initialization guide
This guide is currently a wip and pending reviews. [ci skip]
Diffstat (limited to 'guides/source/initialization.textile')
-rw-r--r-- | guides/source/initialization.textile | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/guides/source/initialization.textile b/guides/source/initialization.textile index 85a9966c20..913ff24290 100644 --- a/guides/source/initialization.textile +++ b/guides/source/initialization.textile @@ -708,10 +708,9 @@ require 'active_support/core_ext/object/to_query' require 'active_support/core_ext/object/with_options' </ruby> -The Rails "api documentation":http://api.rubyonrails.org/ covers them in -great detail, so we're not going to explain each of them. +The Rails API documentation covers them in great detail, so we're not going to explain each of them. -The file that is required next from +rails/configuration+ is +rails/paths+ +The file that is required next from +rails/configuration+ is +rails/paths+. h4. +railties/lib/rails/paths.rb+ @@ -758,10 +757,7 @@ 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. - +This is the file that defines 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. h4. +active_support/core_ext/module/introspection+ @@ -771,10 +767,7 @@ extension, which extends +Module+ with methods like +parent_name+, +parent+ and 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. +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+ |