2010-01-29 23:53:39 +01:00
|
|
|
# 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{sbdb}
|
2010-03-29 14:17:32 +02:00
|
|
|
s.version = "0.0.9"
|
2010-01-29 23:53:39 +01:00
|
|
|
|
|
|
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
|
|
s.authors = ["Denis Knauf"]
|
2010-03-29 11:44:04 +02:00
|
|
|
s.date = %q{2010-03-29}
|
2010-01-29 23:53:39 +01:00
|
|
|
s.description = %q{Simple Ruby Berkeley DB wrapper library for bdb.}
|
|
|
|
s.email = %q{Denis.Knauf@gmail.com}
|
|
|
|
s.extra_rdoc_files = [
|
2010-02-02 00:52:25 +01:00
|
|
|
"LICENSE",
|
2010-02-23 21:48:02 +01:00
|
|
|
"README.md"
|
2010-01-29 23:53:39 +01:00
|
|
|
]
|
|
|
|
s.files = [
|
2010-03-21 00:39:45 +01:00
|
|
|
"AUTHORS",
|
|
|
|
"README.md",
|
2010-01-29 23:53:39 +01:00
|
|
|
"VERSION",
|
2010-02-02 00:52:25 +01:00
|
|
|
"lib/sbdb.rb",
|
|
|
|
"lib/sbdb/cursor.rb",
|
|
|
|
"lib/sbdb/db.rb",
|
|
|
|
"lib/sbdb/environment.rb",
|
2010-03-09 19:09:22 +01:00
|
|
|
"lib/sbdb/transaction.rb",
|
2010-02-02 00:52:25 +01:00
|
|
|
"lib/sbdb/weakhash.rb"
|
2010-01-29 23:53:39 +01:00
|
|
|
]
|
|
|
|
s.homepage = %q{http://github.com/DenisKnauf/bdb}
|
|
|
|
s.rdoc_options = ["--charset=UTF-8"]
|
|
|
|
s.require_paths = ["lib"]
|
2010-03-11 00:18:38 +01:00
|
|
|
s.rubygems_version = %q{1.3.6}
|
2010-01-29 23:53:39 +01:00
|
|
|
s.summary = %q{Simple Ruby Berkeley DB}
|
|
|
|
|
|
|
|
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
|
2010-03-11 00:18:38 +01:00
|
|
|
s.add_runtime_dependency(%q<dk-bdb>, [">= 0"])
|
2010-01-29 23:53:39 +01:00
|
|
|
else
|
2010-03-11 00:18:38 +01:00
|
|
|
s.add_dependency(%q<dk-bdb>, [">= 0"])
|
2010-01-29 23:53:39 +01:00
|
|
|
end
|
|
|
|
else
|
2010-03-11 00:18:38 +01:00
|
|
|
s.add_dependency(%q<dk-bdb>, [">= 0"])
|
2010-01-29 23:53:39 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|