gemcutter-ready

master
Denis Knauf 2010-03-11 00:12:31 +01:00
parent ddf5fdaee1
commit be6bf8d3eb
2 changed files with 74 additions and 0 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
logs
*.gem
.gitignore
pkg

73
dk-bdb.gemspec Normal file
View File

@ -0,0 +1,73 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{dk-bdb}
s.version = "0.2.4.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Justin Balthrop", "Denis Knauf"]
s.date = %q{2010-03-11}
s.description = %q{Advanced Ruby Berkeley DB library.}
s.email = ["code@justinbalthrop.com", "Denis.Knauf@gmail.com"]
s.extensions = ["ext/extconf.rb"]
s.extra_rdoc_files = [
"LICENSE",
"README.md"
]
s.files = [
"README.md",
"VERSION",
"ext/bdb.c",
"ext/bdb.h",
"lib/bdb/base.rb",
"lib/bdb/database.rb",
"lib/bdb/environment.rb",
"lib/bdb/partitioned_database.rb",
"lib/bdb/replication.rb",
"lib/bdb/result_set.rb",
"test/benchmark.rb",
"test/cursor_test.rb",
"test/database_test.rb",
"test/database_test_helper.rb",
"test/db_test.rb",
"test/deadlock_test.rb",
"test/env_test.rb",
"test/replication_test.rb",
"test/stat_test.rb",
"test/test_helper.rb",
"test/txn_test.rb"
]
s.homepage = %q{http://github.com/DenisKnauf/bdb}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["ext", "lib"]
s.rubygems_version = %q{1.3.6}
s.summary = %q{Ruby Berkeley DB}
s.test_files = [
"test/txn_test.rb",
"test/database_test.rb",
"test/deadlock_test.rb",
"test/test_helper.rb",
"test/database_test_helper.rb",
"test/benchmark.rb",
"test/db_test.rb",
"test/env_test.rb",
"test/stat_test.rb",
"test/cursor_test.rb",
"test/replication_test.rb",
"examples/replication.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
else
end
else
end
end