2005-09-25 22:20:24 +00:00
|
|
|
" Vim compiler file
|
2006-04-15 20:28:54 +00:00
|
|
|
" Language: Test::Unit - Ruby Unit Testing Framework
|
|
|
|
" Maintainer: Doug Kearns <dougkearns@gmail.com>
|
2013-06-12 21:29:15 +02:00
|
|
|
" URL: https://github.com/vim-ruby/vim-ruby
|
2006-04-15 20:28:54 +00:00
|
|
|
" Release Coordinator: Doug Kearns <dougkearns@gmail.com>
|
2019-01-17 16:07:22 +01:00
|
|
|
" Last Change: 2014 Mar 23
|
2024-04-04 22:00:58 +02:00
|
|
|
" 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
|
2005-09-25 22:20:24 +00:00
|
|
|
|
|
|
|
if exists("current_compiler")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let current_compiler = "rubyunit"
|
|
|
|
|
|
|
|
let s:cpo_save = &cpo
|
|
|
|
set cpo-=C
|
|
|
|
|
|
|
|
CompilerSet makeprg=testrb
|
2016-08-30 23:26:57 +02:00
|
|
|
" CompilerSet makeprg=ruby\ -Itest
|
|
|
|
" CompilerSet makeprg=m
|
2005-09-25 22:20:24 +00:00
|
|
|
|
|
|
|
CompilerSet errorformat=\%W\ %\\+%\\d%\\+)\ Failure:,
|
|
|
|
\%C%m\ [%f:%l]:,
|
2005-10-10 21:00:54 +00:00
|
|
|
\%E\ %\\+%\\d%\\+)\ Error:,
|
2005-09-25 22:20:24 +00:00
|
|
|
\%C%m:,
|
|
|
|
\%C\ \ \ \ %f:%l:%.%#,
|
|
|
|
\%C%m,
|
|
|
|
\%Z\ %#,
|
|
|
|
\%-G%.%#
|
|
|
|
|
|
|
|
let &cpo = s:cpo_save
|
|
|
|
unlet s:cpo_save
|
|
|
|
|
2008-06-24 22:58:06 +00:00
|
|
|
" vim: nowrap sw=2 sts=2 ts=8:
|