v0.0.10 gemspec
This commit is contained in:
parent
0551a8417e
commit
b65ff608b5
29
sbdb.gemspec
29
sbdb.gemspec
|
@ -1,43 +1,42 @@
|
||||||
# Generated by jeweler
|
# Generated by jeweler
|
||||||
# DO NOT EDIT THIS FILE DIRECTLY
|
# DO NOT EDIT THIS FILE DIRECTLY
|
||||||
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
||||||
# -*- encoding: utf-8 -*-
|
# -*- encoding: utf-8 -*-
|
||||||
|
|
||||||
Gem::Specification.new do |s|
|
Gem::Specification.new do |s|
|
||||||
s.name = %q{sbdb}
|
s.name = %q{sbdb}
|
||||||
s.version = "0.0.9"
|
s.version = "0.0.10"
|
||||||
|
|
||||||
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 = ["Denis Knauf"]
|
s.authors = ["Denis Knauf"]
|
||||||
s.date = %q{2010-04-14}
|
s.date = %q{2011-08-01}
|
||||||
s.description = %q{Simple Ruby Berkeley DB wrapper library for bdb.}
|
s.description = %q{Simple Ruby Berkeley DB wrapper library for bdb.}
|
||||||
s.email = %q{Denis.Knauf@gmail.com}
|
s.email = %q{Denis.Knauf@gmail.com}
|
||||||
s.extra_rdoc_files = [
|
s.extra_rdoc_files = [
|
||||||
"LICENSE",
|
"LICENSE",
|
||||||
"README.md"
|
"README.md"
|
||||||
]
|
]
|
||||||
s.files = [
|
s.files = [
|
||||||
"AUTHORS",
|
"AUTHORS",
|
||||||
"README.md",
|
"README.md",
|
||||||
"VERSION",
|
"VERSION",
|
||||||
"lib/sbdb.rb",
|
"lib/sbdb.rb",
|
||||||
"lib/sbdb/cursor.rb",
|
"lib/sbdb/cursor.rb",
|
||||||
"lib/sbdb/db.rb",
|
"lib/sbdb/db.rb",
|
||||||
"lib/sbdb/environment.rb",
|
"lib/sbdb/environment.rb",
|
||||||
"lib/sbdb/transaction.rb",
|
"lib/sbdb/transaction.rb",
|
||||||
"lib/sbdb/weakhash.rb"
|
"lib/sbdb/weakhash.rb"
|
||||||
]
|
]
|
||||||
s.homepage = %q{http://github.com/DenisKnauf/bdb}
|
s.homepage = %q{http://github.com/DenisKnauf/bdb}
|
||||||
s.rdoc_options = ["--charset=UTF-8"]
|
|
||||||
s.require_paths = ["lib"]
|
s.require_paths = ["lib"]
|
||||||
s.rubygems_version = %q{1.3.6}
|
s.rubygems_version = %q{1.3.7}
|
||||||
s.summary = %q{Simple Ruby Berkeley DB}
|
s.summary = %q{Simple Ruby Berkeley DB}
|
||||||
|
|
||||||
if s.respond_to? :specification_version then
|
if s.respond_to? :specification_version then
|
||||||
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
||||||
s.specification_version = 3
|
s.specification_version = 3
|
||||||
|
|
||||||
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
|
||||||
s.add_runtime_dependency(%q<dk-bdb>, [">= 0"])
|
s.add_runtime_dependency(%q<dk-bdb>, [">= 0"])
|
||||||
else
|
else
|
||||||
s.add_dependency(%q<dk-bdb>, [">= 0"])
|
s.add_dependency(%q<dk-bdb>, [">= 0"])
|
||||||
|
|
Loading…
Reference in a new issue