Name Last Update
..
ext Loading commit data...
lib Loading commit data...
test Loading commit data...
.document Loading commit data...
.gitignore Loading commit data...
.travis.yml Loading commit data...
CHANGELOG.md Loading commit data...
Gemfile Loading commit data...
LICENSE.txt Loading commit data...
README.md Loading commit data...
Rakefile Loading commit data...
unf_ext.gemspec Loading commit data...

README.md

ruby-unf_ext

Synopsis

  • Unicode Normalization Form support library for CRuby

Description

  • Normalizes UTF-8 strings into and from NFC, NFD, NFKC or NFKD

    # For bulk conversion
    normalizer = UNF::Normalizer.new
    a_bunch_of_strings.map! { |string|
      normalizer.normalize(string, :nfc) #=> string in NFC
    }
    
  • Compliant with Unicode 6.0

Requirement

  • Ruby 1.8.7+, 1.9.2+

  • C++ compiler and libstdc++

Installation

gem install unf_ext

Or:

ruby extconf.rb && make && make install

Development Resources

License

Copyright (c) 2010 Takeru Ohta Copyright (c) 2011-2015 Akinori MUSHA

Licensed under the MIT license. See LICENSE for details.