summaryrefslogtreecommitdiff
path: root/autoload/ale/handlers/ruby.vim
diff options
context:
space:
mode:
Diffstat (limited to 'autoload/ale/handlers/ruby.vim')
-rw-r--r--autoload/ale/handlers/ruby.vim8
1 files changed, 0 insertions, 8 deletions
diff --git a/autoload/ale/handlers/ruby.vim b/autoload/ale/handlers/ruby.vim
index c28b8b75..7a1c5765 100644
--- a/autoload/ale/handlers/ruby.vim
+++ b/autoload/ale/handlers/ruby.vim
@@ -36,11 +36,3 @@ endfunction
function! ale#handlers#ruby#HandleSyntaxErrors(buffer, lines) abort
return s:HandleSyntaxError(a:buffer, a:lines)
endfunction
-
-function! ale#handlers#ruby#EscapeExecutable(executable, bundle_exec) abort
- let l:exec_args = a:executable =~? 'bundle'
- \ ? ' exec ' . a:bundle_exec
- \ : ''
-
- return ale#Escape(a:executable) . l:exec_args
-endfunction