ruby-tdb.git  about / heads / tags
Trivial Database bindings for Ruby
blob 12cfa7bbffa458880db6ac192db203ccf208c587 762 bytes (raw)
$ git show v0.6.1: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@librelist.org}
  s.extra_rdoc_files = extra_rdoc_files(manifest)
  s.files = manifest
  s.rdoc_options = rdoc_options
  s.rubyforge_project = %q{qrp}
  s.summary = summary
  s.test_files = Dir['test/test_*.rb']
  s.extensions = %w(ext/tdb/extconf.rb)
  s.add_development_dependency('wrongdoc', '~> 1.6.2')
  s.licenses = %w(LGPLv2.1+)
end

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