couchrest_model/couchrest.gemspec

26 lines
1,015 B
Ruby
Raw Normal View History

2008-06-20 23:19:34 +02:00
Gem::Specification.new do |s|
s.name = "couchrest"
2008-09-10 23:38:06 +02:00
s.version = "0.9.3"
s.date = "2008-09-10"
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
2008-09-08 00:35:42 +02:00
lib/couch_rest.rb lib/database.rb lib/pager.rb lib/file_manager.rb lib/streamer.rb
2008-09-08 00:29:49 +02:00
Rakefile README.markdown
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