<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array">
    <added>
      <filename>Rakefile</filename>
    </added>
    <added>
      <filename>VERSION</filename>
    </added>
    <added>
      <filename>lib/active_couch.rb</filename>
    </added>
    <added>
      <filename>lib/active_couch/associations.rb</filename>
    </added>
    <added>
      <filename>lib/active_couch/associations/has_many_association.rb</filename>
    </added>
    <added>
      <filename>lib/active_couch/attribute.rb</filename>
    </added>
    <added>
      <filename>lib/active_couch/base.rb</filename>
    </added>
    <added>
      <filename>lib/active_couch/callbacks.rb</filename>
    </added>
    <added>
      <filename>lib/active_couch/connection.rb</filename>
    </added>
    <added>
      <filename>lib/active_couch/errors.rb</filename>
    </added>
    <added>
      <filename>lib/active_couch/migrations.rb</filename>
    </added>
    <added>
      <filename>lib/active_couch/migrations/errors.rb</filename>
    </added>
    <added>
      <filename>lib/active_couch/migrations/migration.rb</filename>
    </added>
    <added>
      <filename>lib/active_couch/migrations/migrator.rb</filename>
    </added>
    <added>
      <filename>lib/active_couch/support.rb</filename>
    </added>
    <added>
      <filename>lib/active_couch/support/extensions.rb</filename>
    </added>
    <added>
      <filename>lib/active_couch/support/inflections.rb</filename>
    </added>
    <added>
      <filename>lib/active_couch/support/inflector.rb</filename>
    </added>
  </added>
  <modified type="array">
    <modified>
      <diff>@@ -1,4 +1,4 @@
-Copyright (c) 2007 Arun Thampi
+Copyright (c) 2007 Arun Thampi &amp; Cheah Chu Yeow
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the</diff>
      <filename>MIT-LICENSE</filename>
    </modified>
    <modified>
      <diff>@@ -1,20 +1,42 @@
-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)
\ No newline at end of file
+ActiveCouch wants to be a simple, convenient, idiomatic Object Relational Mapper for the hot new kid on the block - CouchDB. CouchDB (simplistically speaking) is a document store, which essentially means that objects can be stored in a schema-less environment.
+
+What it is?
+-----------
+With ActiveCouch, you can easily save, query, delete documents to/from a CouchDB database in your favourite language - Ruby. ActiveCouch derives a lot of its principles (and some code) from both ActiveRecord and ActiveResource, two libraries made popular by the other hot pubescent on the block - Ruby on Rails (http://www.rubyonrails.org).
+
+Why?
+----
+As they say, necessity is the mother of invention. And as they also say, death before inconvenience. Our company, Bezurk (http://www.bezurk.com) is experimenting with CouchDB as we have a need for a document-model to store vast amounts of information, and we needed a convenience mapper in our favourite language, in order to use CouchDB elegantly. Since, the Rubyists here at Bezurk are already very familiar with ActiveRecord semantics, care has been taken to ensure that ActiveCouch resembled it in many ways.
+
+Requirements
+------------
+ - Ruby 1.8.5 or above (http://www.ruby-lang.org)
+ - rubygems 0.9.4 (http://rubygems.org)
+ - JSON gem (http://json.rubyforge.org) [Used for JSON encoding/decoding]
+ - RSpec gem (http://rspec.rubyforge.org) [Used to run specs]
+ - CouchDB 0.7.2 (http://couchdb.googlecode.com) [Some specs require running CouchDB at localhost:5984]
+
+We would also recommend installing ZenTest (http://www.zenspider.com/ZSS/Products/ZenTest/) which provides a very convenient way to run specs.
+
+Show me the docs
+----------------
+We have some pretty basic RDoc bundled along with the source code. But the best source of documentation and sample code at this point will be the specs. The layout for specs has been inspired from the very inspiring Rubinius project (http://rubini.us) where each class has its own directory, and each method has its own spec file, thus making it very readable.
+
+
+Show me the code
+----------------
+SVN Repo is here: http://activecouch.googlecode.com/svn/trunk/
+
+Bugs/Issues
+-----------
+If and when you find bugs/feature requests, please raise a ticket at http://activecouch.googlecode.com . If we find that feature requests are crucial for our internal use, we will definitely integrate it into our project as soon as possible. But otherwise, we unfortunately cannot guarantee any deadlines on integration of feature requests. [http://www.flickr.com/photos/rooreynolds/243810133/]
+
+So, if you find bugs/feature requests, we'd greatly appreciate patches (which include specs), but otherwise please bear with us.
+
+
+Looking Forward
+---------------
+
+Obviously, we are very excited about developments in CouchDB land and we will be closely monitoring the CouchDB project, in order to further improve ActiveCouch. Since we are using ActiveCouch internally, we are expecting heavy development in CouchDB in the months to come.
+
+&quot;The Journey is the Reward&quot;
\ No newline at end of file</diff>
      <filename>README</filename>
    </modified>
    <modified>
      <diff>@@ -6,4 +6,4 @@ rescue LoadError
   require 'spec'
 end
 
-require File.dirname(__FILE__) + &quot;/../active_couch&quot;
\ No newline at end of file
+require File.dirname(__FILE__) + &quot;/../lib/active_couch&quot;</diff>
      <filename>spec/spec_helper.rb</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>active_couch.rb</filename>
    </removed>
    <removed>
      <filename>active_couch/associations.rb</filename>
    </removed>
    <removed>
      <filename>active_couch/associations/has_many_association.rb</filename>
    </removed>
    <removed>
      <filename>active_couch/attribute.rb</filename>
    </removed>
    <removed>
      <filename>active_couch/base.rb</filename>
    </removed>
    <removed>
      <filename>active_couch/callbacks.rb</filename>
    </removed>
    <removed>
      <filename>active_couch/connection.rb</filename>
    </removed>
    <removed>
      <filename>active_couch/errors.rb</filename>
    </removed>
    <removed>
      <filename>active_couch/migrations.rb</filename>
    </removed>
    <removed>
      <filename>active_couch/migrations/errors.rb</filename>
    </removed>
    <removed>
      <filename>active_couch/migrations/migration.rb</filename>
    </removed>
    <removed>
      <filename>active_couch/migrations/migrator.rb</filename>
    </removed>
    <removed>
      <filename>active_couch/support.rb</filename>
    </removed>
    <removed>
      <filename>active_couch/support/extensions.rb</filename>
    </removed>
    <removed>
      <filename>active_couch/support/inflections.rb</filename>
    </removed>
    <removed>
      <filename>active_couch/support/inflector.rb</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>16551af40cbab57796359196801a1500df3b9a11</id>
    </parent>
  </parents>
  <author>
    <name>Arun Thampi</name>
    <email>arun.thampi@gmail.com</email>
  </author>
  <url>http://github.com/arunthampi/activecouch/commit/9e6e7a363b02c8ec9bf35d7acbfe201fc467b37f</url>
  <id>9e6e7a363b02c8ec9bf35d7acbfe201fc467b37f</id>
  <committed-date>2008-01-23T01:04:42-08:00</committed-date>
  <authored-date>2008-01-23T01:04:42-08:00</authored-date>
  <message>- Re-organize in gem-friendly layout
- Added Rakefile for gem building
- Much more verbose README
- Added CY to license (sorry forgot!)</message>
  <tree>a9e7722bdf62dbc810c41e1deb6357833fd437be</tree>
  <committer>
    <name>Arun Thampi</name>
    <email>arun.thampi@gmail.com</email>
  </committer>
</commit>
