aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-29 19:45:29 -0200
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-01-29 19:45:29 -0200
commitf29cb2010d1f5daaf46f67a86c3a7e449a0d2213 (patch)
tree5b38eecc1e42d0fb67ee02626719bda25a0f5c29 /guides/source
parent50318f5d7e0e829b835115190a495ffade4fc8ab (diff)
parent552e9e2299286c97cfa3568cea69e7decd2ff848 (diff)
downloadrails-f29cb2010d1f5daaf46f67a86c3a7e449a0d2213.tar.gz
rails-f29cb2010d1f5daaf46f67a86c3a7e449a0d2213.tar.bz2
rails-f29cb2010d1f5daaf46f67a86c3a7e449a0d2213.zip
Merge pull request #18732 from BMorearty/document-bundle-update
Doc: run bundle update after cloning Rails.
Diffstat (limited to 'guides/source')
-rw-r--r--guides/source/contributing_to_ruby_on_rails.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/guides/source/contributing_to_ruby_on_rails.md b/guides/source/contributing_to_ruby_on_rails.md
index 7381521658..e06706d750 100644
--- a/guides/source/contributing_to_ruby_on_rails.md
+++ b/guides/source/contributing_to_ruby_on_rails.md
@@ -173,6 +173,14 @@ $ git checkout -b my_new_branch
It doesn't matter much what name you use, because this branch will only exist on your local computer and your personal repository on GitHub. It won't be part of the Rails Git repository.
+### Bundle Update
+
+Update and install the required gems.
+
+```bash
+$ bundle update
+```
+
### Running an Application Against Your Local Branch
In case you need a dummy Rails app to test changes, the `--dev` flag of `rails new` generates an application that uses your local branch: