我在mac os 10.7.5上使用rvm和ruby 1.9.3。
我希望能够使用Sublime Text 2 Rubytest包来验证我的Ruby语法。
但是,当我试图在任何ruby文件(Tools -> RubyTest -> Verify Ruby Syntax下面)上运行test.rb时,rubytest控制台中会出现以下错误:
/users/jladieu/.rvm/rubies/ruby-1.9.3-p194/bin/ruby:1:无效的多字节字符(US-ASCII)
我的test.rb文件内容非常简单:

class Test
  def hello
    puts "Hello world"
  end
end

我的RubyTest.sublime_settings文件如下:
{
  "erb_verify_command": "erb -xT - {file_name} | ruby -c",
  "ruby_verify_command": "ruby -c {file_name}",

  "run_ruby_unit_command": "bundle exec ruby -Itest {relative_path}",
  "run_single_ruby_unit_command": "bundle exec ruby -Itest {relative_path} -n '{test_name}'",

  "run_cucumber_command": "zeus cucumber {relative_path} --no-color",
  "run_single_cucumber_command": "zeus cucumber {relative_path}:{line_number} --no-color",

  "run_rspec_command": "zeus rspec {relative_path}",
  "run_single_rspec_command": "zeus rspec {relative_path}:{line_number}",

  "ruby_unit_folder": "test",
  "ruby_cucumber_folder": "features",
  "ruby_rspec_folder": "spec",

  "check_for_rbenv": false,
  "check_for_rvm": true,

  "ruby_use_scratch" : false,
  "save_on_run": true,
  "ignored_directories": [".git", "vendor", "tmp"],

  "hide_panel": false,

  "before_callback": "",
  "after_callback": ""
}

在命令行运行以下命令可以验证我的语法:
$ ruby -c test.rb
  Syntax OK

最后,我尝试了许多方法来解决us-ascii问题,但都没有成功:
在rubytest设置中将-ku标志添加到verify命令
export RUBYOPT=-Ku在My.bash_profile中打开Sublime之前
export LC_CTYPE=en_US.UTF-8 LANG=en_US.UTF-8在打开Sublime之前
有没有人能用类似的设置让它工作?
注意:找到一个答案(见下文),但如果有人发现更好的解决方案感兴趣,谢谢!

最佳答案

在亚伦和托马斯反馈的基础上进一步研究,将ruby_verify_commandruby -c {file_name}改为仅-c {file_name}有效。
原因是使用check_for_rvm: true会导致运行的命令是:

$ /Users/jladieu/.rvm/bin/rvm-auto-ruby ruby -c test.rb
/Users/jladieu/.rvm/rubies/ruby-1.9.3-p194/bin/ruby:1: invalid multibyte char (US-ASCII)

ruby_verify_command设置为正确省略ruby将导致运行以下命令:
$ /Users/jladieu/.rvm/bin/rvm-auto-ruby -S -c test.rb
Syntax OK

10-08 05:13