Merge pull request #538 from joshuarh/simplify-ruby-checker

remove unused function (because of 2519d83)
This commit is contained in:
Martin Grenfell 2013-03-08 06:50:24 -08:00
commit eef491c5ac

View File

@ -15,12 +15,8 @@ if exists("g:loaded_syntastic_ruby_mri_checker")
endif
let g:loaded_syntastic_ruby_mri_checker=1
function! s:FindRubyExec()
return "ruby"
endfunction
if !exists("g:syntastic_ruby_exec")
let g:syntastic_ruby_exec = s:FindRubyExec()
let g:syntastic_ruby_exec = "ruby"
endif
function! SyntaxCheckers_ruby_mri_IsAvailable()