aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-08-06 22:40:16 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-08-06 22:40:16 -0300
commitdcc478352219d778b9416f189bcad4a2f7f96cca (patch)
treefbceabdd913a6aeaccef3a12cb2a81e96fe957a1 /guides
parent8d897e5d949381b25ed1b2b8a66025c54b40cb7d (diff)
parentc7375fd1625d592b2c342c8bc6092bc49d922f91 (diff)
downloadrails-dcc478352219d778b9416f189bcad4a2f7f96cca.tar.gz
rails-dcc478352219d778b9416f189bcad4a2f7f96cca.tar.bz2
rails-dcc478352219d778b9416f189bcad4a2f7f96cca.zip
Merge pull request #20972 from vngrs/bin_update
Added bin/update script to update application automatically
Diffstat (limited to 'guides')
-rw-r--r--guides/source/getting_started.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/getting_started.md b/guides/source/getting_started.md
index dbbedc49ab..d51a27812a 100644
--- a/guides/source/getting_started.md
+++ b/guides/source/getting_started.md
@@ -166,7 +166,7 @@ of the files and folders that Rails created by default:
| File/Folder | Purpose |
| ----------- | ------- |
|app/|Contains the controllers, models, views, helpers, mailers and assets for your application. You'll focus on this folder for the remainder of this guide.|
-|bin/|Contains the rails script that starts your app and can contain other scripts you use to setup, deploy or run your application.|
+|bin/|Contains the rails script that starts your app and can contain other scripts you use to setup, update, deploy or run your application.|
|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.|