diff options
author | Jason Noble & Ralph Shnelvar <perlwizard@gmail.com> | 2011-07-24 16:07:41 -0600 |
---|---|---|
committer | Jason Noble & Ralph Shnelvar <perlwizard@gmail.com> | 2011-07-24 16:07:41 -0600 |
commit | 2f7ea1907dbaae737a227977b9b645e4ae22c8a0 (patch) | |
tree | 71151cd1be5243c6e39544846f6fd19f37c12a8c | |
parent | 5ee349c7116e4ba1f76681660b71467998c90ed0 (diff) | |
download | rails-2f7ea1907dbaae737a227977b9b645e4ae22c8a0.tar.gz rails-2f7ea1907dbaae737a227977b9b645e4ae22c8a0.tar.bz2 rails-2f7ea1907dbaae737a227977b9b645e4ae22c8a0.zip |
Make the rails not found tip more explanatory.
-rw-r--r-- | railties/guides/source/getting_started.textile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 4c61cae0cb..c2c8ee02ad 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -462,8 +462,8 @@ your terminal: $ rails generate controller home index </shell> -TIP: If you're on Windows, or your Ruby is set up in some non-standard fashion, -you may need to explicitly pass Rails +rails+ commands to Ruby: <tt>ruby +TIP: If you get a command not found error when running this command, you +need to explicitly pass Rails +rails+ commands to Ruby: <tt>ruby \path\to\your\application\script\rails generate controller home index</tt>. Rails will create several files for you, including |