From faff0a386cd54763fe20e25173e889e2aa063752 Mon Sep 17 00:00:00 2001 From: Chris Anderson Date: Fri, 20 Jun 2008 14:19:34 -0700 Subject: [PATCH] gemspec --- couchrest.gemspec | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 couchrest.gemspec diff --git a/couchrest.gemspec b/couchrest.gemspec new file mode 100644 index 0000000..43d9122 --- /dev/null +++ b/couchrest.gemspec @@ -0,0 +1,16 @@ +Gem::Specification.new do |s| + s.name = "couchrest" + s.version = "0.7.99" + s.date = "2008-06-20" + 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." + s.has_rdoc = false + s.authors = ["J. Chris Anderson"] + s.files = %w{lib/couchrest.rb lib/database.rb Rakefile README script/couchdir script/couchview spec/couchrest_spec.rb spec/database_spec.rb} + s.require_path = "lib" + s.test_files = %{spec/couchrest_spec.rb spec/database_spec.rb} + s.add_dependency("json", [">= 1.1.2"]) + s.add_dependency("rest-client", [">= 0.4"]) +end \ No newline at end of file