-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhashpipe.gemspec
29 lines (29 loc) · 968 Bytes
/
hashpipe.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
26
27
28
29
Gem::Specification.new do |s|
s.name = "hashpipe"
s.version = "0.0.5"
s.date = "2009-05-13"
s.summary = "ActiveRecord plugin to save content to a pluggable, hash-style backend"
s.email = "[email protected]"
s.homepage = "http://github.com/jsl/hashpipe"
s.description = "HashPipe connects an AR-backed model to a key-value store"
s.has_rdoc = true
s.authors = ["Justin Leitgeb"]
s.files = [
"Rakefile",
"hashpipe.gemspec",
"init.rb",
"config/hashpipe.yml",
"lib/hashpipe.rb",
"lib/hashpipe/archived_attribute.rb",
"lib/hashpipe/global_configuration.rb",
"lib/hashpipe/moneta_backend.rb"
]
s.test_files = [
"spec/hashpipe/global_configuration_spec.rb",
"spec/hashpipe/archived_attribute_spec.rb",
"spec/hashpipe/moneta_backend_spec.rb"
]
s.add_dependency("wycats-moneta", ["> 0.0.0"])
s.add_dependency("activesupport", ["> 0.0.0"])
s.add_dependency("assaf-uuid", ["> 0.0.0"])
end