utf8proc

annotate ruby/gem/utf8proc.gemspec @ 9:951e73a98021

Version 1.1.3

- Added a function utf8proc_version returning a string containing the version number of the library.
- Included a target libutf8proc.dylib for MacOSX.
- PostgreSQL 8.3 compatibility (use of SET_VARSIZE macro)
author jbe
date Fri May 01 12:00:00 2009 +0200 (2009-05-01)
parents 6921ee309940
children 00d2bcbdc945
rev   line source
jbe@7 1 require 'rubygems'
jbe@7 2 SPEC = Gem::Specification.new do |s|
jbe@7 3 s.name = 'utf8proc'
jbe@9 4 s.version = '1.1.3'
jbe@7 5 s.author = 'Jan Behrens'
jbe@7 6 s.homepage = 'http://www.flexiguided.de/publications.utf8proc.en.html'
jbe@7 7 s.summary = 'UTF-8 Unicode string processing'
jbe@7 8 s.files = ['LICENSE', 'lib/utf8proc.rb', 'ext/utf8proc_native.c']
jbe@7 9 s.require_path = 'lib/'
jbe@7 10 s.extensions = ['ext/extconf.rb']
jbe@7 11 s.has_rdoc = false
jbe@7 12 end

Impressum / About Us