utf8proc
view ruby/gem/utf8proc.gemspec @ 11:d79da2302625
Changes for Ruby 1.9 compatibility
- Use RSTRING_PTR() and RSTRING_LEN() instead of RSTRING()->ptr and RSTRING()->len for ruby1.9 compatibility (and #define them, if not existent)
- Use RSTRING_PTR() and RSTRING_LEN() instead of RSTRING()->ptr and RSTRING()->len for ruby1.9 compatibility (and #define them, if not existent)
| author | jbe | 
|---|---|
| date | Thu Aug 20 12:00:00 2009 +0200 (2009-08-20) | 
| parents | 00d2bcbdc945 | 
| children | 2c7384f1fac1 | 
 line source
     1 require 'rubygems'
     2 SPEC = Gem::Specification.new do |s|
     3   s.name = 'utf8proc'
     4   s.version = '1.1.4'
     5   s.author = 'Public Software Group e. V., Berlin, Germany'
     6   s.homepage = 'http://www.public-software-group.org/utf8proc'
     7   s.summary = 'UTF-8 Unicode string processing'
     8   s.files = ['LICENSE', 'lib/utf8proc.rb', 'ext/utf8proc_native.c']
     9   s.require_path = 'lib/'
    10   s.extensions = ['ext/extconf.rb']
    11   s.has_rdoc = false
    12 end
