Regenerated gemspec for version 0.2.0
This commit is contained in:
parent
819b977eae
commit
253e2e15f5
23
bdb.gemspec
23
bdb.gemspec
|
@ -5,11 +5,11 @@
|
||||||
|
|
||||||
Gem::Specification.new do |s|
|
Gem::Specification.new do |s|
|
||||||
s.name = %q{bdb}
|
s.name = %q{bdb}
|
||||||
s.version = "0.1.0"
|
s.version = "0.2.0"
|
||||||
|
|
||||||
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
||||||
s.authors = ["Justin Balthrop"]
|
s.authors = ["Justin Balthrop"]
|
||||||
s.date = %q{2009-11-20}
|
s.date = %q{2009-11-24}
|
||||||
s.description = %q{Advanced Ruby Berkeley DB library.}
|
s.description = %q{Advanced Ruby Berkeley DB library.}
|
||||||
s.email = %q{code@justinbalthrop.com}
|
s.email = %q{code@justinbalthrop.com}
|
||||||
s.extensions = ["ext/extconf.rb"]
|
s.extensions = ["ext/extconf.rb"]
|
||||||
|
@ -19,19 +19,28 @@ Gem::Specification.new do |s|
|
||||||
]
|
]
|
||||||
s.files = [
|
s.files = [
|
||||||
"VERSION",
|
"VERSION",
|
||||||
|
"ext/Makefile",
|
||||||
|
"ext/bdb.bundle",
|
||||||
"ext/bdb.c",
|
"ext/bdb.c",
|
||||||
"ext/bdb.h",
|
"ext/bdb.h",
|
||||||
|
"ext/bdb.o",
|
||||||
|
"ext/bdb_aux._c",
|
||||||
"ext/extconf.rb",
|
"ext/extconf.rb",
|
||||||
|
"ext/mkmf.log",
|
||||||
"lib/bdb/base.rb",
|
"lib/bdb/base.rb",
|
||||||
"lib/bdb/database.rb",
|
"lib/bdb/database.rb",
|
||||||
"lib/bdb/environment.rb",
|
"lib/bdb/environment.rb",
|
||||||
"lib/bdb/partitioned_database.rb",
|
"lib/bdb/partitioned_database.rb",
|
||||||
|
"lib/bdb/replication.rb",
|
||||||
"lib/bdb/result_set.rb",
|
"lib/bdb/result_set.rb",
|
||||||
"test/benchmark.rb",
|
"test/benchmark.rb",
|
||||||
"test/cursor_test.rb",
|
"test/cursor_test.rb",
|
||||||
|
"test/database_test.rb",
|
||||||
|
"test/database_test_helper.rb",
|
||||||
"test/db_test.rb",
|
"test/db_test.rb",
|
||||||
|
"test/deadlock_test.rb",
|
||||||
"test/env_test.rb",
|
"test/env_test.rb",
|
||||||
"test/simple_test.rb",
|
"test/replication_test.rb",
|
||||||
"test/stat_test.rb",
|
"test/stat_test.rb",
|
||||||
"test/test_helper.rb",
|
"test/test_helper.rb",
|
||||||
"test/txn_test.rb"
|
"test/txn_test.rb"
|
||||||
|
@ -44,12 +53,16 @@ Gem::Specification.new do |s|
|
||||||
s.test_files = [
|
s.test_files = [
|
||||||
"test/benchmark.rb",
|
"test/benchmark.rb",
|
||||||
"test/cursor_test.rb",
|
"test/cursor_test.rb",
|
||||||
|
"test/database_test.rb",
|
||||||
|
"test/database_test_helper.rb",
|
||||||
"test/db_test.rb",
|
"test/db_test.rb",
|
||||||
|
"test/deadlock_test.rb",
|
||||||
"test/env_test.rb",
|
"test/env_test.rb",
|
||||||
"test/simple_test.rb",
|
"test/replication_test.rb",
|
||||||
"test/stat_test.rb",
|
"test/stat_test.rb",
|
||||||
"test/test_helper.rb",
|
"test/test_helper.rb",
|
||||||
"test/txn_test.rb"
|
"test/txn_test.rb",
|
||||||
|
"examples/replication.rb"
|
||||||
]
|
]
|
||||||
|
|
||||||
if s.respond_to? :specification_version then
|
if s.respond_to? :specification_version then
|
||||||
|
|
Loading…
Reference in a new issue