我在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_command
从ruby -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