24 lines
662 B
Text
24 lines
662 B
Text
require "rubygems"
|
|
|
|
NAME = "odbc"
|
|
VERSION = "0.9995"
|
|
AUTHOR = "Christian Werner"
|
|
EMAIL = "chw@ch-werner.de"
|
|
HOMEPAGE = "http://www.ch-werner.de/rubyodbc"
|
|
SUMMARY = "ODBC binding for Ruby"
|
|
|
|
spec = Gem::Specification.new do |s|
|
|
s.name = NAME
|
|
s.email = EMAIL
|
|
s.author = AUTHOR
|
|
s.version = VERSION
|
|
s.summary = SUMMARY
|
|
s.platform = Gem::Platform::RUBY
|
|
s.has_rdoc = false
|
|
s.homepage = HOMEPAGE
|
|
s.description = SUMMARY
|
|
s.require_paths = ["lib"]
|
|
s.extra_rdoc_files = ["README", "doc/odbc.html"]
|
|
s.files = Dir.glob("./**/*")
|
|
s.extensions = ["extconf.rb", "utf8/extconf.rb"]
|
|
end
|