It seems that it doesn't have unicode support... Since there's a plethora of non ASCII writers support unicode would be great. ## Example In the puzzle [Greet Me](http://www.codewars.com/kata/535474308bb336c9980006f2/train/ruby) I want to test the solution: ``` def greet(name) #return "Hello " + name.capitalize + "!" letters = name.split('') letters.first.upcase! letters.join end ``` With the testing cases: ``` Test.assert_equals(greet('ríley'), 'Hello Ríley!') Test.assert_equals(greet('ümlaut'), 'Hello Ümlaut!') ``` but I got `-e:14: invalid multibyte char (US-ASCII) -e:14: invalid multibyte char (US-ASCII) -e:14: syntax error, unexpected end-of-input, expecting ')' Test.assert_equals(greet('ríley'), 'Hello Ríley!')` Have a nice day!
It seems that it doesn't have unicode support... Since there's a plethora of non ASCII writers support unicode would be great.
Example
In the puzzle Greet Me
I want to test the solution:
With the testing cases:
but I got
-e:14: invalid multibyte char (US-ASCII) -e:14: invalid multibyte char (US-ASCII) -e:14: syntax error, unexpected end-of-input, expecting ')' Test.assert_equals(greet('ríley'), 'Hello Ríley!')Have a nice day!