1
0
Fork 0
mirror of https://github.com/vim/vim synced 2025-03-22 17:55:10 +01:00
vim/runtime/compiler/rubyunit.vim

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
775 B
VimL
Raw Normal View History

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 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
" 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: