forked from santana/ruby-informix
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathruby-informix.gemspec
24 lines (23 loc) · 947 Bytes
/
ruby-informix.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
PKG_NAME = 'ruby-informix'
PKG_VERSION = '0.8.0'
PKG_FILES = %w{ext/informixc.ec lib/informix.rb} + Dir["lib/informix/*"] +
Dir["test/*rb"] + %w{COPYRIGHT Changelog README}
spec = Gem::Specification.new do |s|
s.name = PKG_NAME
s.version = PKG_VERSION
s.summary = 'Ruby library for IBM Informix'
s.description = 'Ruby library for connecting to IBM Informix 7 and above'
s.files = PKG_FILES
s.require_path = 'lib'
s.has_rdoc = true
s.rdoc_options << '--title' << "Ruby/Informix -- #{s.summary}" <<
'--exclude' << 'test' << '--exclude' << 'extconf.rb' <<
'--inline-source' << '--line-numbers' <<
'--main' << 'README'
s.extra_rdoc_files << 'README'
s.author = 'Gerardo Santana Gomez Garrido'
s.email = '[email protected]'
s.homepage = 'http://ruby-informix.rubyforge.org/'
s.rubyforge_project = PKG_NAME
s.extensions << 'ext/extconf.rb'
end