aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/getting_started.md
diff options
context:
space:
mode:
authorYves Senn <yves.senn@gmail.com>2014-02-03 11:55:16 +0100
committerYves Senn <yves.senn@gmail.com>2014-02-03 12:01:32 +0100
commitc46b0d1023490bdbfac6b0db6426b3bf8075ebeb (patch)
tree226b93c37f03b3462005d67becf64b1d4142f65a /guides/source/getting_started.md
parent67d4dc2bdb27648a61e153996d629b44834a9de4 (diff)
downloadrails-c46b0d1023490bdbfac6b0db6426b3bf8075ebeb.tar.gz
rails-c46b0d1023490bdbfac6b0db6426b3bf8075ebeb.tar.bz2
rails-c46b0d1023490bdbfac6b0db6426b3bf8075ebeb.zip
docs, reference to ruby-lang.org. refs #13492. [ci skip]
Diffstat (limited to 'guides/source/getting_started.md')
-rw-r--r--guides/source/getting_started.md12
1 files changed, 8 insertions, 4 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index 0aa0b49b15..bdb1a61bfb 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -84,21 +84,25 @@ Open up a command line prompt. On Mac OS X open Terminal.app, on Windows choose
dollar sign `$` should be run in the command line. Verify that you have a
current version of Ruby installed:
+TIP. A number of tools exist to help you quickly install Ruby and Ruby
+on Rails on your system. Windows users can use [Rails Installer](http://railsinstaller.org),
+while Mac OS X users can use [Rails One Click](http://railsoneclick.com).
+
```bash
$ ruby -v
ruby 2.0.0p353
```
+If you don't have Ruby installed have a look at
+[ruby-lang.org](https://www.ruby-lang.org/en/downloads/) for possible ways to
+install Ruby on your platform.
+
To install Rails, use the `gem install` command provided by RubyGems:
```bash
$ gem install rails
```
-TIP. A number of tools exist to help you quickly install Ruby and Ruby
-on Rails on your system. Windows users can use [Rails Installer](http://railsinstaller.org),
-while Mac OS X users can use [Rails One Click](http://railsoneclick.com).
-
To verify that you have everything installed correctly, you should be able to
run the following: