forked from soveran/ohm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathohm.gemspec
25 lines (22 loc) · 808 Bytes
/
ohm.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
require "./lib/ohm/version"
Gem::Specification.new do |s|
s.name = "ohm"
s.version = Ohm::VERSION
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 includes an extensible list of validations and has very good performance.}
s.authors = ["Michel Martens", "Damian Janowski"]
s.email = ["[email protected]", "[email protected]"]
s.homepage = "http://github.com/soveran/ohm"
s.files = Dir[
"lib/**/*.rb",
"README*",
"LICENSE",
"Rakefile",
"test/**/*.rb",
"test/test.conf"
]
s.rubyforge_project = "ohm"
s.add_dependency "nest", "~> 1.0"
s.add_development_dependency "cutest", "~> 0.1"
s.add_development_dependency "batch", "~> 0.0.1"
end