2009-02-25 00:22:11 -08:00
|
|
|
class Event < CouchRest::ExtendedDocument
|
2009-05-27 18:16:50 -07:00
|
|
|
use_database DB
|
2009-02-25 00:22:11 -08:00
|
|
|
|
|
|
|
property :subject
|
|
|
|
property :occurs_at, :cast_as => 'Time', :send => 'parse'
|
2009-09-20 22:52:39 -03:00
|
|
|
property :end_date, :cast_as => 'Date', :send => 'parse'
|
2009-09-02 23:54:25 -03:00
|
|
|
|
|
|
|
|
2009-02-25 00:22:11 -08:00
|
|
|
end
|