We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d3c5c80 + bdc992e commit 869e257Copy full SHA for 869e257
1 file changed
linter.py
@@ -29,7 +29,6 @@ class Rubocop(RubyLinter):
29
'ruby'
30
)
31
cmd = None
32
- executable = 'ruby'
33
version_args = '-S rubocop --version'
34
version_re = r'(?P<version>\d+\.\d+\.\d+)'
35
version_requirement = '>= 0.34.0'
@@ -45,8 +44,6 @@ def cmd(self):
45
44
settings = self.get_view_settings()
46
47
command = ['ruby', '-S']
48
- if self.executable_path:
49
- command = self.executable_path + ['-S']
50
51
if settings.get('use_bundle_exec', False):
52
command.extend(['bundle', 'exec'])
0 commit comments