diff options
author | Ryan Bigg <radarlistener@gmail.com> | 2012-03-14 11:32:50 -0700 |
---|---|---|
committer | Ryan Bigg <radarlistener@gmail.com> | 2012-03-14 11:34:37 -0700 |
commit | 5cbdd0f667f9c6f078a01f4319bb97186c70fda7 (patch) | |
tree | b2f09c985f9bcafd8d5975d708dc126a2dea4e02 /railties/guides | |
parent | 2f06c94e38a116fdfa43d7b7117e6bf911a0bff5 (diff) | |
download | rails-5cbdd0f667f9c6f078a01f4319bb97186c70fda7.tar.gz rails-5cbdd0f667f9c6f078a01f4319bb97186c70fda7.tar.bz2 rails-5cbdd0f667f9c6f078a01f4319bb97186c70fda7.zip |
[getting started] *THE* way to install Rails is by running +gem install+. You should not run this as the root user.
Diffstat (limited to 'railties/guides')
-rw-r--r-- | railties/guides/source/getting_started.textile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index 0fce4beae0..29c9e8dde1 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -81,10 +81,9 @@ TIP: The examples below use # and $ to denote terminal prompts. If you are using h4. Installing Rails -In most cases, the easiest way to install Rails is to take advantage of RubyGems: +To install Rails, use the +gem install+ command provided by RubyGems: <shell> -Usually run this as the root user: # gem install rails </shell> |