aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source/getting_started.textile
diff options
context:
space:
mode:
authorMikel Lindsaar <raasdnil@gmail.com>2010-02-06 10:06:31 +1100
committerMikel Lindsaar <raasdnil@gmail.com>2010-02-06 10:06:31 +1100
commit2fb4bc31e24f83f1f813b7b80ff73520c191d752 (patch)
tree07fa6debedc25eb1fe6f47c7d7be5ad93cbb4522 /railties/guides/source/getting_started.textile
parentd1faa408e5c30eed80c810c4993ee761a81f2219 (diff)
parent8668bfc787b5e7d8e129e05d9612c1efc91dd6b8 (diff)
downloadrails-2fb4bc31e24f83f1f813b7b80ff73520c191d752.tar.gz
rails-2fb4bc31e24f83f1f813b7b80ff73520c191d752.tar.bz2
rails-2fb4bc31e24f83f1f813b7b80ff73520c191d752.zip
Merge branch 'master' of github.com:lifo/docrails
Diffstat (limited to 'railties/guides/source/getting_started.textile')
-rw-r--r--railties/guides/source/getting_started.textile4
1 files changed, 2 insertions, 2 deletions
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:
<shell>
-$ gem install bundle
-$ gem bundle
+$ gem install bundler
+$ bundle install
</shell>
This will copy down the latest versions of all the gems you need to start a rails application.