class String # Returns an array of characters. # # require 'facet/string/chars' # # "abc".chars #=> ["a","b","c"] # def chars self.split(//) end end