aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-05-26 17:45:58 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-05-26 17:46:05 +0530
commit6999b36c1b76393e68b0b67540f34d18b37e7957 (patch)
treefeb87d34de66dc53147602fffe81d35e541a78c0 /guides
parent9122143767b419c3be6b8ec86fd9b90ba7c39fe6 (diff)
downloadrails-6999b36c1b76393e68b0b67540f34d18b37e7957.tar.gz
rails-6999b36c1b76393e68b0b67540f34d18b37e7957.tar.bz2
rails-6999b36c1b76393e68b0b67540f34d18b37e7957.zip
make it explicit that bundle install at the time of app creation
installs only the gems that are already in the gemfile [ci skip]
Diffstat (limited to 'guides')
-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 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
</shell>
-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+.