How do I transliterate Cyrillic symbols in string into Latin in Ruby? I can't find any docs on that. I thought there should be some standard function for that.
You can use the translit
gem:
require 'translit'
str = "Кириллица"
Translit.convert(str, :english)
#=> "Kirillica"