I have a string containing Arabic charachters "محمود"
When I try to parameterize this string, it returns empty string ""
x = "محمود"
x.parameterize => ""
I have checked parameterize code and found it calls I18n.transliterate which returns question marks "?????"
I tried to customize transliteration referring to previous question How do you customize transliterations in a Rails 3 app?
But still returning blank string.
Any help?