CARVIEW |
Every repository with this icon (

Every repository with this icon (

Run the following if you haven't already:
gem sources -a https://gems.github.com
Install the gem(s):
sudo gem install jchris-couchrest
Description: | A RESTful CouchDB client based on Heroku's RestClient and Couch.js |
Homepage: | https://groups.google.com/group/couchrest |
Clone URL: |
git://github.com/jchris/couchrest.git
Give this clone URL to anyone.
git clone git://github.com/jchris/couchrest.git
|
tree 32d8d52c26ac338ffb45f42a66a6a7784f7f4ce3
parent 19a70ffd7dd4a4439144e673921c7e7a34852458
name | age | message | |
---|---|---|---|
![]() |
.gitignore | Sun Oct 26 08:03:59 -0700 2008 | added gem task for easy local packaging [jrun] |
![]() |
LICENSE | Thu Sep 11 21:31:59 -0700 2008 | added apache license [jchris] |
![]() |
README.rdoc | Thu Oct 02 10:57:13 -0700 2008 | whitespace readme [jchris] |
![]() |
Rakefile | Wed Oct 29 12:30:09 -0700 2008 | extlib only in model [jchris] |
![]() |
THANKS | Thu Sep 11 22:23:47 -0700 2008 | updated gem version [jchris] |
![]() |
bin/ | Wed Oct 29 12:13:22 -0700 2008 | make couchapp database magically [jchris] |
![]() |
couchrest.gemspec | Wed Oct 29 12:30:09 -0700 2008 | extlib only in model [jchris] |
![]() |
examples/ | Fri Oct 03 01:03:55 -0700 2008 | added an example codecast [jchris] |
![]() |
lib/ | Sat Nov 22 14:15:07 -0800 2008 | I seem to have all the CR::Model specs passing [jchris] |
![]() |
spec/ | Sat Nov 22 14:15:07 -0800 2008 | I seem to have all the CR::Model specs passing [jchris] |
![]() |
utils/ | Sun Aug 03 14:17:58 -0700 2008 | created some utility scripts [jchris] |
CouchRest - CouchDB, close to the metal
CouchRest is based on [CouchDB’s couch.js test library](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 https://gems.github.com
Relax, it’s RESTful
The core of Couchrest is Heroku’s 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 you’re 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!("https://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 subclassing, suddenly you get all sorts of powerful 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 an example article class that illustrates usage.