简体   繁体   中英

How to run ruby files in sublime-text-2

When i press ctrl+b to run simple code such as:

puts "asdasd"

the result is blank field. Ruby path is /home/yukke/.rvm/rubies/default/bin/ruby and ruby -v => ruby 1.9.3p194 (2012-04-20 revision 35410) [x86_64-linux].

so I tried to change Ruby.sublime-build to

{
    "cmd": ["/home/yukke/.rvm/rubies/default/bin/ruby", "-u","$file"],
    "file_regex": "^(...*?):([0-9]*):?([0-9]*)",
    "selector": "source.ruby"
}

But it didn't change anything. Please help me to fix this problem.

试试这个,取出“-u”,并使用rvm

"cmd": ["/home/yukke/.rvm/bin/rvm-auto-ruby", "$file"]

You need to save the file before it will work. It's not nearly as nice as TextMate's Command R , and doesn't work in the same way, if that was what you were expecting.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM