couchrest_model/couchrest.gemspec

19 lines
772 B
Ruby
Raw Normal View History

2008-06-20 23:19:34 +02:00
Gem::Specification.new do |s|
s.name = "couchrest"
2008-09-12 07:23:47 +02:00
s.version = "0.9.4"
s.date = "2008-09-11"
2008-06-20 23:19:34 +02: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-12 07:30:08 +02:00
s.has_rdoc = true
2008-08-03 22:07:31 +02:00
s.authors = ["J. Chris Anderson", "Greg Borenstein"]
2008-09-12 07:30:08 +02:00
s.files = %w( LICENSE README.rdoc Rakefile ) + Dir["{bin,examples,lib,spec,utils}/**/*"]
2008-06-20 23:19:34 +02:00
s.require_path = "lib"
2008-08-03 21:51:17 +02:00
s.bindir = 'bin'
s.executables << 'couchview'
s.executables << 'couchdir'
2008-06-20 23:19:34 +02:00
s.add_dependency("json", [">= 1.1.2"])
2008-07-19 21:25:49 +02:00
s.add_dependency("rest-client", [">= 0.5"])
2008-06-21 00:17:53 +02:00
end