aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/command_line.md
diff options
context:
space:
mode:
authorPrathamesh Sonpatki <csonpatki@gmail.com>2013-04-03 20:44:35 +0530
committerPrathamesh Sonpatki <csonpatki@gmail.com>2013-04-03 22:48:09 +0530
commita4bd64ffeda0ffe2839030044eca762835be7901 (patch)
tree0d0cf7ffba5ceaf8b9969a09a6b2778942bee3ba /guides/source/command_line.md
parentbf8f9c8ee28af808902c8e3da73ccb8d8fbb4cf1 (diff)
downloadrails-a4bd64ffeda0ffe2839030044eca762835be7901.tar.gz
rails-a4bd64ffeda0ffe2839030044eca762835be7901.tar.bz2
rails-a4bd64ffeda0ffe2839030044eca762835be7901.zip
Changed rspec/model directory example to spec/models
Diffstat (limited to 'guides/source/command_line.md')
-rw-r--r--guides/source/command_line.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/command_line.md b/guides/source/command_line.md
index 4711186522..7b7f5963fd 100644
--- a/guides/source/command_line.md
+++ b/guides/source/command_line.md
@@ -445,12 +445,12 @@ NOTE. When using specific annotations and custom annotations, the annotation nam
By default, `rake notes` will look in the `app`, `config`, `lib`, `bin` and `test` directories. If you would like to search other directories, you can provide them as a comma separated list in an environment variable `SOURCE_ANNOTATION_DIRECTORIES`.
```bash
-$ export SOURCE_ANNOTATION_DIRECTORIES='rspec,vendor'
+$ export SOURCE_ANNOTATION_DIRECTORIES='spec,vendor'
$ rake notes
(in /home/foobar/commandsapp)
app/models/user.rb:
* [ 35] [FIXME] User should have a subscription at this point
-rspec/model/user_spec.rb:
+spec/models/user_spec.rb:
* [122] [TODO] Verify the user that has a subscription works
```