forked from soveran/ohm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathohm.gemspec
More file actions
21 lines (17 loc) · 708 Bytes
/
ohm.gemspec
File metadata and controls
21 lines (17 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Gem::Specification.new do |s|
s.name = "ohm"
s.version = "2.2.0"
s.summary = %{Object-hash mapping library for Redis.}
s.description = %Q{Ohm is a library that allows to store an object in Redis, a persistent key-value database. It has very good performance.}
s.authors = ["Michel Martens", "Damian Janowski", "Cyril David"]
s.email = ["michel@soveran.com", "djanowski@dimaion.com", "me@cyrildavid.com"]
s.homepage = "http://soveran.github.io/ohm/"
s.license = "MIT"
s.files = `git ls-files`.split("\n")
s.rubyforge_project = "ohm"
s.add_dependency "redic"
s.add_dependency "nido"
s.add_dependency "stal"
s.add_dependency "msgpack"
s.add_development_dependency "cutest"
end