3 " Maintainer: Tim Pope <vimNOSPAM@tpope.info>
4 " Info: $Id: rspec.vim,v 1.3 2008/08/09 17:44:17 vimboss Exp $
5 " URL: http://vim-ruby.rubyforge.org
6 " Anon CVS: See above site
7 " Release Coordinator: Doug Kearns <dougkearns@gmail.com>
9 if exists("current_compiler")
12 let current_compiler = "rspec"
14 if exists(":CompilerSet") != 2 " older Vim always used :setlocal
15 command -nargs=* CompilerSet setlocal <args>
21 CompilerSet makeprg=spec
23 CompilerSet errorformat=
27 \%-C\ \ \ \ \ got:%.%#,
28 \%E%.%#:in\ `load':\ %f:%l:%m,
30 \%W%f:%l:\ warning:\ %m,
31 \%E%f:%l:in\ %*[^:]:\ %m,
41 " vim: nowrap sw=2 sts=2 ts=8: