redis.gemspec in redis-3.0.0.rc1 vs redis.gemspec in redis-3.0.0.rc2
- old
+ new
@@ -7,17 +7,18 @@
Gem::Specification.new do |s|
s.name = "redis"
s.version = Redis::VERSION
- s.homepage = "https://github.com/ezmobius/redis-rb"
+ s.homepage = "https://github.com/redis/redis-rb"
s.summary = "A Ruby client library for the Redis key-value store."
s.description = <<-EOS
- A simple Ruby client trying to match Redis' API one-to-one while still providing a Rubystic interface.
- It features thread safety, client-side sharding, and an obsession for performance.
+ A Ruby client that tries to match Redis' API one-to-one, while still
+ providing an idiomatic interface. It features thread-safety,
+ client-side sharding, pipelining, and an obsession for performance.
EOS
s.authors = [
"Ezra Zygmuntowicz",
"Taylor Weibley",
@@ -35,9 +36,6 @@
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.add_development_dependency("rake")
- s.add_development_dependency("cutest")
- s.add_development_dependency("hiredis")
- s.add_development_dependency("em-synchrony")
end