Commit 490e567e05e7111ac12b68c33d8a3cf2429a593f

Upped version to 0.6 and updated auxiliary release files

Commit diff

History.txt

 
1== 0.6.0 2008-05-12
2
3* Major enhancements:
4 * Major Persistable module improvements thanks to Sebastian Probst Eide;
5 * Associations (has_one, has_many)
6 * Timestamping
7 * Defaults to setting instance variables (if no (de)serialization methods provided)
8 * The Ruby view server has been removed from the distribution
9 * Many small fixes and updates
10
111== 0.5.0 2007-09-15
212
313* 1 major enhancement:
toggle raw diff

Manifest.txt

 
44README.txt
55Rakefile
66TODO
7bin/couch_ruby_view_requestor
87config/hoe.rb
98config/requirements.rb
109lib/couch_object.rb
1110lib/couch_object/database.rb
1211lib/couch_object/document.rb
13lib/couch_object/model.rb
12lib/couch_object/error_classes.rb
1413lib/couch_object/persistable.rb
15lib/couch_object/proc_condition.rb
14lib/couch_object/persistable/has_many_relations_array.rb
15lib/couch_object/persistable/meta_classes.rb
16lib/couch_object/persistable/overloaded_methods.rb
1617lib/couch_object/response.rb
1718lib/couch_object/server.rb
1819lib/couch_object/utils.rb
2626script/txt2html
2727setup.rb
2828spec/database_spec.rb
29spec/database_spec.rb.orig
2930spec/document_spec.rb
3031spec/integration/database_integration_spec.rb
3132spec/integration/document_integration_spec.rb
3233spec/integration/integration_helper.rb
33spec/model_spec.rb
34spec/persistable_spec.rb
35spec/proc_condition_spec.rb
34spec/persistable/callback.rb
35spec/persistable/callback_spec.rb
36spec/persistable/cloning.rb
37spec/persistable/cloning_spec.rb
38spec/persistable/comparing_objects.rb
39spec/persistable/comparing_objects_spec.rb
40spec/persistable/deleting.rb
41spec/persistable/deleting_spec.rb
42spec/persistable/error_messages.rb
43spec/persistable/error_messages_spec.rb
44spec/persistable/loading.rb
45spec/persistable/loading_spec.rb
46spec/persistable/new_methods.rb
47spec/persistable/new_methods_spec.rb
48spec/persistable/persistable_helper.rb
49spec/persistable/relations.rb
50spec/persistable/relations_spec.rb
51spec/persistable/saving.rb
52spec/persistable/saving_spec.rb
53spec/persistable/setting_storage_location.rb
54spec/persistable/setting_storage_location_spec.rb
55spec/persistable/timestamps.rb
56spec/persistable/timestamps_spec.rb
57spec/persistable/unsaved_changes.rb
58spec/persistable/unsaved_changes_spec.rb
3659spec/response_spec.rb
3760spec/rspec_autotest.rb
3861spec/server_spec.rb
toggle raw diff

lib/couch_object/version.rb

 
11module CouchObject #:nodoc:
22 module VERSION #:nodoc:
33 MAJOR = 0
4 MINOR = 5
4 MINOR = 6
55 TINY = 0
66
77 STRING = [MAJOR, MINOR, TINY].join('.')
toggle raw diff

website/index.html

 
3333 <h1>CouchObject</h1>
3434 <div id="version" class="clickable" onclick='document.location = "http://rubyforge.org/projects/couch_object"; return false'>
3535 <p>Get Version</p>
36 <a href="http://rubyforge.org/projects/couch_object" class="numbers">0.5.0</a>
36 <a href="http://rubyforge.org/projects/couch_object" class="numbers">0.6.0</a>
3737 </div>
3838 <h1>&#x2192; &#8216;couch_object&#8217;</h1>
3939
4141 <h2>What</h2>
4242
4343
44 <p>CouchObject is a set of classes to help you talk to <a href="http://couchdbwiki.com/">CouchDb</a> with and in Ruby.</p>
44 <p>CouchObject is a set of classes to help you talk to <a href="http://incubator.apache.org/couchdb/">CouchDB</a> with and in Ruby.</p>
4545
4646
4747 <h2>Installing</h2>
5959 <p>See the <a href="http://couchobject.rubyforge.org/rdoc/">RDoc</a></p>
6060
6161
62 <h2>How to submit patches</h2>
62 <h2>Getting the source and how to submit patches</h2>
63
64
65 <h3>Getting the source</h3>
6366
6467
6568<pre>
66 $ git clone git://repo.or.cz/couchobject.git
69 $ git clone git://gitorious.org/couchobject/mainline.git
6770</pre>
6871
72 <h3>Contributing</h3>
73
74
75 <p>Create a public clone on http://gitorious.org/projects/couchobject and submit a merge request via the web interface.</p>
76
77
6978 <h2>License</h2>
7079
7180
7281 <p>This code is free to use under the terms of the <span class="caps">MIT</span> license.</p>
7382
7483
75 <h2>Contact</h2>
84 <h2>Authors &#38; Contact</h2>
7685
7786
7887 <ul>
7988 <li>Author: Johan Sørensen</li>
8089 <li>Contact: johan (at) johansorensen <span class="caps">DOT</span> com</li>
8190 <li>Home: <a href="http://rubyforge.org/projects/couchobject/">Rubyforge</a> | <a href="http://couchobject.rubyforge.org">Rubyforge hme</a></li>
82 <li>Source (Git): <a href="http://repo.or.cz/w/couchobject.git">http://repo.or.cz/w/couchobject.git</a></li>
91 <li>Source (Git): <a href="http://gitorious.org/projects/couchobject">http://gitorious.org/projects/couchobject</a></li>
92 </ul>
93
94
95 <ul>
96 <li>Author: Sebastian Probst Eide</li>
97 <li>Contact: sebastian.probst.eide (at) gmail <span class="caps">DOT</span> com</li>
8398 </ul>
8499 <p class="coda">
85 <a href="">TODO</a>, 15th September 2007<br>
100 <a href="">TODO</a>, 12th May 2008<br>
86101 Theme extended from <a href="http://rb2js.rubyforge.org/">Paul Battley</a>
87102 </p>
88103</div>
toggle raw diff

website/index.txt

 
55
66h2. What
77
8CouchObject is a set of classes to help you talk to "CouchDb":http://couchdbwiki.com/ with and in Ruby.
8CouchObject is a set of classes to help you talk to "CouchDB":http://incubator.apache.org/couchdb/ with and in Ruby.
99
1010h2. Installing
1111
1818
1919See the "RDoc":http://couchobject.rubyforge.org/rdoc/
2020
21h2. How to submit patches
21h2. Getting the source and how to submit patches
22
23h3. Getting the source
2224
2325<pre>
24 $ git clone git://repo.or.cz/couchobject.git
26 $ git clone git://gitorious.org/couchobject/mainline.git
2527</pre>
2628
29h3. Contributing
30
31Create a public clone on http://gitorious.org/projects/couchobject and submit a merge request via the web interface.
32
2733h2. License
2834
2935This code is free to use under the terms of the MIT license.
3036
31h2. Contact
37h2. Authors & Contact
3238
3339* Author: Johan Sørensen
3440* Contact: johan (at) johansorensen DOT com
toggle raw diff