summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAchilleas Pipinellis <axilleas@axilleas.me>2017-05-03 16:16:32 +0000
committerAchilleas Pipinellis <axilleas@axilleas.me>2017-05-03 16:16:32 +0000
commit513a81ff9c67b2d62b58bf34544c76cd42cbd7b3 (patch)
tree0746f8b997f65097cce3847444e1aa6873971022
parent501cb18be38eca623f143721dd76871d86badf9c (diff)
parentba446b86b00f3493a446e4167f850b4f44c70805 (diff)
downloadgitlab-ce-513a81ff9c67b2d62b58bf34544c76cd42cbd7b3.tar.gz
Merge branch 'docs/31692-elaborate-on-spring-instructions' into 'master'
Elaborate on the usage of Spring See merge request !11058
-rw-r--r--doc/development/rake_tasks.md22
1 files changed, 16 insertions, 6 deletions
diff --git a/doc/development/rake_tasks.md b/doc/development/rake_tasks.md
index ec9e4dcc59d..fdaaa65fa28 100644
--- a/doc/development/rake_tasks.md
+++ b/doc/development/rake_tasks.md
@@ -31,16 +31,26 @@ files it can find, also the ones in `/tmp`
To run a single test file you can use:
-- `bundle exec rspec spec/controllers/commit_controller_spec.rb` for a rspec test
-- `bundle exec spinach features/project/issues/milestones.feature` for a spinach test
+- `bin/rspec spec/controllers/commit_controller_spec.rb` for a rspec test
+- `bin/spinach features/project/issues/milestones.feature` for a spinach test
To run several tests inside one directory:
-- `bundle exec rspec spec/requests/api/` for the rspec tests if you want to test API only
-- `bundle exec spinach features/profile/` for the spinach tests if you want to test only profile pages
+- `bin/rspec spec/requests/api/` for the rspec tests if you want to test API only
+- `bin/spinach features/profile/` for the spinach tests if you want to test only profile pages
-If you want to use [Spring](https://github.com/rails/spring) set
-`ENABLE_SPRING=1` in your environment.
+### Speed-up tests, rake tasks, and migrations
+
+[Spring](https://github.com/rails/spring) is a Rails application preloader. It
+speeds up development by keeping your application running in the background so
+you don't need to boot it every time you run a test, rake task or migration.
+
+If you want to use it, you'll need to export the `ENABLE_SPRING` environment
+variable to `1`:
+
+```
+export ENABLE_SPRING=1
+```
## Compile Frontend Assets