doc: switch to olddoc for the website
[ruby-tdb.git] / tdb.gemspec
blobc472e16c3bcd87863fbfa65354e09dad43283d62
1 ENV["VERSION"] or abort "VERSION= must be specified"
2 manifest = File.readlines('.manifest').map! { |x| x.chomp! }
3 require 'olddoc'
4 extend Olddoc::Gemspec
5 name, summary, title = readme_metadata
7 Gem::Specification.new do |s|
8   s.name = %q{tdb}
9   s.version = ENV["VERSION"].dup
10   s.homepage = 'http://bogomips.org/ruby-tdb/'
11   s.authors = ["Ruby tdb hackers"]
12   s.description = readme_description
13   s.email = %q{ruby-tdb@bogomips.org}
14   s.extra_rdoc_files = extra_rdoc_files(manifest)
15   s.files = manifest
16   s.summary = summary
17   s.test_files = Dir['test/test_*.rb']
18   s.extensions = %w(ext/tdb/extconf.rb)
19   s.add_development_dependency('olddoc', '~> 1.0')
20   s.add_development_dependency('test-unit', '>= 2.0', '< 4.0')
21   s.licenses = %w(LGPL-2.1+)
22 end