Paul Battley wrote: > On 25/10/06, Tim Fletcher <twoggle / gmail.com> wrote: > > You can also view the main README here: > > http://rubyforge.org/cgi-bin/viewvc.cgi/README.rdoc?revision=11&root=text > > I uploaded the currents docs to the project web space a few days ago. > > http://text.rubyforge.org/ > > It makes for easier browsing there, I think. Also, a mixin for String that provided method interfaces to all these would be cool. Eg. module TextMix def double_metaphone Text::Metaphone.double_metaphone(self) end ... end class String include TextMix end And while not exactly in the same category, it might be close enough -- maybe add Dresner which is simply: str.gsub(/\B\w+\B/){$&.split(//).sort_by{rand}} T.