diff options
author | Hongli Lai (Phusion) <hongli@phusion.nl> | 2008-09-12 11:47:19 +0200 |
---|---|---|
committer | Hongli Lai (Phusion) <hongli@phusion.nl> | 2008-09-12 11:47:19 +0200 |
commit | 6160828b041c93a0adde196df0aed42fd070f9b7 (patch) | |
tree | 599d867c726c287414cde5eeb0fd8af9b8d86556 /railties | |
parent | 850daecc58be5be1971234b68f74ba3014733f74 (diff) | |
download | rails-6160828b041c93a0adde196df0aed42fd070f9b7.tar.gz rails-6160828b041c93a0adde196df0aed42fd070f9b7.tar.bz2 rails-6160828b041c93a0adde196df0aed42fd070f9b7.zip |
Add 'Getting Started with Rails' to guides index page.
Diffstat (limited to 'railties')
-rw-r--r-- | railties/Rakefile | 3 | ||||
-rw-r--r-- | railties/doc/guides/index.txt | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/railties/Rakefile b/railties/Rakefile index 1f4eb8e800..ec2fe850e6 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -274,8 +274,9 @@ Rake::RDocTask.new { |rdoc| # In this array, one defines the guides for which HTML output should be # generated. Specify the folder names of the guides. If the .txt filename -# doesn't equal its folder name, then specify a hash: { 'folder_name' => 'filename.txt' } +# 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', diff --git a/railties/doc/guides/index.txt b/railties/doc/guides/index.txt index 08d9694db8..d4bbfded14 100644 --- a/railties/doc/guides/index.txt +++ b/railties/doc/guides/index.txt @@ -1,6 +1,11 @@ Ruby on Rails guides ==================== +.link:getting_started_with_rails/getting_started_with_rails.html[Getting Started with Rails] +*********************************************************** +TODO: Insert some description here. +*********************************************************** + .link:activerecord/association_basics.html[Active Record Associations] *********************************************************** Introduction to Active Record associations. |