utf8proc

annotate ruby/gem/utf8proc.gemspec @ 7:fcfd8c836c64

Version 1.1.1

- Added a new PostgreSQL function 'unistrip', which behaves like 'unifold', but also removes all character marks (e.g. accents).
- Changed license from BSD to MIT style.
- Added a new function 'utf8proc_codepoint_valid' to the C library.
- Changed compiler flags in Makefile from -g -O0 to -O2
- The ruby script, which was used to build the utf8proc_data.c file, is now included in the distribution.
author jbe
date Sun Jul 22 12:00:00 2007 +0200 (2007-07-22)
parents
children 6921ee309940
rev   line source
jbe@7 1 require 'rubygems'
jbe@7 2 SPEC = Gem::Specification.new do |s|
jbe@7 3 s.name = 'utf8proc'
jbe@7 4 s.version = '1.1.1'
jbe@7 5 s.author = 'Jan Behrens'
jbe@7 6 s.email = 'jan.behrens.n4272.expires-2008-06@flexiguided.de'
jbe@7 7 s.homepage = 'http://www.flexiguided.de/publications.utf8proc.en.html'
jbe@7 8 s.summary = 'UTF-8 Unicode string processing'
jbe@7 9 s.files = ['LICENSE', 'lib/utf8proc.rb', 'ext/utf8proc_native.c']
jbe@7 10 s.require_path = 'lib/'
jbe@7 11 s.extensions = ['ext/extconf.rb']
jbe@7 12 s.has_rdoc = false
jbe@7 13 end

Impressum / About Us