diff options
author | Zachary Scott <e@zzak.io> | 2014-06-10 13:26:50 -0700 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-06-10 13:26:50 -0700 |
commit | 042f185ccb6fbd9bc7503d7104623ce34e4d6751 (patch) | |
tree | a4c769084b2cdfa92897479ef5679e419d0446ad /guides | |
parent | 3c60da761bb982a1044b7c55f8b80ae3cd2e7fb7 (diff) | |
parent | f651d352eb847a7e19d11fd9c4bc0cb5605aae60 (diff) | |
download | rails-042f185ccb6fbd9bc7503d7104623ce34e4d6751.tar.gz rails-042f185ccb6fbd9bc7503d7104623ce34e4d6751.tar.bz2 rails-042f185ccb6fbd9bc7503d7104623ce34e4d6751.zip |
Merge pull request #15620 from aditya-kapoor/correct-bundler-link
Correct Bundler link [ci skip]
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/getting_started.md | 7 |
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.| |