syntastic/syntax_checkers/ruby
Richard Brown 6c80fa9d59 ruby/mri: ignore efm lines that start ...
If the line a ruby error occurs on is 'too long' it will truncate the line it
displays in the error output and wrap it in `...`. This breaks %p from finding
the correct column so this patch ignores lines starting with `...`

e.g. %p working

```
ruby -w -T1 -c broken.rb
broken.rb:2: syntax error, unexpected tIDENTIFIER, expecting $end
puts sprintf "%d, %.2f, %.2f, %.2f, %d" k, v
                                         ^
```

%p not working
```
ruby -w -T1 -c broken.rb
broken.rb:2: syntax error, unexpected tIDENTIFIER, expecting $end
...tf "%d, %.2f, %.2f, %.2f, %d" k, v[:cost], v[:val], v[:carri...
...                               ^
```
2012-09-25 15:23:47 +01:00
..
jruby.vim Adds jruby errorformat 2012-07-04 22:17:05 +02:00
macruby.vim Added MacRuby/RubyMotion syntax checker. 2012-05-09 14:12:15 +02:00
mri.vim ruby/mri: ignore efm lines that start ... 2012-09-25 15:23:47 +01:00