Doing the simple stuff so you don't have to
Go to file
2008-09-07 12:43:13 -07:00
bin moved scripts to bin 2008-08-03 12:51:17 -07:00
examples/word_count deleted actual book files from example 2008-06-20 13:36:36 -07:00
lib added easy method for ensuring databases exist 2008-09-07 12:43:13 -07:00
spec added easy method for ensuring databases exist 2008-09-07 12:43:13 -07:00
utils created some utility scripts 2008-08-03 14:17:58 -07:00
couchrest.gemspec updated gem version 2008-08-27 18:46:12 -07:00
Rakefile touch 2008-06-20 15:06:11 -07:00
README spec the error doc 2008-09-05 14:09:17 -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 is a loose port of the couch.js library from CouchDBs Futon admin interface, which I find to be concise, clear, and well designed.

I prefer to stay close to the metal, especially when the metal is as clean and simple as CouchDBs HTTP API. The main thing Couchrest does for you is manage the Ruby <=> JSON serialization, and point your actions (database creation, document CRUD, view creation and queries, etc) at the appropriate API endpoints.

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 API. (We use it for Grabb.its Tumblr integration, and it works like a charm.)

The most complete source of documentation are the spec files. To ensure that your environment is setup for successful CouchRest operation, from the project root directory run `autotest` or `spec spec` (requires RSpec and optionally ZenTest for autotest support). 

Quick Start:

@cr = CouchRest.new("http://localhost:5984")
@db = @cr.create_db('couchrest-test')
response = @db.save({:key => 'value', 'another key' => 'another value'})
doc = @db.get(response['id'])
puts doc.inspect

Please note that @cr.database('a-db-name') does not go over the wire at all. So it won't raise an error if the database does not exist. If you need to ensure that a database exists, call: @cr.create_db(dbname) rescue nilkey

Bulk Save:

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

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