forked from gregmolnar/redis-rb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
redis.gemspec
42 lines (31 loc) · 1.01 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
require "./lib/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 Redis"
s.description = <<-EOS
A Ruby client that tries to match Redis' API one-to-one, while still
providing an idiomatic interface.
EOS
s.license = "MIT"
s.authors = [
"Ezra Zygmuntowicz",
"Taylor Weibley",
"Matthew Clark",
"Brian McKinney",
"Salvatore Sanfilippo",
"Luca Guidi",
"Michel Martens",
"Damian Janowski",
"Pieter Noordhuis"
]
s.email = ["[email protected]"]
s.files = Dir["CHANGELOG.md", "LICENSE", "README.md", "lib/**/*"]
s.executables = `git ls-files -- exe/*`.split("\n").map{ |f| File.basename(f) }
s.required_ruby_version = '>= 2.2.2'
s.add_development_dependency("test-unit", ">= 3.1.5")
s.add_development_dependency("mocha")
s.add_development_dependency("hiredis")
s.add_development_dependency("em-synchrony")
end