blob: e59873fa21d27b8f3a4c733cbec0e50d9024b127 [file] [log] [blame]
Bram Moolenaar4463f292005-09-25 22:20:24 +00001" Vim compiler file
Bram Moolenaar99ebf042006-04-15 20:28:54 +00002" Language: Test::Unit - Ruby Unit Testing Framework
3" Maintainer: Doug Kearns <dougkearns@gmail.com>
Bram Moolenaarec7944a2013-06-12 21:29:15 +02004" URL: https://github.com/vim-ruby/vim-ruby
Bram Moolenaar99ebf042006-04-15 20:28:54 +00005" Release Coordinator: Doug Kearns <dougkearns@gmail.com>
Bram Moolenaard09091d2019-01-17 16:07:22 +01006" Last Change: 2014 Mar 23
Doug Kearns408281e2024-04-04 22:00:58 +02007" 2024 Apr 03 by The Vim Project (removed :CompilerSet definition)
Bram Moolenaar4463f292005-09-25 22:20:24 +00008
9if exists("current_compiler")
10 finish
11endif
12let current_compiler = "rubyunit"
13
Bram Moolenaar4463f292005-09-25 22:20:24 +000014let s:cpo_save = &cpo
15set cpo-=C
16
17CompilerSet makeprg=testrb
Bram Moolenaar89bcfda2016-08-30 23:26:57 +020018" CompilerSet makeprg=ruby\ -Itest
19" CompilerSet makeprg=m
Bram Moolenaar4463f292005-09-25 22:20:24 +000020
21CompilerSet errorformat=\%W\ %\\+%\\d%\\+)\ Failure:,
22 \%C%m\ [%f:%l]:,
Bram Moolenaara5fb28b2005-10-10 21:00:54 +000023 \%E\ %\\+%\\d%\\+)\ Error:,
Bram Moolenaar4463f292005-09-25 22:20:24 +000024 \%C%m:,
25 \%C\ \ \ \ %f:%l:%.%#,
26 \%C%m,
27 \%Z\ %#,
28 \%-G%.%#
29
30let &cpo = s:cpo_save
31unlet s:cpo_save
32
Bram Moolenaar8c8de832008-06-24 22:58:06 +000033" vim: nowrap sw=2 sts=2 ts=8: