aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2010-08-26 15:58:19 +0200
committerXavier Noria <fxn@hashref.com>2010-08-26 15:58:19 +0200
commitd728f0858014cf284f501f169f13d8cd1da36ab7 (patch)
tree3b22e89805fd1701a9ae8dd0a3d622d334625201 /railties/guides
parent5e0b70e6b59894d186771736c623aa72466d4322 (diff)
downloadrails-d728f0858014cf284f501f169f13d8cd1da36ab7.tar.gz
rails-d728f0858014cf284f501f169f13d8cd1da36ab7.tar.bz2
rails-d728f0858014cf284f501f169f13d8cd1da36ab7.zip
getting started guide: revises text wrt bundler
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/getting_started.textile8
1 files changed, 3 insertions, 5 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index 97a5718086..d9525539ab 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -194,15 +194,13 @@ In any case, Rails will create a folder in your working directory called <tt>blo
h4. Installing the Required Gems
-Rails uses the "Bundler":http://www.github.com/carlhuda/bundler gem to populate the +vendor+ directory with all the gems your application depends on. As we don't need any special gems beyond the default, we just need to do the following:
+Rails applications manage gem dependencies with "Bundler":http://www.github.com/carlhuda/bundler by default. As we don't need any other gems beyond the ones in the generated +Gemfile+ we can directly run
<shell>
-As the root user:
-# gem install bundler
-# bundle install
+bundle install
</shell>
-This will copy down the versions of all the gems you need to start a rails application.
+to have them ready.
h4. Configuring a Database