forked from soveran/ohm
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathohm.gemspec
More file actions
14 lines (14 loc) · 1.18 KB
/
Copy pathohm.gemspec
File metadata and controls
14 lines (14 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Gem::Specification.new do |s|
s.name = "ohm"
s.version = "0.1.0.rc4"
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 = ["lib/ohm/collection.rb", "lib/ohm/compat-1.8.6.rb", "lib/ohm/key.rb", "lib/ohm/utils/upgrade.rb", "lib/ohm/validations.rb", "lib/ohm/version.rb", "lib/ohm.rb", "README.markdown", "LICENSE", "Rakefile", "test/1.8.6_test.rb", "test/all_tests.rb", "test/connection_test.rb", "test/errors_test.rb", "test/hash_key_test.rb", "test/indices_test.rb", "test/model_module_test.rb", "test/model_test.rb", "test/mutex_test.rb", "test/test_helper.rb", "test/upgrade_script_test.rb", "test/validations_test.rb", "test/wrapper_test.rb", "test/test.conf"]
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