couchrest_model/couchrest.gemspec

19 lines
772 B
Ruby
Raw Normal View History

2008-06-20 14:19:34 -07:00
Gem::Specification.new do |s|
s.name = "couchrest"
2008-09-11 22:23:47 -07:00
s.version = "0.9.4"
s.date = "2008-09-11"
2008-06-20 14:19:34 -07:00
s.summary = "Lean and RESTful interface to CouchDB."
s.email = "jchris@grabb.it"
s.homepage = "http://github.com/jchris/couchrest"
s.description = "CouchRest provides a simple interface on top of CouchDB's RESTful HTTP API, as well as including some utility scripts for managing views and attachments."
2008-09-11 22:30:08 -07:00
s.has_rdoc = true
2008-08-03 13:07:31 -07:00
s.authors = ["J. Chris Anderson", "Greg Borenstein"]
2008-09-11 22:30:08 -07:00
s.files = %w( LICENSE README.rdoc Rakefile ) + Dir["{bin,examples,lib,spec,utils}/**/*"]
2008-06-20 14:19:34 -07:00
s.require_path = "lib"
2008-08-03 12:51:17 -07:00
s.bindir = 'bin'
s.executables << 'couchview'
s.executables << 'couchdir'
2008-06-20 14:19:34 -07:00
s.add_dependency("json", [">= 1.1.2"])
2008-07-19 15:25:49 -04:00
s.add_dependency("rest-client", [">= 0.5"])
2008-06-20 15:17:53 -07:00
end