forked from soveran/ohm
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathohm.gemspec.erb
More file actions
15 lines (15 loc) · 816 Bytes
/
Copy pathohm.gemspec.erb
File metadata and controls
15 lines (15 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<% 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 = ["michel@soveran.com", "djanowski@dimaion.com"]
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 "redis", ">= 2.0.0.rc3"
s.add_development_dependency "contest", "~> 0.1"
s.add_development_dependency "batch", "~> 0.0.1"
end