ruby-tdb.git  about / heads / tags
Trivial Database bindings for Ruby
blob 9aa953a6802703b1c21560232cf49d0cfecd4691 1043 bytes (raw)
$ git show v0.2.0: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
24
25
26
27
28
29
30
31
32
33
34
35
36
 
ENV["VERSION"] or abort "VERSION= must be specified"
manifest = File.readlines('.manifest').map! { |x| x.chomp! }
summary = File.readlines("README")[0].gsub(/\A=\s+\S+[^\w]+/, '').strip
description = File.read("README").split(/\n\n/)[1].strip

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.date = Time.now.utc.strftime('%Y-%m-%d')
  s.description = description
  s.email = %q{ruby.tdb@librelist.org}

  s.extra_rdoc_files = File.readlines('.document').map! do |x|
    x.chomp!
    if File.directory?(x)
      manifest.grep(%r{\A#{x}/})
    elsif File.file?(x)
      x
    else
      nil
    end
  end.flatten.compact

  s.files = manifest
  s.rdoc_options = [ "-t", summary ]
  s.require_paths = %w(lib ext)
  s.rubyforge_project = %q{tdb}
  s.summary = summary
  s.test_files = Dir['test/test_*.rb']
  s.extensions = %w(ext/tdb/extconf.rb)

  # s.license = %w(LGPL) # disabled for compatibility with older RubyGems
end

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