aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/getting_started.textile
diff options
context:
space:
mode:
authorAndreas Scherer <andreas_coder@freenet.de>2009-02-16 11:47:23 +0100
committerAndreas Scherer <andreas_coder@freenet.de>2009-02-16 11:47:23 +0100
commit74c8ff53e7fff1e7c1ceaf5f5205668dfa81557d (patch)
tree890da3cb1f3337d443d6ec3025e689e8d5813e92 /railties/guides/source/getting_started.textile
parente2aeccee940ccb8b5bdedc1333a946ceb699d18b (diff)
downloadrails-74c8ff53e7fff1e7c1ceaf5f5205668dfa81557d.tar.gz
rails-74c8ff53e7fff1e7c1ceaf5f5205668dfa81557d.tar.bz2
rails-74c8ff53e7fff1e7c1ceaf5f5205668dfa81557d.zip
More tables headers formatted.
Diffstat (limited to 'railties/guides/source/getting_started.textile')
-rw-r--r--railties/guides/source/getting_started.textile4
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index 6a600e801a..7c7f7e889c 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -163,7 +163,7 @@ $ cd blog
In any case, Rails will create a folder in your working directory called <tt>blog</tt>. Open up that folder and explore its contents. Most of the work in this tutorial will happen in the <tt>app/</tt> folder, but here’s a basic rundown on the function of each folder that Rails creates in a new application by default:
-|File/Folder|Purpose|
+|_.File/Folder|_.Purpose|
|README|This is a brief instruction manual for your application. Use it to tell others what your application does, how to set it up, and so on.|
|Rakefile|This file contains batch jobs that can be run from the terminal.|
|app/|Contains the controllers, models, and views for your application. You'll focus on this folder for the remainder of this guide.|
@@ -327,7 +327,7 @@ NOTE. While scaffolding will get you up and running quickly, the "one size fits
The scaffold generator will build 14 files in your application, along with some folders, and edit one more. Here's a quick overview of what it creates:
-|File |Purpose|
+|_.File |_.Purpose|
|app/models/post.rb |The Post model|
|db/migrate/20090113124235_create_posts.rb |Migration to create the posts table in your database (your name will include a different timestamp)|
|app/views/posts/index.html.erb |A view to display an index of all posts |