rev gem version to 0.9.9

This commit is contained in:
Chris Anderson 2008-09-30 10:22:17 -07:00
parent 0e5eb76459
commit afa19a74a1
2 changed files with 42 additions and 33 deletions

View file

@ -5,7 +5,7 @@ require 'spec/rake/spectask'
spec = Gem::Specification.new do |s|
s.name = "couchrest"
s.version = "0.9.8"
s.version = "0.9.9"
s.date = "2008-09-11"
s.summary = "Lean and RESTful interface to CouchDB."
s.email = "jchris@grabb.it"
@ -25,9 +25,8 @@ spec = Gem::Specification.new do |s|
s.add_dependency("extlib", ">= 0.9.6")
end
namespace :github do # thanks merb!
desc "Update Github Gemspec"
task :update_gemspec do
desc "Update Github Gemspec"
task :gemspec do
skip_fields = %w(new_platform original_platform)
integer_fields = %w(specification_version)
@ -58,7 +57,6 @@ namespace :github do # thanks merb!
end
result << "end"
File.open(File.join(File.dirname(__FILE__), "#{spec.name}.gemspec"), "w"){|f| f << result}
end
end
desc "Run all specs"

View file

@ -1,10 +1,10 @@
Gem::Specification.new do |s|
s.extra_rdoc_files = ["README.rdoc", "LICENSE", "THANKS"]
s.date = "Thu Sep 11 00:00:00 -0400 2008"
s.date = "Thu Sep 11 00:00:00 -0700 2008"
s.executables = ["couchview", "couchdir", "couchapp"]
s.authors = ["J. Chris Anderson"]
s.required_rubygems_version = ">= 0"
s.version = "0.9.8"
s.version = "0.9.9"
s.files = ["LICENSE",
"README.rdoc",
"Rakefile",
@ -32,6 +32,7 @@ Gem::Specification.new do |s|
"lib/couchrest/commands/push.rb",
"lib/couchrest/core",
"lib/couchrest/core/database.rb",
"lib/couchrest/core/model.rb",
"lib/couchrest/core/server.rb",
"lib/couchrest/helper",
"lib/couchrest/helper/file_manager.rb",
@ -44,6 +45,9 @@ Gem::Specification.new do |s|
"lib/couchrest/monkeypatches.rb",
"lib/couchrest.rb",
"spec/couchapp_spec.rb",
"spec/couchrest",
"spec/couchrest/core",
"spec/couchrest/core/model_spec.rb",
"spec/couchrest_spec.rb",
"spec/database_spec.rb",
"spec/file_manager_spec.rb",
@ -57,6 +61,12 @@ Gem::Specification.new do |s|
"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",
"spec/fixtures/couchapp-test/my-app/views",
"spec/fixtures/couchapp-test/my-app/views/example-map.js",
"spec/fixtures/couchapp-test/my-app/views/example-reduce.js",
"spec/fixtures/views",
"spec/fixtures/views/lib.js",
"spec/fixtures/views/test_view",
@ -84,5 +94,6 @@ 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.add_dependency "json", [">= 1.1.2"]
s.add_dependency "rest-client", [">= 0.5"]
s.add_dependency "extlib", [">= 0.9.6"]
s.require_paths = ["lib"]
end