string.rb 122 Bytes Edit Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 class String def downcase self.mb_chars.downcase.to_s end def upcase self.mb_chars.upcase.to_s end end