couchrest_model/couchrest.gemspec

29 lines
1.2 KiB
Ruby
Raw Normal View History

2008-06-20 23:19:34 +02:00
Gem::Specification.new do |s|
s.name = "couchrest"
2008-09-12 07:23:47 +02:00
s.version = "0.9.4"
s.date = "2008-09-11"
2008-06-20 23:19:34 +02:00
s.summary = "Lean and RESTful interface to CouchDB."
s.email = "jchris@grabb.it"
s.homepage = "http://github.com/jchris/couchrest"
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 = false
2008-08-03 22:07:31 +02:00
s.authors = ["J. Chris Anderson", "Greg Borenstein"]
2008-08-03 20:34:09 +02:00
s.files = %w{
2008-08-03 21:51:17 +02:00
lib/couchrest.rb
lib/couchrest/commands/generate.rb lib/couchrest/commands/push.rb
lib/couchrest/core/database.rb lib/couchrest/core/server.rb
lib/couchrest/helper/file_manager.rb lib/couchrest/helper/pager.rb lib/couchrest/helper/streamer.rb
lib/couchrest/monkeypatches.rb
Rakefile README.rdoc
2008-08-03 21:51:17 +02:00
bin/couchdir bin/couchview
2008-09-08 00:35:42 +02:00
spec/couchrest_spec.rb spec/database_spec.rb spec/pager_spec.rb spec/file_manager_spec.rb spec/streamer_spec.rb
2008-08-03 20:34:09 +02:00
spec/spec_helper.rb
}
2008-06-20 23:19:34 +02:00
s.require_path = "lib"
2008-08-03 21:51:17 +02:00
s.bindir = 'bin'
s.executables << 'couchview'
s.executables << 'couchdir'
2008-06-20 23:19:34 +02:00
s.add_dependency("json", [">= 1.1.2"])
2008-07-19 21:25:49 +02:00
s.add_dependency("rest-client", [">= 0.5"])
2008-06-21 00:17:53 +02:00
end