2008-12-28 03:12:49 +01:00
|
|
|
BDB_SPEC = Gem::Specification.new do |s|
|
|
|
|
s.platform = Gem::Platform::RUBY
|
|
|
|
s.required_ruby_version = '>=1.8.4'
|
|
|
|
s.name = "bdb"
|
2009-08-07 22:19:23 +02:00
|
|
|
s.version = "0.0.7"
|
2008-12-28 03:12:49 +01:00
|
|
|
s.authors = ["Matt Bauer", "Dan Janowski"]
|
|
|
|
s.email = "bauer@pedalbrain.com"
|
|
|
|
s.summary = "A Ruby interface to BerkeleyDB"
|
2008-12-31 04:51:14 +01:00
|
|
|
s.files = ['bdb.gemspec',
|
|
|
|
'ext/bdb.c',
|
|
|
|
'ext/bdb.h',
|
|
|
|
'ext/extconf.rb',
|
2009-08-07 01:56:48 +02:00
|
|
|
'lib/bdb/simple.rb',
|
2008-12-31 04:51:14 +01:00
|
|
|
'LICENSE',
|
|
|
|
'README.textile',
|
|
|
|
'Rakefile']
|
|
|
|
s.test_files = ['test/cursor_test.rb',
|
|
|
|
'test/db_test.rb',
|
|
|
|
'test/env_test.rb',
|
|
|
|
'test/stat_test.rb',
|
|
|
|
'test/test_helper.rb',
|
|
|
|
'test/txn_test.rb']
|
2008-12-28 03:12:49 +01:00
|
|
|
s.extensions = ["ext/extconf.rb"]
|
|
|
|
|
|
|
|
s.homepage = "http://github.com/mattbauer/bdb"
|
|
|
|
|
2008-12-31 04:51:14 +01:00
|
|
|
s.require_paths = ["lib", "ext"]
|
2008-12-31 04:53:02 +01:00
|
|
|
s.has_rdoc = false
|
2008-12-28 03:12:49 +01:00
|
|
|
end
|