aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuillermo Iguaran <guilleiguaran@gmail.com>2013-08-18 15:11:25 -0700
committerGuillermo Iguaran <guilleiguaran@gmail.com>2013-08-18 15:11:25 -0700
commitd1b618b50a8af8c10a3a54352f880f9f48351357 (patch)
treed1fd9abd899e79889cae19a85d887f43ac52f012
parent7193f750ffe0276a16b3703f4cf05e7b36e7df7b (diff)
parent7889e3da6c3f41ecff7dc6075a6fce9c597d56be (diff)
downloadrails-d1b618b50a8af8c10a3a54352f880f9f48351357.tar.gz
rails-d1b618b50a8af8c10a3a54352f880f9f48351357.tar.bz2
rails-d1b618b50a8af8c10a3a54352f880f9f48351357.zip
Merge pull request #11914 from pawel2105/development-dependencies-guides-fix
Memcached note for Rails guides [ci skip]
-rw-r--r--guides/source/development_dependencies_install.md24
1 files changed, 23 insertions, 1 deletions
diff --git a/guides/source/development_dependencies_install.md b/guides/source/development_dependencies_install.md
index 034fef71c8..7e61c78ed9 100644
--- a/guides/source/development_dependencies_install.md
+++ b/guides/source/development_dependencies_install.md
@@ -116,7 +116,29 @@ and run:
$ bundle install --without db
```
-This command will install all dependencies except the MySQL and PostgreSQL Ruby drivers. We will come back to these soon. With dependencies installed, you can run the test suite with:
+This command will install all dependencies except the MySQL and PostgreSQL Ruby drivers. We will come back to these soon.
+
+NOTE: If you would like to run the tests that use memcached, you need to ensure that you have it installed and running.
+
+You can use homebrew to install memcached on OSX:
+
+```bash
+$ brew install memcached
+```
+
+On Ubuntu you can install it with apt-get:
+
+```bash
+$ sudo apt-get install memcached
+```
+
+Or use yum on Fedora or CentOS:
+
+```bash
+$ sudo yum install memcached
+```
+
+With the dependencies now installed, you can run the test suite with:
```bash
$ bundle exec rake test