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-02-05 19:16:40 +01:00
|
|
|
s.version = "0.0.6"
|
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-02-05 19:16:40 +01:00
|
|
|
s.date = %q{2010-02-05}
|
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",
|
|
|
|
"README"
|
2010-01-29 23:53:39 +01:00
|
|
|
]
|
|
|
|
s.files = [
|
|
|
|
"README",
|
|
|
|
"VERSION",
|
2010-02-02 00:52:25 +01:00
|
|
|
"lib/sbdb.rb",
|
|
|
|
"lib/sbdb/cursor.rb",
|
|
|
|
"lib/sbdb/db.rb",
|
|
|
|
"lib/sbdb/environment.rb",
|
|
|
|
"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"]
|
|
|
|
s.rubygems_version = %q{1.3.5}
|
|
|
|
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-02-02 00:52:25 +01:00
|
|
|
s.add_runtime_dependency(%q<bdb>, [">= 0"])
|
2010-01-29 23:53:39 +01:00
|
|
|
else
|
2010-02-02 00:52:25 +01:00
|
|
|
s.add_dependency(%q<bdb>, [">= 0"])
|
2010-01-29 23:53:39 +01:00
|
|
|
end
|
|
|
|
else
|
2010-02-02 00:52:25 +01:00
|
|
|
s.add_dependency(%q<bdb>, [">= 0"])
|
2010-01-29 23:53:39 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|