diff options
author | Heiko Webers <heikowebers@gmx.net> | 2008-09-17 16:59:43 +0200 |
---|---|---|
committer | Heiko Webers <heikowebers@gmx.net> | 2008-09-17 16:59:43 +0200 |
commit | f7056c5ce8ff94c15f06556e42e0591efc3d2d98 (patch) | |
tree | 219ed664ce4fa75ff3e3bbc8cbae7b949d9c795b /railties/Rakefile | |
parent | 3642a8f5cc9ebcce3cac3ef94885d5068dbd9503 (diff) | |
parent | f261cd2a94fc128f37f85e86326868341cbfdf3d (diff) | |
download | rails-f7056c5ce8ff94c15f06556e42e0591efc3d2d98.tar.gz rails-f7056c5ce8ff94c15f06556e42e0591efc3d2d98.tar.bz2 rails-f7056c5ce8ff94c15f06556e42e0591efc3d2d98.zip |
Merge branch 'master' of git@github.com:lifo/docrails
Diffstat (limited to 'railties/Rakefile')
-rw-r--r-- | railties/Rakefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/railties/Rakefile b/railties/Rakefile index 39c0ec89e7..be37023a1d 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -277,14 +277,15 @@ Rake::RDocTask.new { |rdoc| # doesn't equal its folder name, then specify a hash: { 'folder_name' => 'basename' } guides = [ 'getting_started_with_rails', - 'securing_rails_applications', 'testing_rails_applications', 'creating_plugins', 'migrations', + { 'securing_rails_applications' => 'security' }, { 'routing' => 'routing_outside_in' }, { 'forms' =>'form_helpers' }, { 'activerecord' => 'association_basics' }, - { 'debugging' => 'debugging_rails_applications' } + { 'debugging' => 'debugging_rails_applications' }, + { 'caching' => 'caching_with_rails' } ] guides_html_files = [] # autogenerated from the 'guides' variable. |