Sha256: 9d1649a044310ee5dabdd1e796d42662a948fef29c66fe08b347134cce5652bc

Contents?: true

Size: 1.02 KB

Versions: 1

Compression:

Stored size: 1.02 KB

Contents

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

Or:

    ruby extconf.rb && make && make install

Development Resources
---------------------

* http://sourceforge.jp/projects/unf/
* http://sourceforge.jp/ticket/newticket.php?group_id=5256

    For issues regarding files under the directory `unf`, please
    contact this upstream.

* https://github.com/knu/ruby-unf_ext

    The development site and the repository.

License
-------

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

Licensed under the MIT license.
See `LICENSE` for details.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
unf_ext-0.0.3 README.md