+This is a ruby language interface to CouchDB. It attempts to abstract all
+features of the protocol so that the user doesn't need to know anything about
+the REST interface.
+
+Documentation is currently non-existant but interested users/hackers can
+examine test.rb for examples of usage.
+
Author: Ryan Dahl
[email protected]
-Released under same license as Ruby
+Copyright 2007 Ryan Dahl
+Released under same license as the Ruby language.
TODO
- Wrap the response from @connection.request in a new class
Automatically raise errors based on the status code or the content
of the JSON response.
+- CouchDB::View is buggy and needs more work.
+- Documentation
module CouchDB
+ # CouchDB::View is not a true CouchDB::Document, but has a similar
+ # interface. The most important method is find.
class View
def initialize(database, overview_name, name, _source=nil)
@@ -61,4 +63,4 @@ module CouchDB
end
end
-end
\ No newline at end of file
+end