aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/getting_started.textile
diff options
context:
space:
mode:
authorJason Noble <github+jasonn@jasonnoble.org>2011-11-13 01:18:24 -0700
committerJason Noble <github+jasonn@jasonnoble.org>2011-11-13 01:19:01 -0700
commitee100128c3a917f96d6f40293bb5a5ed3bcf8c27 (patch)
tree593796503f57359cbb4840f787c5e78c7cee31b8 /railties/guides/source/getting_started.textile
parent962c55de0d24561d54babe5608630f93afc2681f (diff)
downloadrails-ee100128c3a917f96d6f40293bb5a5ed3bcf8c27.tar.gz
rails-ee100128c3a917f96d6f40293bb5a5ed3bcf8c27.tar.bz2
rails-ee100128c3a917f96d6f40293bb5a5ed3bcf8c27.zip
Move paragraphs to flow better
- Give the user a way to know they are fully installed and ready to continue
Diffstat (limited to 'railties/guides/source/getting_started.textile')
-rw-r--r--railties/guides/source/getting_started.textile22
1 files changed, 15 insertions, 7 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index ce556a0f87..447b8e86d0 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -219,7 +219,12 @@ Ian Robinson
h3. Creating a New Rails Project
-If you follow this guide, you'll create a Rails project called <tt>blog</tt>, a
+The best way to use this guide is to follow each step as it happens, no code or
+step needed to make this example application has been left out, so you can
+literally follow along step by step. If you need to see the completed code, you
+can download it from "Getting Started Code":https://github.com/mikel/getting-started-code.
+
+By following along with this guide, you'll create a Rails project called <tt>blog</tt>, a
(very) simple weblog. Before you can start building the application, you need to
make sure that you have Rails itself installed.
@@ -237,13 +242,16 @@ Usually run this as the root user:
TIP. If you're working on Windows, you can quickly install Ruby and Rails with
"Rails Installer":http://railsinstaller.org.
-h4. Creating the Blog Application
+To verify that you have everything installed correctly, you should be able to run
+the following:
-The best way to use this guide is to follow each step as it happens, no code or
-step needed to make this example application has been left out, so you can
-literally follow along step by step. If you need to see the completed code, you
-can download it from "Getting Started
-Code":https://github.com/mikel/getting-started-code.
+<shell>
+# rails --version
+</shell>
+
+If it says something like "Rails 3.1.1" you are ready to continue.
+
+h4. Creating the Blog Application
To begin, open a terminal, navigate to a folder where you have rights to create
files, and type: