With respect to this post: How do I make text-transform:uppercase work properly with Greek? I was wondering what's the proper way to capitalise international strings in Ruby?
Right now for instance a Greek string would return this:
'ένα'.upcase # => ΈΝΑ
This is wrong. Should be 'ENA'. No accents are allowed when all characters are capitalised.
Any ideas?