diff options
author | Corey Ward <coreyward@me.com> | 2011-02-12 08:12:24 -0800 |
---|---|---|
committer | Corey Ward <coreyward@me.com> | 2011-02-12 08:12:24 -0800 |
commit | 0d40e2c397c9ce92c839a3c318ed8757cf213413 (patch) | |
tree | 30b4852e9c5c8780b3bf9461c5ac03597f1b3864 | |
parent | 46ebbcd56b16734fa6ba6f81138827918976a9d5 (diff) | |
download | rails-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.
-rw-r--r-- | railties/guides/source/getting_started.textile | 1 |
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> |