aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/generators.textile
diff options
context:
space:
mode:
authorMikel Lindsaar <raasdnil@gmail.com>2010-06-04 00:03:42 +1000
committerMikel Lindsaar <raasdnil@gmail.com>2010-06-04 00:03:42 +1000
commit54249b549bb1b98c8882a16eb28db83a19c8bbb8 (patch)
tree2e095ed466492db3d4585e58a77142143efc4909 /railties/guides/source/generators.textile
parent06892c34213659ed8734ac250ee5846273e277d6 (diff)
downloadrails-54249b549bb1b98c8882a16eb28db83a19c8bbb8.tar.gz
rails-54249b549bb1b98c8882a16eb28db83a19c8bbb8.tar.bz2
rails-54249b549bb1b98c8882a16eb28db83a19c8bbb8.zip
Updating guides to new rails initialization process
Diffstat (limited to 'railties/guides/source/generators.textile')
-rw-r--r--railties/guides/source/generators.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/generators.textile b/railties/guides/source/generators.textile
index b77a2837c3..704a8793b2 100644
--- a/railties/guides/source/generators.textile
+++ b/railties/guides/source/generators.textile
@@ -20,7 +20,7 @@ h3. First contact
When you create an application using the +rails+ command, you are in fact using a Rails generator. After that, you can get a list of all available generators by just invoking +rails generate+:
<shell>
-$ rails myapp
+$ rails new myapp
$ cd myapp
$ rails generate
</shell>