aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Magana <raf.magana@gmail.com>2012-05-25 11:01:03 -0500
committerRafael Magana <raf.magana@gmail.com>2012-05-25 11:01:03 -0500
commit470c1516b384f0ae710cdcf4f5a83a81f909252c (patch)
tree2d3715b937896010a8b4353f0df56ed849f4c939
parentb98a343da5b9fd6a6ffa7eeac42c141f5b64e961 (diff)
downloadrails-470c1516b384f0ae710cdcf4f5a83a81f909252c.tar.gz
rails-470c1516b384f0ae710cdcf4f5a83a81f909252c.tar.bz2
rails-470c1516b384f0ae710cdcf4f5a83a81f909252c.zip
[getting started] specify that rails new blog executes bundle install
-rw-r--r--guides/source/getting_started.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.textile b/guides/source/getting_started.textile
index 1979d87a06..628010697f 100644
--- a/guides/source/getting_started.textile
+++ b/guides/source/getting_started.textile
@@ -108,7 +108,7 @@ To use this generator, open a terminal, navigate to a directory where you have r
$ rails new blog
</shell>
-This will create a Rails application called Blog in a directory called blog.
+This will create a Rails application called Blog in a directory called blog and install the gem dependencies specified in +Gemfile+ using +bundle install+.
TIP: You can see all of the command line options that the Rails
application builder accepts by running +rails new -h+.