Doing the simple stuff so you don't have to
Go to file
Chris Anderson 0e5eb76459 better docs
2008-09-30 10:20:15 -07:00
bin bug fixes in couchapp 2008-09-16 12:10:45 -04:00
examples/word_count deleted actual book files from example 2008-06-20 13:36:36 -07:00
lib better docs 2008-09-30 10:20:15 -07:00
spec cleanup rakefile business 2008-09-29 21:08:52 -07:00
utils created some utility scripts 2008-08-03 14:17:58 -07:00
.gitignore updated rake for rdoc 2008-09-11 22:21:16 -07:00
couchrest.gemspec gem is 0.9.8 2008-09-16 12:12:13 -04:00
LICENSE added apache license 2008-09-11 21:31:59 -07:00
Rakefile better docs 2008-09-30 10:20:15 -07:00
README.rdoc documenting CouchRest::Model 2008-09-29 22:56:24 -07:00
THANKS updated gem version 2008-09-11 22:23:47 -07:00

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

== CouchRest - CouchDB, close to the metal

CouchRest is based on [CouchDB's couch.js test library](http://svn.apache.org/repos/asf/incubator/couchdb/trunk/share/www/script/couch.js), which I find to be concise, clear, and well designed. CouchRest lightly wraps CouchDB's HTTP API, managing JSON serialization, and remembering the URI-paths to CouchDB's API endpoints so you don't have to.

CouchRest's lighweight is designed to make a simple base for application and framework-specific object oriented APIs.

=== Easy Install

  sudo gem install jchris-couchrest -s http://gems.github.com

=== Relax, it's RESTful

The core of Couchrest is Herokus excellent REST Client Ruby HTTP wrapper. REST Client takes all the nastyness of Net::HTTP and gives is a pretty face, while still giving you more control than Open-URI. I recommend it anytime youre interfacing with a well-defined web service. 

=== Running the Specs

The most complete documentation is the spec/ directory. To validate your CouchRest install, from the project root directory run `rake`, or `autotest` (requires RSpec and optionally ZenTest for autotest support). 

=== Examples

Quick Start:

    # with !, it creates the database if it doesn't already exist
    @db = CouchRest.database!("http://localhost:5984/couchrest-test")
    response = @db.save({:key => 'value', 'another key' => 'another value'})
    doc = @db.get(response['id'])
    puts doc.inspect

Bulk Save:

    @db.bulk_save([
        {"wild" => "and random"},
        {"mild" => "yet local"},
        {"another" => ["set","of","keys"]}
      ])
    # returns ids and revs of the current docs
    puts @db.documents.inspect 

Creating and Querying Views:

    @db.save({
      "_id" => "_design/first", 
      :views => {
        :test => {
          :map => "function(doc){for(var w in doc){ if(!w.match(/^_/))emit(w,doc[w])}}"
          }
        }
      })
    puts @db.view('first/test')['rows'].inspect 

== CouchRest::Model

CouchRest::Model is a module designed along the lines of DataMapper::Resource. By 
including it in your class, suddenly you get all sorts of magic sugar, so that
working with CouchDB in your Rails or Merb app is no harder than working with the
standard SQL alternatives. See the CouchRest::Model documentation for and example article class that illustrates usage.