forked from soveran/ohm
-
Notifications
You must be signed in to change notification settings - Fork 2
/
ohm.gemspec.erb
16 lines (16 loc) · 892 Bytes
/
ohm.gemspec.erb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<% 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", "tribalvibes"]
s.homepage = "http://github.com/soveran/ohm"
s.files = <%= Dir["lib/**/*.rb", "README*", "LICENSE", "Rakefile", "test/**/*.rb", "test/test.conf"].inspect %>
s.rubyforge_project = "ohm"
s.add_dependency "nest", "~> 1.0"
s.add_dependency "redis", "~> 3.0.1"
s.add_development_dependency "cutest", "~> 0.1"
s.add_development_dependency "batch", "~> 0.0.1"
end