aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides/source
diff options
context:
space:
mode:
authorJames Miller <james@jkmillertech.com>2010-02-05 09:03:23 -0800
committerJames Miller <james@jkmillertech.com>2010-02-05 09:03:23 -0800
commit4f43c3c3ed283d0e32df5c0951ec09102c1b2f8b (patch)
tree85e81e81df3cfa97fe2807fb6e85121e6dcd2390 /railties/guides/source
parent6b540cef950699623dc1a7c69cf621a27c972475 (diff)
downloadrails-4f43c3c3ed283d0e32df5c0951ec09102c1b2f8b.tar.gz
rails-4f43c3c3ed283d0e32df5c0951ec09102c1b2f8b.tar.bz2
rails-4f43c3c3ed283d0e32df5c0951ec09102c1b2f8b.zip
Correct command for installing/running bundler
Diffstat (limited to 'railties/guides/source')
-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.