diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile index c173748944..d7c9d39fd3 100644 --- a/railties/guides/source/getting_started.textile +++ b/railties/guides/source/getting_started.textile @@ -187,8 +187,8 @@ h4. Installing the Required Gems Rails uses the _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: -$ gem install bundle -$ gem bundle +$ gem install bundler +$ bundle install This will copy down the latest versions of all the gems you need to start a rails application.