1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

getting started guide: revises text wrt bundler

This commit is contained in:
Xavier Noria 2010-08-26 15:58:19 +02:00
parent 5e0b70e6b5
commit d728f08580

View file

@ -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