ruby-tdb.git  about / heads / tags
Trivial Database bindings for Ruby
blob bad795a725510ceb967bf0fdc285021c6a309974 802 bytes (raw)
$ git show v0.6.2:tdb.gemspec	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 
ENV["VERSION"] or abort "VERSION= must be specified"
manifest = File.readlines('.manifest').map! { |x| x.chomp! }
require 'wrongdoc'
extend Wrongdoc::Gemspec
name, summary, title = readme_metadata

Gem::Specification.new do |s|
  s.name = %q{tdb}
  s.version = ENV["VERSION"].dup
  s.homepage = 'http://bogomips.org/ruby-tdb/'
  s.authors = ["Ruby tdb hackers"]
  s.description = readme_description
  s.email = %q{ruby-tdb@bogomips.org}
  s.extra_rdoc_files = extra_rdoc_files(manifest)
  s.files = manifest
  s.rdoc_options = rdoc_options
  s.summary = summary
  s.test_files = Dir['test/test_*.rb']
  s.extensions = %w(ext/tdb/extconf.rb)
  s.add_development_dependency('wrongdoc', '~> 1.8', '>= 1.8.1')
  s.add_development_dependency('test-unit', '>= 2.0', '< 4.0')
  s.licenses = %w(LGPLv2.1+)
end

git clone https://yhbt.net/ruby-tdb.git