aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorschneems <richard.schneeman@gmail.com>2012-10-01 20:33:27 -0400
committerschneems <richard.schneeman@gmail.com>2012-10-02 11:31:23 -0400
commitf8a54e16a99cc8a4af35f5b5f96b2fb3ba6bed1b (patch)
tree4bfe070a94e426cf9123a84aa183fa13537290da /guides/source/getting_started.md
parent6b1467b848f25bda808a63d304ae8ea5940cbe0d (diff)
downloadrails-f8a54e16a99cc8a4af35f5b5f96b2fb3ba6bed1b.tar.gz
rails-f8a54e16a99cc8a4af35f5b5f96b2fb3ba6bed1b.tar.bz2
rails-f8a54e16a99cc8a4af35f5b5f96b2fb3ba6bed1b.zip
Explain that command line commands have $
This was extremely confusing to new programmers, also different operating systems call the command line something different
Diffstat (limited to 'guides/source/getting_started.md')
-rw-r--r--guides/source/getting_started.md7
1 files changed, 7 insertions, 0 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 2cce1b9b07..563cee6ad2 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -77,6 +77,13 @@ TIP: The examples below use # and $ to denote superuser and regular user termina
### Installing Rails
+Open up a command line prompt. On a mac this is called terminal, on windows it is called command prompt. Any commands prefaced with a dollar sign `$` should be run in the command line. Verify sure you have a current version of Ruby installed:
+
+```bash
+$ ruby -v
+ruby 1.9.3p194
+```
+
To install Rails, use the `gem install` command provided by RubyGems:
```bash