couchrest_model/spec/fixtures/more/event.rb

9 lines
220 B
Ruby
Raw Normal View History

class Event < CouchRest::ExtendedDocument
use_database TEST_SERVER.default_database
property :subject
property :occurs_at, :cast_as => 'Time', :send => 'parse'
2009-09-02 23:54:25 -03:00
property :end_date, :cast_as => 'Date'
end