Closed alexgenco closed 10 years ago
This is failing because travis is using RSpec 3. I'm guessing RSpec 3 was released after the last time ci was run. https://github.com/AndrewRadev/vimrunner/pull/35 should fix it then.
I don't know what I was thinking with that one :). Good catch, thanks. I'll check the travis build after the merge.
Process.kill(0, @pid) rescue Errno::ESRCH
will rescue all exceptions (and then return the class Errno::ESRCH). You need a multiline begin-rescue-end to rescue only a particular exception.