File: ruby-odbc.gemspec

package info (click to toggle)
ruby-odbc 0.999992-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 584 kB
  • sloc: ansic: 8,609; ruby: 854; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 549 bytes parent folder | download
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