Firest of all, sorry for my poor english:-) These days, I tried Jruby with chinese. And I have a question:
Why don’t using UTF-8 for Ruby internal use, Especially with �CKu option? We can 1, Read ruby script file using the file’s encoding instead of read RAW data. 2, Strings first convert to java’s UTF16 when read from file and then convert to UTF8 bytes for RubyString 3. so, in Ruby Strings will be implement by bytes with encoding UTF8 Because UTF8 is compatible with ASCII, ruby script file write in English is OK. Is it right?