oria.gemspec in oria-0.0.2 vs oria.gemspec in oria-0.0.3
- old
+ new
@@ -3,33 +3,43 @@
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{oria}
- s.version = "0.0.1"
+ s.version = "0.0.3"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Flip Sasser"]
- s.date = %q{2009-11-22}
+ s.date = %q{2009-11-23}
s.default_executable = %q{oria}
- s.description = %q{}
+ s.description = %q{
+ Oria (oh-rye-uh) is an in-memory, Ruby-based Key-Value store. It's designed to handle moderate amounts of data quickly
+ and easily without causing deployment issues or server headaches. It uses EventMachine to provide a networked interface
+ to a semi-persistent KVS and asynchronously writes the in-memory data to YAML files.
+ }
s.email = %q{flip@x451.com}
s.executables = ["oria"]
s.extra_rdoc_files = [
"LICENSE",
"README.markdown"
]
s.files = [
- "LICENSE",
+ ".gitignore",
+ "LICENSE",
"README.markdown",
"Rakefile",
"VERSION",
+ "benchmarks/mysql_table.sql",
+ "benchmarks/redis_v_oria.rb",
+ "benchmarks/sequel_v_oria.rb",
+ "benchmarks/sqlite_v_oria.rb",
"bin/oria",
"lib/oria.rb",
"lib/oria/client.rb",
"lib/oria/errors.rb",
"lib/oria/server.rb",
+ "oria.gemspec",
"spec/oria_spec.rb",
"spec/rcov.opts",
"spec/spec.opts",
"spec/spec_helper.rb"
]
@@ -47,16 +57,16 @@
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<eventmachine>, [">= 0.12.10"])
- s.add_runtime_dependency(%q<json>, [">= 2.0.0"])
+ s.add_runtime_dependency(%q<json>, [">= 1.2.0"])
else
s.add_dependency(%q<eventmachine>, [">= 0.12.10"])
- s.add_dependency(%q<json>, [">= 2.0.0"])
+ s.add_dependency(%q<json>, [">= 1.2.0"])
end
else
s.add_dependency(%q<eventmachine>, [">= 0.12.10"])
- s.add_dependency(%q<json>, [">= 2.0.0"])
+ s.add_dependency(%q<json>, [">= 1.2.0"])
end
end