1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
require 'date'
spec = Gem::Specification.new do |s|
s.name = "ruby-odbc"
s.version = "0.999992"
s.date = Date.today.to_s
s.author = "Christian Werner"
s.email = "chw @nospam@ ch-werner.de"
s.summary = "ODBC binding for Ruby"
s.homepage = "http://www.ch-werner.de/rubyodbc"
s.files = Dir.glob("**/*")
s.require_paths << 'lib'
s.test_files = Dir.glob('tests/*.rb')
s.has_rdoc = false
s.extra_rdoc_files = ["README", "COPYING", "ChangeLog", "GPL", "doc/odbc.html"]
s.extensions = ["ext/extconf.rb", "ext/utf8/extconf.rb"]
end
|