update gemspec for couchapp
This commit is contained in:
parent
7f818c2cf1
commit
b2c0b9fb80
1
Rakefile
1
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?)
|
next if skip_fields.include?(name) || value.nil? || value == "" || (value.respond_to?(:empty?) && value.empty?)
|
||||||
if name == "dependencies"
|
if name == "dependencies"
|
||||||
value.each do |d|
|
value.each do |d|
|
||||||
puts d.to_s
|
|
||||||
dep, *ver = d.to_s.split(" ")
|
dep, *ver = d.to_s.split(" ")
|
||||||
result << " s.add_dependency #{dep.inspect}, [#{ /\(([^\,]*)/ . match(ver.join(" "))[1].inspect}]\n"
|
result << " s.add_dependency #{dep.inspect}, [#{ /\(([^\,]*)/ . match(ver.join(" "))[1].inspect}]\n"
|
||||||
end
|
end
|
||||||
|
|
|
@ -4,11 +4,12 @@ Gem::Specification.new do |s|
|
||||||
s.executables = ["couchview", "couchdir"]
|
s.executables = ["couchview", "couchdir"]
|
||||||
s.authors = ["J. Chris Anderson"]
|
s.authors = ["J. Chris Anderson"]
|
||||||
s.required_rubygems_version = ">= 0"
|
s.required_rubygems_version = ">= 0"
|
||||||
s.version = "0.9.5"
|
s.version = "0.9.6"
|
||||||
s.files = ["LICENSE",
|
s.files = ["LICENSE",
|
||||||
"README.rdoc",
|
"README.rdoc",
|
||||||
"Rakefile",
|
"Rakefile",
|
||||||
"THANKS",
|
"THANKS",
|
||||||
|
"bin/couchapp",
|
||||||
"bin/couchdir",
|
"bin/couchdir",
|
||||||
"bin/couchview",
|
"bin/couchview",
|
||||||
"examples/word_count",
|
"examples/word_count",
|
||||||
|
@ -36,14 +37,26 @@ Gem::Specification.new do |s|
|
||||||
"lib/couchrest/helper/file_manager.rb",
|
"lib/couchrest/helper/file_manager.rb",
|
||||||
"lib/couchrest/helper/pager.rb",
|
"lib/couchrest/helper/pager.rb",
|
||||||
"lib/couchrest/helper/streamer.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/monkeypatches.rb",
|
||||||
"lib/couchrest.rb",
|
"lib/couchrest.rb",
|
||||||
|
"spec/couchapp_spec.rb",
|
||||||
"spec/couchrest_spec.rb",
|
"spec/couchrest_spec.rb",
|
||||||
"spec/database_spec.rb",
|
"spec/database_spec.rb",
|
||||||
"spec/file_manager_spec.rb",
|
"spec/file_manager_spec.rb",
|
||||||
"spec/fixtures",
|
"spec/fixtures",
|
||||||
"spec/fixtures/attachments",
|
"spec/fixtures/attachments",
|
||||||
"spec/fixtures/attachments/test.html",
|
"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",
|
||||||
"spec/fixtures/views/lib.js",
|
"spec/fixtures/views/lib.js",
|
||||||
"spec/fixtures/views/test_view",
|
"spec/fixtures/views/test_view",
|
||||||
|
|
Loading…
Reference in a new issue