| 
									
										
										
										
											2008-07-13 17:41:49 +00:00
										 |  |  | " Vim compiler file | 
					
						
							|  |  |  | " Language:		RSpec | 
					
						
							| 
									
										
										
										
											2010-05-28 20:54:39 +02:00
										 |  |  | " Maintainer:		Tim Pope <vimNOSPAM@tpope.org> | 
					
						
							| 
									
										
										
										
											2013-06-12 21:29:15 +02:00
										 |  |  | " URL:			https://github.com/vim-ruby/vim-ruby | 
					
						
							| 
									
										
										
										
											2008-07-13 17:41:49 +00:00
										 |  |  | " Release Coordinator:	Doug Kearns <dougkearns@gmail.com> | 
					
						
							| 
									
										
										
										
											2019-01-17 16:07:22 +01:00
										 |  |  | " Last Change:		2018 Aug 07 | 
					
						
							| 
									
										
										
										
											2024-04-04 22:00:58 +02:00
										 |  |  | "			2024 Apr 03 by The Vim Project (removed :CompilerSet definition) | 
					
						
							| 
									
										
										
										
											2008-07-13 17:41:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | if exists("current_compiler") | 
					
						
							|  |  |  |   finish | 
					
						
							|  |  |  | endif | 
					
						
							|  |  |  | let current_compiler = "rspec" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | let s:cpo_save = &cpo | 
					
						
							|  |  |  | set cpo-=C | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-06-12 21:29:15 +02:00
										 |  |  | CompilerSet makeprg=rspec | 
					
						
							| 
									
										
										
										
											2008-07-13 17:41:49 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | CompilerSet errorformat= | 
					
						
							| 
									
										
										
										
											2013-06-12 21:29:15 +02:00
										 |  |  |     \%f:%l:\ %tarning:\ %m, | 
					
						
							| 
									
										
										
										
											2008-07-13 17:41:49 +00:00
										 |  |  |     \%E%.%#:in\ `load':\ %f:%l:%m, | 
					
						
							| 
									
										
										
										
											2013-06-12 21:29:15 +02:00
										 |  |  |     \%E%f:%l:in\ `%*[^']':\ %m, | 
					
						
							| 
									
										
										
										
											2016-08-30 23:26:57 +02:00
										 |  |  |     \%-Z\ \ \ \ \ %\\+\#\ %f:%l:%.%#, | 
					
						
							| 
									
										
										
										
											2019-01-17 16:07:22 +01:00
										 |  |  |     \%E\ \ \ \ \ Failure/Error:\ %m, | 
					
						
							|  |  |  |     \%E\ \ \ \ \ Failure/Error:, | 
					
						
							| 
									
										
										
										
											2013-06-12 21:29:15 +02:00
										 |  |  |     \%C\ \ \ \ \ %m, | 
					
						
							| 
									
										
										
										
											2016-08-30 23:26:57 +02:00
										 |  |  |     \%C%\\s%#, | 
					
						
							| 
									
										
										
										
											2008-07-13 17:41:49 +00:00
										 |  |  |     \%-G%.%# | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | let &cpo = s:cpo_save | 
					
						
							|  |  |  | unlet s:cpo_save | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | " vim: nowrap sw=2 sts=2 ts=8: |