aboutsummaryrefslogtreecommitdiffstats
path: root/railties/guides
diff options
context:
space:
mode:
authorRyan Bigg <radarlistener@gmail.com>2012-03-14 12:02:52 -0700
committerRyan Bigg <radarlistener@gmail.com>2012-03-14 12:02:52 -0700
commitc71b9612c0dde4146bee86679e6319a913c24834 (patch)
treee25931f8766b2bef05ef5e315ed79be2911c4431 /railties/guides
parent4c1861f427f47d95203e7796bca655bceaf63df0 (diff)
downloadrails-c71b9612c0dde4146bee86679e6319a913c24834.tar.gz
rails-c71b9612c0dde4146bee86679e6319a913c24834.tar.bz2
rails-c71b9612c0dde4146bee86679e6319a913c24834.zip
[getting started] Link to Bundler website when explaining Gemfile[.lock]
Diffstat (limited to 'railties/guides')
-rw-r--r--railties/guides/source/getting_started.textile2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/guides/source/getting_started.textile b/railties/guides/source/getting_started.textile
index baf14b4f5d..39e7a387ac 100644
--- a/railties/guides/source/getting_started.textile
+++ b/railties/guides/source/getting_started.textile
@@ -125,7 +125,7 @@ The +rails new blog+ command we ran above created a folder in your working direc
|config.ru|Rack configuration for Rack based servers used to start the application.|
|db/|Contains your current database schema, as well as the database migrations.|
|doc/|In-depth documentation for your application.|
-|Gemfile<BR />Gemfile.lock|These files allow you to specify what gem dependencies are needed for your Rails application.|
+|Gemfile<BR />Gemfile.lock|These files allow you to specify what gem dependencies are needed for your Rails application. These files are used by the Bundler gem. For more information about Bundler, see "the Bundler website":http://gembundler.com |
|lib/|Extended modules for your application.|
|log/|Application log files.|
|public/|The only folder seen to the world as-is. Contains the static files and compiled assets.|