public
Description: Ruby Berkeley DB
Homepage: http://raa.ruby-lang.org/project/bdb/
Clone URL: git://github.com/mattbauer/bdb.git
bdb / bdb.gemspec
100644 29 lines (26 sloc) 0.981 kb
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
BDB_SPEC = Gem::Specification.new do |s|
    s.platform = Gem::Platform::RUBY
    s.required_ruby_version = '>=1.8.4'
    s.name = "bdb"
    s.version = "0.0.1"
    s.authors = ["Matt Bauer", "Dan Janowski"]
    s.email = "bauer@pedalbrain.com"
    s.summary = "A Ruby interface to BerkeleyDB"
    s.files = ['bdb.gemspec',
                     'ext/bdb.c',
                     'ext/bdb.h',
                     'ext/extconf.rb',
                     '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']
    s.extensions = ["ext/extconf.rb"]
 
    s.homepage = "http://github.com/mattbauer/bdb"
 
    s.require_paths = ["lib", "ext"]
    s.has_rdoc = false
end