aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source
diff options
context:
space:
mode:
authorCorey Ward <coreyward@me.com>2011-02-12 08:12:24 -0800
committerCorey Ward <coreyward@me.com>2011-02-12 08:12:24 -0800
commit0d40e2c397c9ce92c839a3c318ed8757cf213413 (patch)
tree30b4852e9c5c8780b3bf9461c5ac03597f1b3864 /railties/guides/source
parent46ebbcd56b16734fa6ba6f81138827918976a9d5 (diff)
downloadrails-0d40e2c397c9ce92c839a3c318ed8757cf213413.tar.gz
rails-0d40e2c397c9ce92c839a3c318ed8757cf213413.tar.bz2
rails-0d40e2c397c9ce92c839a3c318ed8757cf213413.zip
Add note about running `bundle install` as root. Solves issue with '#' not being rendered, and it's more clear for beginners.
Diffstat (limited to 'railties/guides/source')
-rw-r--r--railties/guides/source/getting_started.textile1
1 files changed, 1 insertions, 0 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index 52e398a497..bf45c48547 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -195,6 +195,7 @@ h4. Installing the Required Gems
Rails applications manage gem dependencies with "Bundler":http://gembundler.com/v1.0/index.html by default. As we don't need any other gems beyond the ones in the generated +Gemfile+ we can directly run
<shell>
+Usually as root user:
# bundle install
</shell>