我尝试了不同的设置,例如:
{
"cmd": "rubocop '$file_name'"
}
我也试过设置路径等:
{
"cmd": "rubocop '$file_name'",
"path": "~/.rvm/bin",
"selector": "source.rb",
"working_dir":"$project_path"
}
对于这两个我收到的错误信息是:
[Errno 2] No such file or directory
[cmd: rubocop 'configurer.rb']
[dir: /home/rafal/Documents/Projects/configurer]
[path: /usr/lib/lightdm/lightdm:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games]
[Finished]
和
[Errno 2] No such file or directory
[cmd: rubocop 'configurer.rb']
[dir: /home/rafal/Documents/Projects/configurer]
[path: ~/.rvm/bin]
[Finished]
分别。我已经按照我在网上找到的一些教程以及StackOverflow的一些答案但没有运气。有关为什么会发生这种情况的任何想法?在当前打开的文件上运行Ruby Gem的正确和有效方法是什么?宝石Rubocop肯定已安装。
答案 0 :(得分:4)
我使用
在SublimeText2上进行自定义构建{
"env": {
"PATH":"${HOME}/.rvm/bin:${PATH}"
},
"cmd": ["rvm-auto-ruby", "-S", "bundle", "exec", "rubocop -n ${file}" ],
"selector": "source.ruby"
}
请注意,rubocop的-n
选项在repo中是introduced 5 days ago(在0.6.1版本之后),所以如果你不使用{的rubocop,它可能不起作用{3}}。在0.6.2发布之前,它会在输出中显示奇怪的字符,但至少它会起作用。