You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
lucasrenan edited this page Sep 14, 2010
·
1 revision
Models examples
class Post < CouchRest::Model::Base
collection_of :tags
property :title
property :content
timestamps!
view_by :title
end
class Tag < CouchRest::Model::Base
property :name
view_by :name
end