couchrest_model/spec/fixtures/more/event.rb
2009-09-02 23:55:55 -03:00

9 lines
220 B
Ruby

class Event < CouchRest::ExtendedDocument
use_database TEST_SERVER.default_database
property :subject
property :occurs_at, :cast_as => 'Time', :send => 'parse'
property :end_date, :cast_as => 'Date'
end