From 98e97148ea2709cb0ad805251459ce7001fb3a68 Mon Sep 17 00:00:00 2001 From: Chris Anderson Date: Wed, 29 Oct 2008 11:46:57 -0700 Subject: [PATCH] fix gemspec --- Rakefile | 4 +++- couchrest.gemspec | 2 -- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Rakefile b/Rakefile index 1047bf2..1c7ef19 100644 --- a/Rakefile +++ b/Rakefile @@ -13,7 +13,9 @@ spec = Gem::Specification.new do |s| 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 = true s.authors = ["J. Chris Anderson"] - s.files = %w( LICENSE README.rdoc Rakefile THANKS ) + Dir["{bin,examples,lib,spec,utils}/**/*"] + s.files = %w( LICENSE README.rdoc Rakefile THANKS ) + + Dir["{bin,examples,lib,spec,utils}/**/*"] - + Dir["spec/fixtures/couchapp*"] s.extra_rdoc_files = %w( README.rdoc LICENSE THANKS ) s.require_path = "lib" s.bindir = 'bin' diff --git a/couchrest.gemspec b/couchrest.gemspec index 49b1992..947deb8 100644 --- a/couchrest.gemspec +++ b/couchrest.gemspec @@ -61,7 +61,6 @@ Gem::Specification.new do |s| "spec/fixtures/attachments", "spec/fixtures/attachments/couchdb.png", "spec/fixtures/attachments/test.html", - "spec/fixtures/couchapp", "spec/fixtures/couchapp/_attachments", "spec/fixtures/couchapp/_attachments/index.html", "spec/fixtures/couchapp/foo", @@ -69,7 +68,6 @@ Gem::Specification.new do |s| "spec/fixtures/couchapp/views", "spec/fixtures/couchapp/views/example-map.js", "spec/fixtures/couchapp/views/example-reduce.js", - "spec/fixtures/couchapp-test", "spec/fixtures/couchapp-test/my-app", "spec/fixtures/couchapp-test/my-app/_attachments", "spec/fixtures/couchapp-test/my-app/_attachments/index.html",