From b2c0b9fb802c5cd4a7643e932146d90f149f12c5 Mon Sep 17 00:00:00 2001 From: Chris Anderson Date: Tue, 16 Sep 2008 11:45:45 -0400 Subject: [PATCH] update gemspec for couchapp --- Rakefile | 1 - couchrest.gemspec | 15 ++++++++++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 21405a2..b4e9b9a 100644 --- a/Rakefile +++ b/Rakefile @@ -36,7 +36,6 @@ namespace :github do # thanks merb! next if skip_fields.include?(name) || value.nil? || value == "" || (value.respond_to?(:empty?) && value.empty?) if name == "dependencies" value.each do |d| - puts d.to_s dep, *ver = d.to_s.split(" ") result << " s.add_dependency #{dep.inspect}, [#{ /\(([^\,]*)/ . match(ver.join(" "))[1].inspect}]\n" end diff --git a/couchrest.gemspec b/couchrest.gemspec index cac6989..10cc700 100644 --- a/couchrest.gemspec +++ b/couchrest.gemspec @@ -4,11 +4,12 @@ Gem::Specification.new do |s| s.executables = ["couchview", "couchdir"] s.authors = ["J. Chris Anderson"] s.required_rubygems_version = ">= 0" - s.version = "0.9.5" + s.version = "0.9.6" s.files = ["LICENSE", "README.rdoc", "Rakefile", "THANKS", + "bin/couchapp", "bin/couchdir", "bin/couchview", "examples/word_count", @@ -36,14 +37,26 @@ Gem::Specification.new do |s| "lib/couchrest/helper/file_manager.rb", "lib/couchrest/helper/pager.rb", "lib/couchrest/helper/streamer.rb", + "lib/couchrest/helper/templates", + "lib/couchrest/helper/templates/example-map.js", + "lib/couchrest/helper/templates/example-reduce.js", + "lib/couchrest/helper/templates/index.html", "lib/couchrest/monkeypatches.rb", "lib/couchrest.rb", + "spec/couchapp_spec.rb", "spec/couchrest_spec.rb", "spec/database_spec.rb", "spec/file_manager_spec.rb", "spec/fixtures", "spec/fixtures/attachments", "spec/fixtures/attachments/test.html", + "spec/fixtures/couchapp", + "spec/fixtures/couchapp/attachments", + "spec/fixtures/couchapp/attachments/index.html", + "spec/fixtures/couchapp/views", + "spec/fixtures/couchapp/views/example-map.js", + "spec/fixtures/couchapp/views/example-reduce.js", + "spec/fixtures/couchapp-test", "spec/fixtures/views", "spec/fixtures/views/lib.js", "spec/fixtures/views/test_view",