diff options
author | Oscar Del Ben <info@oscardelben.com> | 2012-04-19 10:33:15 +0200 |
---|---|---|
committer | Oscar Del Ben <info@oscardelben.com> | 2012-04-19 10:33:15 +0200 |
commit | 6ece2ee5ca316ac31c5e6cf32c104475b0149216 (patch) | |
tree | 3b2a99424d31b6a58fcea529094200975aa97660 | |
parent | c6663235f6ac2c9e09187c8413903211ddeb76d2 (diff) | |
download | rails-6ece2ee5ca316ac31c5e6cf32c104475b0149216.tar.gz rails-6ece2ee5ca316ac31c5e6cf32c104475b0149216.tar.bz2 rails-6ece2ee5ca316ac31c5e6cf32c104475b0149216.zip |
Update guide for rails 3.2.3, fix code download link.
-rw-r--r-- | guides/source/getting_started.textile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/guides/source/getting_started.textile b/guides/source/getting_started.textile index 59b12b49e5..775243a8ab 100644 --- a/guides/source/getting_started.textile +++ b/guides/source/getting_started.textile @@ -13,8 +13,6 @@ endprologue. WARNING. This Guide is based on Rails 3.1. Some of the code shown here will not work in earlier versions of Rails. -WARNING: The Edge version of this guide is currently being re-worked. Please excuse us while we re-arrange the place. - h3. Guide Assumptions This guide is designed for beginners who want to get started with a Rails @@ -73,7 +71,8 @@ h3. Creating a New Rails Project 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. You can get the complete code "here":https://github.com/lifo/docrails/tree/master/guides/code/getting_started. +literally follow along step by step. You can get the complete code +"here":https://github.com/lifo/docrails/tree/master/guides/code/getting_started. 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 @@ -97,7 +96,7 @@ To verify that you have everything installed correctly, you should be able to ru $ rails --version </shell> -If it says something like "Rails 3.2.2" you are ready to continue. +If it says something like "Rails 3.2.3" you are ready to continue. h4. Creating the Blog Application @@ -111,7 +110,7 @@ $ rails new blog This will create a Rails application called Blog in a directory called blog. -TIP: You can see all of the switches that the Rails application builder accepts by running <tt>rails new -h</tt>. +TIP: You can see all of the command line options that the Rails application builder accepts by running <tt>rails new -h</tt>. After you create the blog application, switch to its folder to continue work directly in that application: |