public
Description: <b>Please go to <a href="http://github.com/arunthampi/activecouch/">http://github.com/arunthampi/activecouch/</a> for the master repos.</b> ActiveCouch is a simple, convenient, Ruby-idiomatic wrapper for CouchDB
Homepage: http://code.google.com/p/activecouch/
Clone URL: git://github.com/chuyeow/activecouch.git
arunthampi (author)
Tue Jan 22 04:04:33 -0800 2008
commit  e5c097b1bb95646d63fcd06b41389bc878a9ac47
tree    b9f81746ea5c25129437668eb9d982ceb83828f8
parent  550809c9b45371a8636872f7c43c3404b0445b99
name age message
file MIT-LICENSE Tue Dec 04 00:56:05 -0800 2007 Added to_json and from_json support to the Acti... [arunthampi]
file README Sun Dec 16 10:44:04 -0800 2007 Cleaned up the README for project [arunthampi]
file active_couch.rb Tue Jan 22 03:04:24 -0800 2008 - Working commit for callbacks [arunthampi]
directory active_couch/ Tue Jan 22 03:04:24 -0800 2008 - Working commit for callbacks [arunthampi]
directory spec/ Tue Jan 22 04:04:33 -0800 2008 - Added before_delete spec [arunthampi]
README
ActiveCouch aims to be an easy-to-use, familiar ORM library for the hot new kid on the block, CouchDB.

* Preliminarily,
- it will support ActiveRecord-esque functions such as find, create, save, etc.
- location of the CouchDB will be specified through a very simple class method called 'site' similar to ActiveResource.
- callbacks and observers (for example when to call upon saving of a new document)
- migrations to add views to a CouchDB server

* Nodes supported:
- String, Integer, Float (E.g. has :name)
- array (E.g. has_many :airports)

Pre-requisites
--------------
- Ruby 1.8.5 (http://www.ruby-lang.org)
- Uses JSON gem (http://json.rubyforge.org), To install use gem install json)

To run specs (and thus look at code samples)
--------------------------------------------
- Install rspec gem (http://rspec.rubyforge.org, to install use gem install rspec)