Manfred / unichars

A library that wraps Glib2 Unicode manipulation methods to speed up ActiveSupport::Multibyte

This URL has Read+Write access

commit  8f289b8845932aba3d1efaafef3177fcf1108bac
tree    eb4c097e6ddc9312953736f0e5a0f51026e400e0
parent  674e96ba5d4e0648de8708428330200d426f687a
unichars / unichars.gemspec
100644 27 lines (20 sloc) 0.728 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
require 'rubygems'
 
Gem::Specification.new do |spec|
  spec.name = 'unichars'
  spec.version = '0.4'
  
  spec.author = "Manfred Stienstra"
  spec.email = "manfred@fngtps.com"
  
  spec.description = <<-EOF
Unichars is a wrapper around Glib2 UTF8 functions.
EOF
  spec.summary = <<-EOF
Unichars is a wrapper around Glib2 UTF8 functions. It was written to speed up ActiveSupport::Multibyte, but I'm sure
people can find other uses for it.
EOF
  
  spec.files = Dir['lib/**/*.rb'] + Dir['ext/**/*']
  
  spec.extensions << 'ext/glib/extconf.rb'
  spec.require_paths = ['lib']
  
  spec.has_rdoc = true
  spec.extra_rdoc_files = ['README', 'LICENSE', 'ext/glib/glib.c']
  spec.rdoc_options << "--charset=utf-8"
end