aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Morearty <brian@morearty.org>2015-01-29 13:34:44 -0800
committerBrian Morearty <brian@morearty.org>2015-01-29 13:34:44 -0800
commit552e9e2299286c97cfa3568cea69e7decd2ff848 (patch)
tree40ce54654df1a43076e2a4f27962a6a7fa579afb
parent6296c09e5b915c522c4127844c623afb44c62e1a (diff)
downloadrails-552e9e2299286c97cfa3568cea69e7decd2ff848.tar.gz
rails-552e9e2299286c97cfa3568cea69e7decd2ff848.tar.bz2
rails-552e9e2299286c97cfa3568cea69e7decd2ff848.zip
Doc: run bundle update after cloning Rails.
-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: