From 6999b36c1b76393e68b0b67540f34d18b37e7957 Mon Sep 17 00:00:00 2001 From: Vijay Dev Date: Sat, 26 May 2012 17:45:58 +0530 Subject: [PATCH] make it explicit that bundle install at the time of app creation installs only the gems that are already in the gemfile [ci skip] --- guides/source/getting_started.textile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/getting_started.textile b/guides/source/getting_started.textile index 6ba70fa58e..342e7284b0 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 -This will create a Rails application called Blog in a directory called blog and install the gem dependencies specified in +Gemfile+ using +bundle install+. +This will create a Rails application called Blog in a directory called blog and install the gem dependencies that are already mentioned 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+. -- GitLab