README.rdoc in text-0.1.13 vs README.rdoc in text-0.1.14
- old
+ new
@@ -1,10 +1,9 @@
= Text
A collection of text algorithms.
-
= Usage
require 'text'
font = Text::Figlet::Font.new('big.flf')
@@ -20,9 +19,18 @@
Text::Soundex.soundex('Knuth') # => 'K530'
Text::PorterStemming.stem('abatements') # => 'abat'
+= Ruby 1.9 Compatibility
+
+Most parts of the library are now compatible including
+tests. The big exception are the Figlet libraries which
+allow you to quickly do text-rendering in ASCII.
+On 1.9, Figlet isn't loaded and isn't tested.
+
+Work to integrate in Ruby 1.9 compatibility was done by
+Hampton Catlin (hcatlin)
= License
Same as Ruby.