aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAditya Kapoor <aditya.kapoor@vinsol.com>2014-06-11 01:45:55 +0530
committerAditya Kapoor <aditya.kapoor@vinsol.com>2014-06-11 01:45:55 +0530
commitf651d352eb847a7e19d11fd9c4bc0cb5605aae60 (patch)
treea4c769084b2cdfa92897479ef5679e419d0446ad
parent3c60da761bb982a1044b7c55f8b80ae3cd2e7fb7 (diff)
downloadrails-f651d352eb847a7e19d11fd9c4bc0cb5605aae60.tar.gz
rails-f651d352eb847a7e19d11fd9c4bc0cb5605aae60.tar.bz2
rails-f651d352eb847a7e19d11fd9c4bc0cb5605aae60.zip
Correct Bundler link [ci skip]
-rw-r--r--guides/source/getting_started.md7
1 files changed, 3 insertions, 4 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index e088abc150..3122a3dacb 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -74,9 +74,8 @@ literally follow along step by step. You can get the complete code
[here](https://github.com/rails/docrails/tree/master/guides/code/getting_started).
By following along with this guide, you'll create a Rails project called
-`blog`, a
-(very) simple weblog. Before you can start building the application, you need to
-make sure that you have Rails itself installed.
+`blog`, a (very) simple weblog. Before you can start building the application,
+you need to make sure that you have Rails itself installed.
TIP: The examples below use `$` to represent your terminal prompt in a UNIX-like OS,
though it may have been customized to appear differently. If you are using Windows,
@@ -167,7 +166,7 @@ of the files and folders that Rails created by default:
|config/|Configure your application's routes, database, and more. This is covered in more detail in [Configuring Rails Applications](configuring.html).|
|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.|
-|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).|
+|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://bundler.io).|
|lib/|Extended modules for your application.|
|log/|Application log files.|
|public/|The only folder seen by the world as-is. Contains static files and compiled assets.|