diff options
author | Brooks Reese <brooksreese@gmail.com> | 2015-08-11 21:02:09 -0500 |
---|---|---|
committer | Brooks Reese <brooksreese@gmail.com> | 2015-08-11 21:02:09 -0500 |
commit | 5d11fc486662f3252c65804a64ecc1abe310b5ad (patch) | |
tree | fd584ce2d7a70540e2550a2f3ad5251cb0546acf /guides/source | |
parent | 942f41263152277dd5d23744a97a67e8c1a8d3d4 (diff) | |
download | rails-5d11fc486662f3252c65804a64ecc1abe310b5ad.tar.gz rails-5d11fc486662f3252c65804a64ecc1abe310b5ad.tar.bz2 rails-5d11fc486662f3252c65804a64ecc1abe310b5ad.zip |
[ci skip] Swap ruby -v and the installation tip
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/getting_started.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index d51a27812a..a2a4910284 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -92,17 +92,17 @@ 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: +```bash +$ ruby -v +ruby 2.2.2p95 +``` + 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 [Tokaido](https://github.com/tokaido/tokaidoapp). For more installation methods for most Operating Systems take a look at [ruby-lang.org](https://www.ruby-lang.org/en/documentation/installation/). -```bash -$ ruby -v -ruby 2.2.2p95 -``` - Many popular UNIX-like OSes ship with an acceptable version of SQLite3. On Windows, if you installed Rails through Rails Installer, you already have SQLite installed. Others can find installation instructions |