oops, doc bug

This commit is contained in:
John Bintz 2011-11-24 10:54:51 -05:00
parent 18bcfe36ec
commit e4b3335cba

View File

@ -229,12 +229,12 @@ src_dir:
_Technically, `spec_dir` is in your asset path, too, but Jasmine's typical behavior of including `helpers` before `spec_dir` should _Technically, `spec_dir` is in your asset path, too, but Jasmine's typical behavior of including `helpers` before `spec_dir` should
give you all the include power you need for defining specs._ give you all the include power you need for defining specs._
In order for Sprockets support to work as intended, you should define your `src_paths` and `spec_paths` as such: In order for Sprockets support to work as intended, you should define your `src_files` and `spec_files` as such:
{% highlight yaml %} {% highlight yaml %}
src_paths: src_files:
- "**/*.*" - "**/*.*"
spec_paths: spec_files:
- "**/*[Ss]pec.*" - "**/*[Ss]pec.*"
{% endhighlight %} {% endhighlight %}