[ANN] UnicodeUtils 0.3.0 - case conversion, normalization and more

UnicodeUtils is a pure Ruby library that implements
Unicode algorithms for Ruby 1.9.

Install with RubyGems:

    $ gem install unicode_utils

Example code:

    require "unicode_utils"

    UnicodeUtils.name("æ") => "LATIN SMALL LETTER AE"

    UnicodeUtils.upcase("weiß") => "WEISS"
    UnicodeUtils.upcase("i", :tr) => "İ"

    UnicodeUtils.downcase("Ümit") => "ümit"

Online documentation: http://unicode-utils.rubyforge.org/
Source: http://github.com/lang/unicode_utils

New since the 0.2.0 release:

  * name handles Hangul syllables and Private Use
    codepoints correctly

  * Normalization Form D

  * Normalization Form C

···

--
Stefan Lang