-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathicu4r_19.gemspec
32 lines (31 loc) · 1.09 KB
/
icu4r_19.gemspec
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
28
29
30
31
32
Gem::Specification.new do |s|
s.authors = [ "Nikolai Lugovoi", "Perry Smith" ]
s.description = File.read(File.join(File.dirname(__FILE__), 'README'))
s.email = "[email protected]"
s.extensions = [ 'extconf.rb' ]
s.extra_rdoc_files = [
'README',
'docs/FORMATTING',
'docs/UNICODE_REGEXPS',
'MIT-LICENSE',
'calendar.c',
'collator.c',
'converter.c',
'icu4r.c',
'ubundle.c',
'ucore_ext.c',
'uregex.c',
'ustring.c'
]
s.files = Dir['**/**']
s.license = 'MIT'
s.has_rdoc = true
s.homepage = "http://icu4r.rubyforge.org/"
s.name = "icu4r_19"
s.platform = Gem::Platform::RUBY
s.rdoc_options = [ '-c', 'utf-8', '-x', 'dummy' ]
s.required_ruby_version = '>=1.8'
s.requirements = [ 'ICU libraries' ]
s.summary = "Ruby extension for Unicode support using ICU"
s.version = "1.1"
end