Ruby: converta uma string em uma matriz de caracteres

"This is the bee's knees".scan /w/
#=> ["T", "h", "i", "s", "i", "s", "t", "h", "e", "b", "e", "e", "s", "k", "n", "e", "e", "s"]

O #scan da string procurará por qualquer coisa que corresponda ao seu padrão e o retornará em um array.