update gemspec for couchapp

This commit is contained in:
Chris Anderson 2008-09-16 11:45:45 -04:00
parent 7f818c2cf1
commit b2c0b9fb80
2 changed files with 14 additions and 2 deletions

View file

@ -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

View file

@ -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",