mylist.sort
should work out of the box in Ruby 1.9 (which has built-in unicode support). In Ruby 1.8, where Unicode support isn't built in, I think you'd have to use the character-encodings
gem extend the String class with UTF-8 string comparisions. (And then mylist.sort
would work.)