forked from redis/redis-rb
-
Notifications
You must be signed in to change notification settings - Fork 10
/
redis.gemspec
43 lines (32 loc) · 1.15 KB
/
redis.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# -*- encoding: utf-8 -*-
$:.unshift File.expand_path("../lib", __FILE__)
require "redis/version"
Gem::Specification.new do |s|
s.name = "redis"
s.version = Redis::VERSION
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.
EOS
s.authors = [
"Ezra Zygmuntowicz",
"Taylor Weibley",
"Matthew Clark",
"Brian McKinney",
"Salvatore Sanfilippo",
"Luca Guidi",
"Michel Martens",
"Damian Janowski",
"Pieter Noordhuis"
]
s.email = ["redis-db@googlegroups.com"]
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