diff options
Diffstat (limited to 'railties/Rakefile')
-rw-r--r-- | railties/Rakefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/railties/Rakefile b/railties/Rakefile index e279bf922e..8de7e24738 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -277,16 +277,19 @@ Rake::RDocTask.new { |rdoc| # doesn't equal its folder name, then specify a hash: { 'folder_name' => 'basename' } guides = [ 'getting_started_with_rails', - 'testing_rails_applications', + # 'testing_rails_applications', 'creating_plugins', + 'actioncontroller', 'migrations', { 'securing_rails_applications' => 'security' }, { 'routing' => 'routing_outside_in' }, { 'forms' =>'form_helpers' }, { 'activerecord' => 'association_basics' }, + { 'activerecord' => 'finders' }, { 'debugging' => 'debugging_rails_applications' }, { 'caching' => 'caching_with_rails' }, - { 'benchmarking_and_profiling' => 'preamble' } + { 'benchmarking_and_profiling' => 'preamble' }, + { 'actionview' => 'layouts_and_rendering' } ] guides_html_files = [] # autogenerated from the 'guides' variable. |