class Mail::Multibyte::Chars

def g_length

'क्षि'.mb_chars.g_length # => 3
'क्षि'.mb_chars.length # => 4
Example:

Returns the number of grapheme clusters in the string.
def g_length
  Unicode.g_unpack(@wrapped_string).length
end