2009-04-08 07:26:36 -04:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
|
|
|
|
Gem::Specification.new do |s|
|
2009-05-09 03:25:59 -04:00
|
|
|
s.name = %q{redis}
|
2009-09-02 04:37:32 -04:00
|
|
|
s.version = "0.1"
|
2009-04-08 07:26:36 -04:00
|
|
|
|
|
|
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
2009-09-02 04:37:32 -04:00
|
|
|
s.authors = ["Ezra Zygmuntowicz", "Taylor Weibley", "Matthew Clark", "Brian McKinney", "Salvatore Sanfilippo", "Luca Guidi"]
|
|
|
|
# s.autorequire = %q{redis-rb}
|
|
|
|
s.date = %q{2009-06-23}
|
2009-04-08 07:26:36 -04:00
|
|
|
s.description = %q{Ruby client library for redis key value storage server}
|
|
|
|
s.email = %q{ez@engineyard.com}
|
|
|
|
s.extra_rdoc_files = ["LICENSE"]
|
2009-09-02 04:37:32 -04:00
|
|
|
s.files = ["LICENSE", "README.markdown", "Rakefile", "lib/dist_redis.rb", "lib/hash_ring.rb", "lib/pipeline.rb", "lib/redis.rb", "spec/redis_spec.rb", "spec/spec_helper.rb"]
|
2009-04-08 07:26:36 -04:00
|
|
|
s.has_rdoc = true
|
2009-09-02 04:37:32 -04:00
|
|
|
s.homepage = %q{http://github.com/ezmobius/redis-rb}
|
2009-04-08 07:26:36 -04:00
|
|
|
s.require_paths = ["lib"]
|
|
|
|
s.rubygems_version = %q{1.3.1}
|
|
|
|
s.summary = %q{Ruby client library for redis key value storage server}
|
|
|
|
|
|
|
|
if s.respond_to? :specification_version then
|
|
|
|
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
|
|
|
s.specification_version = 2
|
|
|
|
|
|
|
|
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
|
|
|
else
|
|
|
|
end
|
|
|
|
else
|
|
|
|
end
|
|
|
|
end
|