Chris Anderson
71b25a592a
hand merge mattly time patch
2008-12-31 16:00:24 -08:00
Chris Anderson
c180a317e8
merge rafaelss :as patch
2008-12-31 15:40:17 -08:00
Frederik Fix
cae6395007
removed the suffix and duplication when importing views
2008-12-31 15:24:19 -08:00
Chris Anderson
c488aab338
Merge branch 'janl/master'
2008-12-31 15:16:32 -08:00
Chris Anderson
8b34f083c7
Merge branch 'mattly/master' into mergemattly
2008-12-31 14:54:28 -08:00
Chris Anderson
a3ac5fc4e8
Merge branch 'save-bug' of git://github.com/raycmorgan/couchrest into raycmorgan/save-bug
2008-12-31 14:48:29 -08:00
Rafael Souza
716bc74023
added possibility to cast any key to any type using any method
2008-12-30 11:25:23 -02:00
Jan Lehnardt
5a35359f51
push forms/ into _design/$this/forms
2008-12-25 21:48:02 +01:00
Jan Lehnardt
6b4913e9e8
push forms/ into _design/$this/forms
2008-12-25 21:03:58 +01:00
Matt Lyon
efae804920
Merge branch 'master' of git://github.com/thewordnerd/couchrest
...
* 'master' of git://github.com/thewordnerd/couchrest:
Removed model create/update callbacks and integrated with new bulk save infrastructure.
Make bulk saving more flexible.
Add support for database compaction.
2008-12-19 02:15:02 -08:00
Matt Lyon
ce172cf77b
run individual specs without rake
2008-12-19 02:09:20 -08:00
Matt Lyon
cd53e16eba
instantiate Time casts correctly
2008-12-19 02:06:05 -08:00
RayMorgan
b5ec8ba3c3
Fixed the "save bug should fix" spec
2008-12-17 23:09:01 -08:00
Nolan Darilek
84382d8af4
Removed model create/update callbacks and integrated with new bulk save infrastructure.
2008-12-15 10:27:53 -06:00
Nolan Darilek
d8d5645ebd
Make bulk saving more flexible.
...
* Database#save(doc, true) caches the doc in a database-specific bulk
cache.
* Database#save(doc, false), default, saves normally, bulk saving and
emptying the cache if one exists.
* The cache is automatically saved on Database#save if it excedes a
configurable limit, 50 by default.
* Database#bulk_save without arguments saves and clears the bulk save
cache.
2008-12-14 23:17:35 -06:00
Nolan Darilek
dd7f109878
Add support for database compaction.
2008-12-14 17:29:15 -06:00
Jan Lehnardt
5f65f9d8ab
add txt mimetype
2008-12-14 13:14:31 +01:00
Jan Lehnardt
7461e3fede
s/localhost/127.0.0.1/
2008-12-14 12:05:02 +01:00
Chris Anderson
12c09085df
justin_dz spec for save bug
2008-12-03 12:09:13 -08:00
Chris Anderson
47087507dd
got to green - setup out of order...
2008-12-03 12:03:59 -08:00
Chris Anderson
b50ca69994
building my own gems
2008-12-03 11:54:19 -08:00
Sho Fukamachi
0c527baa25
modified apply_defaults in CouchRest::Model to allow Procs in defaults and to safely clone (not reference) defaults from the class variable
2008-11-30 12:40:01 +11:00
Sho Fukamachi
313aae3e3d
modified Time#to_json monkeypatch to include microseconds
2008-11-30 12:36:24 +11:00
Chris Anderson
292ac5b3d5
a file to check the gem build
2008-11-26 13:42:27 -08:00
Chris Anderson
3da20217fd
rev the gem version
2008-11-22 16:30:36 -08:00
Chris Anderson
7430dc17ea
Merge branch 'model-first' of git://github.com/mattetti/couchrest into mattetti/model-first
2008-11-22 16:13:46 -08:00
Chris Anderson
0c91f5d234
fixed merge
2008-11-22 16:12:16 -08:00
Chris Anderson
9a157ab63b
made rake spec pass again
2008-11-22 16:09:34 -08:00
Chris Anderson
64d71d3ac4
Merge commit '9399b27f3f58c1e333b6dd5f20bbcd3531fa4b5e'
2008-11-22 16:06:51 -08:00
Chris Anderson
5d34117323
Merge commit '60c5994e432d6b6f92d320187a52eac83c0003c8'
2008-11-22 16:05:57 -08:00
Chris Anderson
2c63d91a81
added a cleanup_design_docs! method
2008-11-22 15:40:14 -08:00
Chris Anderson
8533520ef9
added couchrest-type back in to model
2008-11-22 14:29:03 -08:00
Chris Anderson
555764bbe8
updated the gem version to 0.10
2008-11-22 14:16:44 -08:00
Chris Anderson
e23ad9876e
Merge branch 'design-doc'
2008-11-22 14:15:41 -08:00
Chris Anderson
78534f8ec9
I seem to have all the CR::Model specs passing
2008-11-22 14:15:07 -08:00
Chris Anderson
19a70ffd7d
got view queries happening correctly
2008-11-21 16:21:20 -08:00
Chris Anderson
32ffbfe019
more notions
2008-11-20 17:03:06 -08:00
Chris Anderson
1431196c85
gif mime
2008-11-11 14:10:23 -08:00
Chris Anderson
8f642e709b
couchapp spec
2008-11-11 14:10:13 -08:00
Chris Anderson
806c12cbf0
better example params name
2008-11-10 21:34:29 -08:00
Chris Anderson
0769c2690f
on the road toward design docs
2008-11-08 16:28:58 -08:00
Vinicius Teles
9399b27f3f
Added the method update_attributes_without_saving.
...
To understand the reason, say you have this:
class Post < CouchRest::Model
key_accessor :title, :body, :author, comments
cast :author, :as => 'Author'
cast :comments, :as => ['Comment']
end
comment = post.comments.first
I'd like to do
comment.update_attributes_without_saving hash
because otherwise, it would create a new document for comment, which I don't want in my particular use. I just want to update the internal comment in the post.
2008-11-07 10:36:38 -02:00
Vinicius Teles
60c5994e43
Improved docummentation of the method CouchRest::Model#cast in order to clarify its use when we need to declare collections of a given type.
2008-11-06 15:43:02 -02:00
Chris Anderson
04e818c154
added cr:view
2008-11-03 22:53:46 -08:00
Chris Anderson
0ce716518f
factor out couchrest::document
2008-11-03 22:52:50 -08:00
Matt Aimonetti
1c5feaa845
added documentation to model#first
2008-11-03 18:08:14 -08:00
Matt Aimonetti
b1315d20f4
added model#save! raising an exception if the document isn't saved properly
2008-11-03 17:45:21 -08:00
Matt Aimonetti
19f587c0d6
added support for model#first
2008-11-03 16:40:19 -08:00
Chris Anderson
a6f285adfa
better design doc formula
2008-11-02 17:37:34 -08:00
Chris Anderson
4866018100
extlib only in model
2008-10-29 12:30:09 -07:00