diff options
| author | Zachary Scott <e@zzak.io> | 2014-12-15 19:06:47 -0800 | 
|---|---|---|
| committer | Zachary Scott <e@zzak.io> | 2014-12-15 19:06:47 -0800 | 
| commit | ce03e36f3ee874fca71d399b4b6edb3e84557de9 (patch) | |
| tree | b3db01c0445524c70372a96054f829be90e6437f /guides/source | |
| parent | a0258d54225390c6f331569bca79c29286f60ddd (diff) | |
| parent | e46b4c2d7e27b5593032c8bb926e5448c97b20c9 (diff) | |
| download | rails-ce03e36f3ee874fca71d399b4b6edb3e84557de9.tar.gz rails-ce03e36f3ee874fca71d399b4b6edb3e84557de9.tar.bz2 rails-ce03e36f3ee874fca71d399b4b6edb3e84557de9.zip | |
Merge pull request #17992 from andreynering/guides-intallation
Improving tips about installation in the guides [ci skip]
Diffstat (limited to 'guides/source')
| -rw-r--r-- | guides/source/getting_started.md | 17 | 
1 files changed, 11 insertions, 6 deletions
| diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md index a5e35f75a0..41cec794ae 100644 --- a/guides/source/getting_started.md +++ b/guides/source/getting_started.md @@ -90,18 +90,18 @@ 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 [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.0.0p353  ``` -If you don't have Ruby installed have a look at -[ruby-lang.org](https://www.ruby-lang.org/en/installation/) for possible ways to -install Ruby on your platform. - -Many popular UNIX-like OSes ship with an acceptable version of SQLite3. Windows -users and others can find installation instructions at the [SQLite3 website](https://www.sqlite.org). +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 +at the [SQLite3 website](https://www.sqlite.org).  Verify that it is correctly installed and in your PATH:  ```bash @@ -125,6 +125,11 @@ $ rails --version  If it says something like "Rails 4.2.0", you are ready to continue. +TIP: There are some performance and incompatibility issues with Ruby in Windows +environments. Some developers do not recommend developing Ruby apps on Windows. +But if you are just learning, do not worry by now, you shouldn't have problems +following this tutorial. +  ### Creating the Blog Application  Rails comes with a number of scripts called generators that are designed to make | 
